├── LICENSE ├── MaricutoDB ├── README.md ├── examples │ └── shortener │ │ ├── MaricutoDB │ │ ├── README.md │ │ ├── files │ │ │ ├── db.class.php │ │ │ ├── functions.class.php │ │ │ ├── libs │ │ │ │ └── 82dbc42b01805c8f89d9ea775835064a │ │ │ │ │ ├── 089bc39b4a2d4b1fb3db2c901a594d9a.json │ │ │ │ │ ├── 0e2c288acd7bccbca19b57ae6f55c1da.json │ │ │ │ │ ├── 2413e39cfd238adbc1c499852aea14fc.json │ │ │ │ │ ├── 318c7978c84815cd21141852677f59c6.json │ │ │ │ │ ├── 32c6237a13e54cf829f420f3e024ef94.json │ │ │ │ │ ├── 36c1a4734d1748624c54ac95f5cbedb3.json │ │ │ │ │ ├── 4a6ba69854209109cd64cde9f84246ec.json │ │ │ │ │ ├── 4fd010a7c21f4f5b6f64ec63e4f8a8a0.json │ │ │ │ │ ├── 681bd4425d6bf4f7b334e359c0125007.json │ │ │ │ │ ├── 697c4d1248da72f46e7fe41bc9c9d438.json │ │ │ │ │ ├── 78f75f06bd271072fce17b3db65af333.json │ │ │ │ │ ├── 825c135e431f9b8d16f1b2e4b63f669b.json │ │ │ │ │ ├── 95f5ebde68afd558b705493387a4a32c.json │ │ │ │ │ ├── ac309f2835e42cb554ea0888e0c06b56.json │ │ │ │ │ ├── e974d6977cf4266f2014081b61262ed2.json │ │ │ │ │ └── f87aec72f93a909d865d6a33df783cc2.json │ │ │ ├── some.class.php │ │ │ └── write.class.php │ │ └── init.php │ │ ├── go │ │ └── index.php │ │ ├── index.php │ │ ├── layout-each-item.php │ │ ├── list-of-links.php │ │ ├── msg-when-is-shortened.php │ │ ├── searching.php │ │ ├── shorten.php │ │ └── src │ │ ├── files │ │ ├── bulma.min.css │ │ ├── clipboard.min.js │ │ ├── custom.css │ │ └── jquery.js │ │ ├── footer.php │ │ └── header.php ├── files │ ├── .gitignore │ ├── backup │ │ └── .htaccess │ ├── cache │ │ └── .htaccess │ ├── collections.manager.php │ ├── collections.php │ ├── db.class.php │ ├── documents.manager.php │ ├── functions.class.php │ ├── libs │ │ └── .htaccess │ ├── mdb.php │ ├── some.class.php │ ├── temp │ │ └── .htaccess │ └── write.class.php ├── init.php └── readmes │ ├── Chunk Collections Method │ └── README.md │ ├── Documents Method │ ├── README.md │ ├── document │ │ └── README.md │ ├── documents │ │ └── README.md │ ├── field │ │ └── README.md │ ├── filters & queries │ │ └── README.md │ ├── others │ │ └── README.md │ ├── paginator │ │ └── README.md │ ├── passwords │ │ └── README.md │ └── subcollection │ │ └── README.md │ └── README.md └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/LICENSE -------------------------------------------------------------------------------- /MaricutoDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/README.md -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/README.md -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/db.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/db.class.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/functions.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/functions.class.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/089bc39b4a2d4b1fb3db2c901a594d9a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/089bc39b4a2d4b1fb3db2c901a594d9a.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/0e2c288acd7bccbca19b57ae6f55c1da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/0e2c288acd7bccbca19b57ae6f55c1da.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/2413e39cfd238adbc1c499852aea14fc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/2413e39cfd238adbc1c499852aea14fc.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/318c7978c84815cd21141852677f59c6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/318c7978c84815cd21141852677f59c6.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/32c6237a13e54cf829f420f3e024ef94.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/32c6237a13e54cf829f420f3e024ef94.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/36c1a4734d1748624c54ac95f5cbedb3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/36c1a4734d1748624c54ac95f5cbedb3.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/4a6ba69854209109cd64cde9f84246ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/4a6ba69854209109cd64cde9f84246ec.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/4fd010a7c21f4f5b6f64ec63e4f8a8a0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/4fd010a7c21f4f5b6f64ec63e4f8a8a0.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/681bd4425d6bf4f7b334e359c0125007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/681bd4425d6bf4f7b334e359c0125007.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/697c4d1248da72f46e7fe41bc9c9d438.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/697c4d1248da72f46e7fe41bc9c9d438.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/78f75f06bd271072fce17b3db65af333.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/78f75f06bd271072fce17b3db65af333.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/825c135e431f9b8d16f1b2e4b63f669b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/825c135e431f9b8d16f1b2e4b63f669b.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/95f5ebde68afd558b705493387a4a32c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/95f5ebde68afd558b705493387a4a32c.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/ac309f2835e42cb554ea0888e0c06b56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/ac309f2835e42cb554ea0888e0c06b56.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/e974d6977cf4266f2014081b61262ed2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/e974d6977cf4266f2014081b61262ed2.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/f87aec72f93a909d865d6a33df783cc2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/libs/82dbc42b01805c8f89d9ea775835064a/f87aec72f93a909d865d6a33df783cc2.json -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/some.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/some.class.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/files/write.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/files/write.class.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/MaricutoDB/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/MaricutoDB/init.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/go/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/go/index.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/index.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/layout-each-item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/layout-each-item.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/list-of-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/list-of-links.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/msg-when-is-shortened.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/msg-when-is-shortened.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/searching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/searching.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/shorten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/shorten.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/src/files/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/src/files/bulma.min.css -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/src/files/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/src/files/clipboard.min.js -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/src/files/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/src/files/custom.css -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/src/files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/src/files/jquery.js -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/src/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/src/footer.php -------------------------------------------------------------------------------- /MaricutoDB/examples/shortener/src/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/examples/shortener/src/header.php -------------------------------------------------------------------------------- /MaricutoDB/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/.gitignore -------------------------------------------------------------------------------- /MaricutoDB/files/backup/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /MaricutoDB/files/cache/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /MaricutoDB/files/collections.manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/collections.manager.php -------------------------------------------------------------------------------- /MaricutoDB/files/collections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/collections.php -------------------------------------------------------------------------------- /MaricutoDB/files/db.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/db.class.php -------------------------------------------------------------------------------- /MaricutoDB/files/documents.manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/documents.manager.php -------------------------------------------------------------------------------- /MaricutoDB/files/functions.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/functions.class.php -------------------------------------------------------------------------------- /MaricutoDB/files/libs/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /MaricutoDB/files/mdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/mdb.php -------------------------------------------------------------------------------- /MaricutoDB/files/some.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/some.class.php -------------------------------------------------------------------------------- /MaricutoDB/files/temp/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /MaricutoDB/files/write.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/files/write.class.php -------------------------------------------------------------------------------- /MaricutoDB/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/init.php -------------------------------------------------------------------------------- /MaricutoDB/readmes/Chunk Collections Method/README.md: -------------------------------------------------------------------------------- 1 | Coming soon. -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/document/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/documents/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/field/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/field/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/filters & queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/filters & queries/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/others/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/paginator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/paginator/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/passwords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/passwords/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/Documents Method/subcollection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/Documents Method/subcollection/README.md -------------------------------------------------------------------------------- /MaricutoDB/readmes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/MaricutoDB/readmes/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yerikmiller/maricutodb/HEAD/README.md --------------------------------------------------------------------------------