YouTube: Amazon Web Services

https://www.youtube.com/user/AmazonWebServices/videos

How Rainbow Tables work

http://kestas.kuliukas.com/RainbowTables/

API Security Checklist

Checklist of the most important security countermeasures when designing, testing, and releasing your API

A collection of useful resources for building RESTful HTTP+JSON APIs

This is a collection of useful resources for building RESTful HTTP+JSON APIs. There are a lot of good tools and entire ecosystems out there! It can be overwhelming not knowing what options are available, so you can use this as a reference starting point.

Jak uruchomić “Hotspot osobisty” w iPhone z sieci Plus GSM?

http://www.applecenter.pl/2015/02/18/jak-uruchomic-hotspot-osobisty-w-iphone-z-sieci-plus-gsm/

Helps use multiple accounts on Heroku

https://github.com/heroku/heroku-accounts

Online SQL Formatters

https://zeroturnaround.github.io/sql-formatter/ http://www.sqlinform.com/online-sql-formatter/

Regular Expressions

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions

Microservices: mono repo vs multiple repositories

Our journey to microservices: mono repo vs multiple repositories CI/CD For Microservices Using Monorepos 7 things to consider while moving to a microservices architecture New wave modularity with Lerna, monorepos, and npm organizations A tool for managing JavaScript projects with multiple packages

PostgreSQL: How to Disable or Enable Foreign Key Constraint of a Table

https://www.dbrnd.com/2017/02/postgresql-how-to-disable-or-enable-foreign-key-constraint-of-a-table-data-migration-bulk-operation/ ALTER TABLE table_name DISABLE TRIGGER ALL; INSERT INTO table_name VALUES (1,6,50,60,90); ALTER TABLE table_name ENABLE TRIGGER ALL;