Skip to content

Instantly share code, notes, and snippets.

View denzuko's full-sized avatar
💬
linkedin.com/in/denzuko

Dwight Spencer denzuko

💬
linkedin.com/in/denzuko
View GitHub Profile
@denzuko
denzuko / aws.txt
Created December 10, 2015 23:56 — forked from bryanveloso/aws.txt
Links I've find while studying the world of Amazon Web Services.
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
@denzuko
denzuko / hypertext-member-blogs.opml
Created December 10, 2015 23:59 — forked from cdevroe/hypertext-member-blogs.opml
Hypertext Member Blogs
<?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"/>
@denzuko
denzuko / cdns.txt
Created December 11, 2015 00:00 — forked from jedisct1/cdns.txt
04.co.uk
1000ketab.com
123dapp.com
12factor.net
1carent.com
1tpesq.net
226rapfa.com
247inc.net
247solitaire.com
25.org
@denzuko
denzuko / 03-11-2014-B.txt
Created December 11, 2015 00:02
03-11-2014 B
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
@denzuko
denzuko / ipfs_ethereum.txt
Created October 5, 2016 06:33 — forked from nagydani/ipfs_ethereum.txt
Integration of ipfs and Ethereum
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
@denzuko
denzuko / revoke_user.sh
Created October 17, 2016 21:40 — forked from rynop/revoke_user.sh
revoke client cert
#!/bin/bash
function usage () {
echo "$0 [CA section name] [username]"
exit 1
}
if [ $# -ne 2 ]
then
usage
@denzuko
denzuko / nginx.conf
Last active October 17, 2016 22:58 — forked from rynop/nginx.conf
nginx-gridfs conf
# 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;
@denzuko
denzuko / devops_training.txt
Created March 20, 2017 15:21 — forked from ssmythe/devops_training.txt
Training materials for DevOps
======
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)
@denzuko
denzuko / ix
Created May 4, 2017 14:31 — forked from cirrusUK/ix
shell script for the ix pastebin
#!/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() {
@denzuko
denzuko / .travis.yml
Created September 21, 2017 13:45 — forked from BretFisher/.travis.yml
Travis-CI Docker Image Build and Push to AWS ECR
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