Skip to content

Instantly share code, notes, and snippets.

View jwlms's full-sized avatar

Joshua Williams jwlms

View GitHub Profile
javascript:(function() { [].forEach.call(document.querySelectorAll('.outdated-comment'), function(element) {
element.className += ' open';
element.className += ' Details--on';
}); } ())
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then
export TERM='gnome-256color';
elif infocmp xterm-256color >/dev/null 2>&1; then
export TERM='xterm-256color';
fi;
prompt_git() {
local s='';
local branchName='';
==> db1: Machine booted and ready!
==> db1: Checking for guest additions in VM...
==> db1: [vagrant-hostsupdater] Checking for host entries
==> db1: Configuring and enabling network interfaces...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
/sbin/ifdown eth1 2> /dev/null
Stdout from the command:
@jwlms
jwlms / .rvmrc
Created January 6, 2016 00:24
silly nvm
# `rvm use default` to keep global gemset set to global
rvm use default && nvm use
@jwlms
jwlms / mq nesting
Created July 15, 2013 23:51
don't nest too deep
.menu-toggle { ... // ok
.menu-toggle {
ul {
... // ok
}
}
.menu-toggle {
ul {
li {
@jwlms
jwlms / mq nesting
Created July 15, 2013 23:48
media query nesting
.svg #site-title a { // OK
@media( max-width: $w7 ) {
background: transparent url(images/flv-logo.svg) no-repeat 0 0;
}
}
.svg #site-title a { // no
@media( max-width: $w7 ) {
@media ( max-device-width: $ipad ) {
background: transparent url(images/flv-logo.svg) no-repeat 0 0;
}
@jwlms
jwlms / gist:c1eb2bc7d085b6912f5f
Created November 10, 2015 21:48
harp post link generation
each report, slug in public.reports._data
a(href="/reports/#{ slug }")
h2= report.title
find . -name "*[format]" | while read line; do expand -t 4 $line > $line.new; mv $line.new $line; done
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
server_name HOSTNAME.com;
return 301 https://HOSTNAME.com$request_uri;
}
server {
#listening on port 443
listen 443 ssl;
#set site root
root /var/www/HOSTNAME.com;
index index.php index.html;
#set key locations
ssl_certificate /etc/sslmate/HOSTNAME.com.chained.crt;