This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://alestic.com/ | |
| http://distractable.net/tech/amazon-aws-ec2-vs-rackspace-high-level-comparison/ | |
| http://www.mlsite.net/blog/?p=43 | |
| http://stackoverflow.com/questions/4488793/getting-started-with-django-on-amazon-web-services | |
| http://thomas.broxrost.com/2008/08/21/persistent-django-on-amazon-ec2-and-ebs-the-easy-way/ | |
| http://www.google.com/search?client=safari&rls=en&q=puppet+ec2&ie=UTF-8&oe=UTF-8 | |
| http://agiletesting.blogspot.com/2009/09/bootstrapping-ec2-images-as-puppet.html | |
| http://blog.taggesell.de/index.php?/archives/66-Managing-Amazon-EC2-virtual-machines-101-part-1-creating-AMI-images.html | |
| http://www.google.com/search?client=safari&rls=en&q=ec2+101&ie=UTF-8&oe=UTF-8 | |
| http://paulstamatiou.com/how-to-getting-started-with-amazon-ec2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Hypertext Member Blogs</title> | |
| </head> | |
| <body> | |
| <outline text="Hypertext Member Blogs" title="Hypertext Member Blogs"> | |
| <outline type="rss" text="Colin Devroe" title="Colin Devroe" xmlUrl="http://cdevroe.com/feed" htmlUrl="http://cdevroe.com/"/> | |
| <outline type="rss" text="Hypertext" title="Hypertext by Justin Blanton" xmlUrl="http://feeds.feedburner.com/jblanton" htmlUrl="http://hypertext.net"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 04.co.uk | |
| 1000ketab.com | |
| 123dapp.com | |
| 12factor.net | |
| 1carent.com | |
| 1tpesq.net | |
| 226rapfa.com | |
| 247inc.net | |
| 247solitaire.com | |
| 25.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| How To: Hosting with Amazon S3, CloudFront and Route 53 http://paulstamatiou.com/hosting-on-amazon-s3-with-cloudfront/ | |
| The Friends Of My Friends Are Not My Friends http://minimaxir.com/2014/01/farcical-friends-of-friends-folly/ | |
| A 30 minute introduction to Rust http://words.steveklabnik.com/a-30-minute-introduction-to-rust | |
| Adrian and Jacob retiring as Django BDFLs http://www.holovaty.com/writing/bdfls-retiring/ | |
| Google's Ray Kurzweil predicts how world will change http://slumz.boxden.com/f244/google-s-ray-kurzweil-predicts-how-world-will-change-2023326/ | |
| Global Network Attacks Up Over 98% this morning http://www.akamai.com/html/technology/dataviz1.html | |
| Free screencasts to learn Go https://gocasts.io | |
| Taxi protest in Paris turns to guerrilla warfare as Uber car attacked on freeway http://www.rudebaguette.com/2014/01/13/taxi-protest-paris-turns-guerrilla-warfare-uber-car-attacked-freeway/ | |
| Poor Man's Firebase: LevelDB, REST, and WebSockets http://procbits.com/2014/01/06/poor-mans-firebase-leveldb-rest-and-websockets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| In this document, I outline the tasks required for storing and | |
| presenting the Ethereum block chain and Web-based Ethereum Đapps in | |
| ipfs. Currently, ipfs is very good at locating and delivering content | |
| using a global, consistent address space and it has a very well designed | |
| and implemented http gateway. However, Ethereum's use cases require | |
| additional capabilities that ipfs currently does not provide. | |
| Redundancy and persistency |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function usage () { | |
| echo "$0 [CA section name] [username]" | |
| exit 1 | |
| } | |
| if [ $# -ne 2 ] | |
| then | |
| usage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Docs: | |
| ## http://www.integralist.co.uk/posts/clientcertauth.html | |
| ## https://noizze.net/2012/01/fail-nginx-gridfsmongodb-webdav-on-ubuntu-11-server-how-to/ | |
| ## https://github.com/mdirolf/nginx-gridfs | |
| ## https://www.nginx.com/blog/dns-service-discovery-nginx-plus/ | |
| resolver dns.dc1.consul valid=10s; | |
| upstream gridfs_backend { | |
| zone backends 64k; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ====== | |
| Videos | |
| ====== | |
| DevOps | |
| What is DevOps? by Rackspace - Really great introduction to DevOps | |
| https://www.youtube.com/watch?v=_I94-tJlovg | |
| Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Examples: | |
| # ix hello.txt # paste file (name/ext will be set). | |
| # echo Hello world. | ix # read from STDIN (won't set name/ext). | |
| # ix -n 1 self_destruct.txt # paste will be deleted after one read. | |
| # ix -i ID hello.txt # replace ID, if you have permission. | |
| # ix -d ID | |
| ix() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo: required #is required to use docker service in travis | |
| language: php #can be any language, just php for example | |
| services: | |
| - docker # required, but travis uses older version of docker :( | |
| install: | |
| - echo "install nothing!" # put your normal pre-testing installs here |