When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}
#!/bin/sh | |
# | |
# This simple script is setting up a Alpine Linux installation in a chroot. | |
# chroot will be placed in the current working directory. | |
# | |
# Most parts of this script are written down at | |
# http://wiki.alpinelinux.org/wiki/Setting_up_the_build_environment_in_chroot | |
# | |
# Licensed under GPLv2 | |
# |
;; PRETTIFY SYMBOLS (with Pragmata Pro) | |
(defun setup-pragmata-ligatures () | |
(setq prettify-symbols-alist | |
(append prettify-symbols-alist | |
'(("!!" . ?) | |
("!=" . ?) | |
("!==" . ?) | |
("!≡" . ?) | |
("!≡≡" . ?) | |
("!>" . ?) |
#!/bin/sh | |
HOSTED_ZONE="Route53 zone ID" | |
payload() { | |
local action=$1 | |
cat <<EOF | |
{ | |
"Changes": [ | |
{ "Action": "${action}", |
# -- Conky settings -- # | |
background no | |
update_interval 1 | |
cpu_avg_samples 2 | |
net_avg_samples 2 | |
override_utf8_locale yes | |
double_buffer yes |
#!/bin/bash | |
# | |
# Watch current directory (recursively) for file changes, and execute a command | |
# when a file or directory is created, modified or deleted. | |
# | |
# Modified from the original by: Senko Rasic <[email protected]> | |
# https://gist.github.com/senko/1154509 | |
# | |
# Requires: | |
# bash |
(function(d, u) { | |
var s = d.createElement('script'); | |
s.src = u; | |
s.async = !!1; | |
(d.head || d.getElementsByTagName('head')[0]).appendChild(s); | |
}(document, 'https://gist.githubusercontent.com/mauricecruz/d20345b25b5c3ca0a4d7/raw/3f0a90112026a1e51a401dcb2fe6f3ca7bf299c0/snippet.js')); | |
(function(d){var a=d.createElement("script");a.src="https://gist.githubusercontent.com/mauricecruz/d20345b25b5c3ca0a4d7/raw/3f0a90112026a1e51a401dcb2fe6f3ca7bf299c0/snippet.js";a.async=!0;d.head.appendChild(a);}(document))(); |
{ | |
"base_url":"http://example.com/launcher/v1", | |
"server_id":"", | |
"name": "MagiTech Madness", | |
"news":"http://example.com/launcher/v1/index.html", | |
"address":"", | |
"revision":"0.0.1", | |
"version":"1.6.4" | |
} |
var fs = require('fs') | |
, path = require("path") | |
, cp = require('child_process') | |
, Step = require('step') | |
, colors = require('colors') | |
, start = Date.now(); | |
walk = (function() { | |
var counter = 0; | |
var walk = function(dirname, callback, finished) { |