I hereby claim:
- I am thecarlo on github.
- I am thecarlo (https://keybase.io/thecarlo) on keybase.
- I have a public key ASAV_8ELEFvUNfmz16b2nLf3UdqgPsaxOQwo9nJfZ9F60go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
using Amazon; | |
using Amazon.SQS; | |
using Amazon.SQS.Model; | |
using Amazon.SQS.Util; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading; | |
namespace Sixeyed.Blogging.Aws |
Key Points from NoSQL Distilled Modeling Data for NoSQL Document Databases https://www.youtube.com/watch?v=-o_VGpJP-Q0
This presentation was recorded at GOTO Aarhus 2012
Martin Fowler - Author, Speaker, Consultant & General Loud-mouth on Software Development
I know this document seems long, but it shouldn't be too difficult to follow. This guide is based on Windows, but every program here have Linux/Mac equivalents, and in most cases they're built-in. So, take a deep breath and go step by step.
The steps below are for GitHub, but the steps are almost idential for Bitbucket, Heroku, etc.
You'll probably want to make sure Chocolatey is installed, since it streamlines installing this stuff later. If you install via Chocolatey, you don't need to run the installers from the products' respective sites.
Below is the list of modern JS frameworks and almost frameworks – Angular, Ember and React.
All files were downloaded from https://cdnjs.com and named accordingly.
Output from ls
command is stripped out (irrelevant stuff)
$ ls -lhS
566K Jan 4 22:03 angular2.min.js
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
############################################################################### | |
# Helpful Docker commands and code snippets | |
############################################################################### | |
### CONTAINERS ### | |
docker stop $(docker ps -a -q) #stop ALL containers | |
docker rm -f $(docker ps -a -q) # remove ALL containers | |
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter | |
# helps with error: 'unexpected end of JSON input' |
#!/bin/bash | |
# get latest docker compose released tag | |
COMPOSE_VERSION=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep 'tag_name' | cut -d\" -f4) | |
# Install docker-compose | |
sh -c "curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose" | |
chmod +x /usr/local/bin/docker-compose | |
sh -c "curl -L https://raw.githubusercontent.com/docker/compose/${COMPOSE_VERSION}/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose" |