New pages
From PaskvilWiki
- 16:46, 8 April 2020 Short Notes on PSQL (hist) [1,495 bytes] Admin (Talk | contribs) (Created page with "PSQL aka Postgres aka PostgreSQL... I prefer psql. == Dump and Restore == <pre>dump: $ pg_dump -h host -p 5432 -U user -F c -b -v -f /tmp/db_name.backup db_name restore: $ p...")
- 13:21, 24 January 2020 Short Notes on JS (hist) [2,209 bytes] Admin (Talk | contribs) (Created page with "== Fetch Patterns == <pre>fetch("url", { options... }) .then((response) => { if (!response.ok) throw new Error('Network response was not ok'); return response...")
- 14:14, 24 February 2017 Short Notes on Wavelets (hist) [2,283 bytes] Admin (Talk | contribs) (Created page with "== Integer Haar Wavelets, Python implementation == This is a trivial implementation of Haar integer-to-integer wavelets. Note that resulting values typically use 1 more bit t...")
- 13:02, 9 February 2017 Short Notes on Flask and Flask-RestPlus (hist) [1,152 bytes] Admin (Talk | contribs) (Created page with "== Structuring the Project == == Handling Requests == == File Upload == <pre>@ns.route('/') class Handle(Resource): @ns.param('data', description='We will just return t...")
- 15:45, 23 January 2017 Short Notes on AWS (hist) [6,703 bytes] Admin (Talk | contribs) (Created page with "== Can't connect to EC2 instance == The obvious 2 problems with incoming requests, that are outside of AWS's scope: * check the instance's firewall * check that the app is li...")
- 13:48, 26 October 2016 Short Notes on git (hist) [7,421 bytes] Admin (Talk | contribs) (Created page with "== Basic Commands == The ''git'' has 3 "trees" maintained automatically within your local repo - "working copy" is the files you're actually working on, "index" is kind of st...")
- 11:09, 28 April 2016 Small Docker Notes (hist) [11,444 bytes] Admin (Talk | contribs) (Created page with "Note - ''vm'' and ''container'' is used below interchangeably. == Installation and Verification == <pre> # install Docker $ curl -fsSL https://get.docker.com/ | sh # add...")
- 00:05, 10 January 2016 RedBeanPHP Cheat Sheet (hist) [5,346 bytes] Admin (Talk | contribs) (Created page with "[http://www.redbeanphp.com/index.php RedBeanPHP site] I love RBPHP since it's single file light-weight x-DB and clean ORM. -- my opinion (R) -- This is by no means complete ...")
- 21:23, 28 June 2014 Short Notes on RESTful APIs (hist) [3,737 bytes] Admin (Talk | contribs) (Created page with "'''WIP - check for updates later.''' Take this section with a pinch of salt. Also, see Disclaimer. == What is RESTful? == There is no standard for what REST...")