├── LICENSE ├── README.md ├── cleanup.php ├── create_paste.php ├── database.php ├── index.php ├── install.php ├── static ├── css │ └── style.css ├── images │ ├── logo.png │ └── music.png └── js │ ├── absolute.js │ ├── admin.js │ ├── clipBoard.min.js │ ├── jquery.dataTables.min.js │ └── main.js └── view.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/README.md -------------------------------------------------------------------------------- /cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/cleanup.php -------------------------------------------------------------------------------- /create_paste.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/create_paste.php -------------------------------------------------------------------------------- /database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/database.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/install.php -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/images/music.png -------------------------------------------------------------------------------- /static/js/absolute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/js/absolute.js -------------------------------------------------------------------------------- /static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/js/admin.js -------------------------------------------------------------------------------- /static/js/clipBoard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/js/clipBoard.min.js -------------------------------------------------------------------------------- /static/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/static/js/main.js -------------------------------------------------------------------------------- /view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C4rpeDime/Paste/HEAD/view.php --------------------------------------------------------------------------------