Discover gists
View user-initials.html
<html> | |
<head> | |
<title>User Initials</title> | |
<style> | |
/* Relevant Code */ | |
.person { | |
display: table; | |
margin: 24px auto; | |
} |
View TypedIterableCapabilty.h
#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 90000 | |
#define __typed_iterable(iterablesCls, elementsType) iterablesCls<elementsType> * | |
#else | |
#define __typed_iterable(iterablesCls, elementsType) iterablesCls * | |
#endif | |
#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 90000 | |
#define __ktyped_iterable(iterablesCls, elementsType) iterablesCls<__kindof elementsType> * | |
#else | |
#define __ktyped_iterable(iterablesCls, elementsType) iterablesCls * |
View tiled_loader.pde
import gifAnimation.*; | |
GifMaker gifExport; | |
int frames = 0; | |
int totalFrames = 120; | |
public void setup() { | |
smooth(); | |
size(360, 360); |
View .sbclrc
;;; Better printing for hash tables | |
(set-pprint-dispatch 'hash-table | |
(lambda (str ht) | |
(format str "{~{~{~S => ~S~}~^, ~}}" | |
(loop for key being the hash-keys of ht | |
for value being the hash-values of ht | |
collect (list key value))))) |
View gist:c20d57be953e78cadfc3
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- This stylesheet will generate a tsv file from an EAD container list. It will catch all c0X elements that have a did/container child --> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | |
<!-- We don't want an xml declaration in the output, since this will just be a tab-separated text file--> | |
<xsl:output omit-xml-declaration="yes"/> | |
<!-- We don't want extra space floating around --> |
View gist:6286073ab5e890886e30
{ | |
"always_show_minimap_viewport": false, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", | |
"copy_with_empty_selection": false, | |
"default_encoding": "UTF-8", | |
"detect_indentation": false, | |
"font_size": 10, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": |
View autoban.rb
#!/bin/env/ruby | |
# A more efficient and documented autoban.rb | |
# Jamie - index.hm. Released under MIT. | |
# This won't work with binary journal logs - the 'systemd/journal' gem doesn't work universally | |
$ssh_port = 1234 | |
$network = ["127.0.0.0/8", "10.0.0.0/8", "192.168.0.0/16"] | |
require "shellwords" |
View gource.sh
# 1.install gource using HomeBrew | |
$ brew install gource | |
# 2.install avconv | |
git clone git://git.libav.org/libav.git | |
cd libav | |
# it will take 3-5 minutes to complie, be patient. | |
./configure --disable-yasm | |
make && make install |
View gist:12e050da7c9e1b5793dd
# Sass, css for Cool People | |
### What is Sass | |
* Precompiler for CSS | |
* Why use it? | |
### Sass in Rails | |
* Setup - just a gem | |
### 2 Different Flava's |
View FAQ.html
<!doctype html> | |
<html lang="eng"> | |
<head> | |
<meta charset="utf-8"> | |
<title>FAQ</title> | |
<!-- JQuery --> | |
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script> | |
<!-- Latest compiled and minified Bootstrap CSS --> |
OlderNewer