(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| area_data = { | |
| '่บๅๅธ': [ | |
| 'ไธญๆญฃๅ', 'ๅคงๅๅ', 'ไธญๅฑฑๅ', '่ฌ่ฏๅ', 'ไฟก็พฉๅ', 'ๆพๅฑฑๅ', 'ๅคงๅฎๅ', 'ๅๆธฏๅ', 'ๅๆๅ', 'ๅ งๆนๅ', 'ๅฃซๆๅ', 'ๆๅฑฑๅ' | |
| ], | |
| 'ๆฐๅๅธ': [ | |
| 'ๆฟๆฉๅ', 'ๆฐ่ๅ', 'ๆณฐๅฑฑๅ', 'ๆๅฃๅ', 'ๆทกๆฐดๅ', '้ๅฑฑๅ', 'ๅ ซ้ๅ', '่ฌ้ๅ', '็ณ้ๅ', 'ไธ่ๅ', '็่ณๅ', 'ๆฑๆญขๅ', 'ๅนณๆบชๅ', '่ฒขๅฏฎๅ', '้ๆบชๅ', 'ๆทฑๅๅ', '็ณ็ขๅ', 'ๆฐๅบๅ', 'ๅชๆๅ', '็ไพๅ', 'ไธญๅๅ', 'ๆฐธๅๅ', 'ๅๅๅ', 'ไธๅณฝๅ', 'ๆจนๆๅ', '้ถฏๆญๅ', 'ไธ้ๅ', '่ๆดฒๅ', 'ไบ่กๅ' | |
| ], | |
| 'ๅบ้ๅธ': [ | |
| 'ไปๆๅ', 'ไธญๆญฃๅ', 'ไฟก็พฉๅ', 'ไธญๅฑฑๅ', 'ๅฎๆจๅ', 'ๆๆๅ', 'ไธๅ ตๅ' | |
| ], |
| server { | |
| listen 80 default_server; | |
| server_name example.com www.example.com; | |
| access_log /srv/www/example.com/logs/access.log; | |
| error_log /srv/www/example.com/logs/error.log; | |
| root /srv/www/example.com/public; | |
| index index.php index.html; |
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1 |
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
I've moved this gist to https://github.com/phynet/iOS-Schemes please check it there ;)
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
| # Credit http://stackoverflow.com/a/2514279 | |
| for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |