Skip to content

Instantly share code, notes, and snippets.

View CaDs's full-sized avatar
🌊
We are all waves of the same sea

Carlos Donderis CaDs

🌊
We are all waves of the same sea
View GitHub Profile

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@joshuatobin
joshuatobin / Erase hipchat
Last active August 1, 2017 08:05
Remove hipchat private chat
#!/usr/lib/ruby env
# Modified from https://gist.github.com/jpr5/4260656
require 'rubygems'
require 'mechanize'
account = {
:email => "example@example.com",
:password => "123456",
}
agent = Mechanize.new
@micho
micho / nginx.conf
Last active September 29, 2023 16:38 — forked from unixcharles/nginx.conf
nginx config for http/https proxy to localhost:3000
First, install nginx for mac with "brew install nginx".
Then follow homebrew's instructions to know where the config file is.
1. To use https you will need a self-signed certificate: https://devcenter.heroku.com/articles/ssl-certificate-self
2. Copy it somewhere (use full path in the example below for server.* files)
3. sudo nginx -s reload
4. Access https://localhost/
Edit /usr/local/etc/nginx/nginx.conf: