Models | Examples |
---|---|
Display ads | Yahoo! |
Search ads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' | |
green='\033[0;32m' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- mode: lisp -*- | |
;; | |
;; A quick and dirty tree shaker for SBCL. Basically, it destroys the | |
;; package system and does a gc before saving the lisp image. Gives | |
;; about a 40% reduction in image size on a basic hello world test. | |
;; Would like to hear how it works on larger projects. | |
;; | |
;; Original idea from: https://groups.google.com/d/msg/comp.lang.lisp/6zpZsWFFW18/WMy4PyA9B4kJ | |
;; | |
;; Burton Samograd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#*Step By Step Instruction* | |
##Set Apple TV to Aux Keys | |
-- | |
Press Aux (Device) Button | |
Hold Setup Key until Aux Button Blinks Twice | |
Type in code 31115 (Aux Button will blink twice, if it is a long blink try last three steps again) | |
##Fix Play and Pause Keys | |
-- |
The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23/12/2008
- Revised date: 15/12/2013
- Original post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -x | |
START_DIR=$CWD | |
SHARE_DIR=/backup001/chem/home/chem/src/mfsbsd | |
KEYBOARD=dvorak | |
WANT_PHORONIX_TEST_SUITE=4.4.1 # set it to no to disable | |
# catch error from my own error function even in subshell. | |
err_handler () | |
{ | |
rc=$? |
-
For convenience, download this entire gist with
git clone https://gist.github.com/4455067.git
-
Get Eggdrop 1.8 [from Git][egggit] or [from CVS][eggcvs]. Compile and install.
The
preinit-server
patch was [merged into Eggdrop 1.8][commit] recently, so you do not need to patch it manually anymore. -
From your Eggdrop config,
source
the scripts and set the SASL information.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@rescue ~]# kldload zfs | |
[root@rescue ~]# sysctl kern.geom.label.gptid.enable=0 | |
kern.geom.label.gptid.enable: 1 -> 0 | |
[root@rescue ~]# gpart destroy -F nvd0 | |
nvd0 destroyed | |
[root@rescue ~]# gpart destroy -F nvd1 | |
nvd1 destroyed | |
# Getting "gpart: arg0 'nvdN': Invalid argument" is alright as it means that there was no partition table on the disk anyway. | |
[root@rescue ~]# gpart create -s gpt nvd0 |
OlderNewer