Skip to content

Instantly share code, notes, and snippets.

View pascalandy's full-sized avatar
:octocat:
Rocking the git

Pascal Andy pascalandy

:octocat:
Rocking the git
View GitHub Profile
@pascalandy
pascalandy / sudo flash --hostname swrpi3-master01 hypriot-rpi-20160306-192317.img
Created March 12, 2016 22:33
sudo flash --hostname swrpi3-master01 hypriot-rpi-20160306-192317.img
hypriot|⇒ sudo flash --hostname swrpi3-master01 hypriot-rpi-20160306-192317.img
sudo: flash: command not found
hypriot|⇒ sudo ./flash --hostname swrpi3-master01 hypriot-rpi-20160306-192317.img
Filesystem Size Used Avail Capacity iused ifree %iused Mounted on
/dev/disk0s2 233Gi 190Gi 43Gi 82% 49829725 11239715 82% /
devfs 185Ki 185Ki 0Bi 100% 642 0 100% /dev
map -hosts 0Bi 0Bi 0Bi 100% 0 0 100% /net
map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /home
localhost:/XEuZlcSPMkQ7RF-Z9YIlVd 233Gi 233Gi 0Bi 100% 0 0 100% /Volumes/MobileBackups
/dev/disk1s1 64Mi 30Mi 34Mi 47% 512 0 100% /Volumes/NO NAME
@pascalandy
pascalandy / nptest.sh
Created March 19, 2016 20:09
nginx-proxy multiple user-defined networks test (PR 337)
#! /bin/bash
# Test for: https://github.com/jwilder/nginx-proxy/pull/337#issuecomment-198494662
echo "Creating networks"
docker network create nptest_other >/dev/null
docker network create nptest_net1 >/dev/null
docker network create nptest_net2 >/dev/null
echo "Starting nginx-proxy"
ghost:
image: "so0k/docker-ghost:0.5.8"
environment:
- DB_CLIENT=pg
- DB_CONNECTION_STRING=postgres://username:password@db_host/database
- USER_UID=500
- USER_GID=500
- GHOST_URL=http://blog.project.com
ports:
- "80:2368"
---
layout: default
permalink: /
---
# Advanced JavaScript syllabus
***If you are a teacher or interested in the design of the course, see the [meta](https://github.com/advanced-js/syllabus/blob/master/meta.md) document.***
* **Course:** [INFO1-CE9766, NYU SCPS](http://scps.nyu.edu/content/scps/academics/course_detail.html?id=INFO1-CE9766)
# sets the proxy cache path location, max size 2g
proxy_cache_path /data/nginx/cache levels=1:2 keys_zone=STATIC:100m inactive=24h max_size=2g;
# transfers the `Host` header to the backend
proxy_set_header Host $host;
# uses the defined STATIC cache zone
proxy_cache STATIC;
# cache 200 10 minutes, 404 1 minute, others status codes not cached
@pascalandy
pascalandy / PASSWORD GENERATOR
Created April 2, 2016 20:40
bash PASSWORD GENERATOR. 44 alpha-num password
echo "START - Password generator" &&
DEPLOY_ID=g99999101_131 &&
DB_PASSWORD=`openssl rand -hex 22` &&
echo '' &&
echo Password for $DEPLOY_ID is: $DB_PASSWORD &&
echo '' &&
echo "END - Password generator"
@pascalandy
pascalandy / core-blog-cover.jpg
Created April 2, 2016 21:59
publiodigital-com/demo-content/111_general-demo/1_core-images
data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAUCAgICAwUCAgIFBQUDBwYEBwMDBwcFCwQGEQ8SEREPCAgTFRsXExQZCwgIFyAYGRwdHh4eChchIyAdIxsdHh3/2wBDAQUFBQcDBw0EBA0dEwgTHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR3/wgARCANWBQADARIAAhEBAxEB/8QAHAAAAgMBAQEBAAAAAAAAAAAAAgMAAQQFBgcI/8QAGQEBAQEBAQEAAAAAAAAAAAAAAAECAwQF/9oADAMBAAIQAxAAAAHuF5vQEJC6CEIS6JQYBCEIQhDRgGAYQwAwDAMA6KlVCUSyQkLkSVLKski6Coui6Loui4SA2SggDWNWEIQliFQYqYw0BghDBiXQQhWS1kS6LtaIq4lkCwgGAWumAGJdWFUpChhRAPXKwAqCEIQhCouJdKVBAhBRJsckclXLhglrLAJZcsupbEISUWoJQS0YA1Q5QxQaqNVGtGLGKGrGLGLGLo1jFIxYxYwAxDoKghCgVBAGAawgLCiWGAQl0kosQhCoIAwGLCUGuw1I1A3OPzjs47PTkDVBAGsMYIauhwnoGceyNBk1GTQZniGiWCzFmAYBizBOgYKbC2AGAYBgXVWDYNlXFWVZCWWUYJQJAmCRRAGLYLMBgBgMAMBgpohwh5neJcKdCmi3SqcKeKcJaLaKcJaAwowGAGDZLIYshZoBUBiWiG2AZCBsoxbKUYJgEVCFEhItEVC6LoobBsXaVQULtTGJACBICy6LokiVVQAgCoDBIWQu0q6WwW0U0BgtgtguwLsqwbKIhFGCwWwEwCSpUEurLolFXKNgkCYJQNgXQwqEpINEsICwSCSqqA2CQJC2QpgtgswDBNQNAYRh3h59TGjBDEuwDVbkTprJrTDplzOM71Q0WSUVAYBFWDCrBMAxZygYDIW0WxRKKIEwDhblBgDBbEWxV
@pascalandy
pascalandy / submodule - how to
Last active April 8, 2016 14:53 — forked from necolas/gist:2215692
Git submodules
# Workflow from https://github.com/necolas/dotfiles
# Add the new submodule
git submodule add https://github.com/TryGhost/Casper.git
# Initialize the submodule
git submodule init
# Clone the submodule
git submodule update
# Stage the changes
git add Casper
Below is just about everything you need to know to edit your content. Checkout the [markdown source](/markdown-sources-its-a-question-of-style/) used to write this actual page.
---
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
@pascalandy
pascalandy / after-patch.log
Created April 19, 2016 00:50 — forked from rochacon/after-patch.log
Docker issue 5684
ubuntu@ip-10-13-0-67:~$ bash -xe test.sh
+ docker version
Client version: 1.1.1
Client API version: 1.13
Go version (client): go1.2.1
Git commit (client): bd609d2
Server version: 1.1.1
Server API version: 1.13
Go version (server): go1.2.1
Git commit (server): bd609d2