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
Nifty links | |
https://savannah.nongnu.org/projects/emacs-tiny-tools | |
http://www.emacswiki.org/emacs/EmacsSession | |
http://www.emacswiki.org/emacs/EmacsNiftyTricks | |
https://sites.google.com/site/steveyegge2/my-dot-emacs-file | |
http://www.emacswiki.org/emacs/TinyTools | |
Learning Lisp | |
http://cs.gmu.edu/~sean/lisp/LispTutorial.html | |
http://www.gigamonkeys.com/book/ |
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
Learning Lisp | |
http://cs.gmu.edu/~sean/lisp/LispTutorial.html | |
http://www.gigamonkeys.com/book/ | |
http://www.cs.sfu.ca/CourseCentral/310/pwfong/Lisp/1/tutorial1.html |
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
;; ----------------------------------------------------------------------------- | |
;; My gists setup. | |
(define-key my-keys-minor-mode-map (kbd "C-c C-g") 'gist-region) | |
(autoload 'gist-region "gist") |
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
Nifty links | |
https://savannah.nongnu.org/projects/emacs-tiny-tools | |
http://www.emacswiki.org/emacs/EmacsSession | |
http://www.emacswiki.org/emacs/EmacsNiftyTricks | |
https://sites.google.com/site/steveyegge2/my-dot-emacs-file | |
http://www.emacswiki.org/emacs/TinyTools | |
Learning Lisp | |
http://cs.gmu.edu/~sean/lisp/LispTutorial.html | |
http://www.gigamonkeys.com/book/ |
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
$vars['content']['links']['#weight'] = 100; | |
$vars['content']['body']['#weight'] = 2 |
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
http://www.newegg.com/Product/Product.aspx?Item=N82E16822149521 | |
http://www.newegg.com/Product/Product.aspx?Item=N82E16882021055 |
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
$data = $this->getData(); | |
// Override the $data variable. | |
if (!$data) { | |
$data = array('table' => array()); | |
} |
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
<?php | |
/** | |
* Convert MP3 links from the body text into themed jplayer HTML | |
* @param string $text | |
* @return string new body text | |
*/ | |
function pi_river_filter_mp3_link($text) { | |
if (empty($text)) { | |
return $text; |
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
{ | |
"default_font_size": 10, | |
"font_size": 15.0, | |
"rulers": | |
[ | |
80 | |
], | |
"scroll_past_end": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, |
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/bash | |
# A way to delete everything in this the directory which this script was called. | |
echo "Are you sure you wish to continue? [y/n]" | |
echo "" | |
echo "If you do then all these types of files will be deleted:" | |
echo " .git" | |
echo " .gitignore" | |
echo " .DS_Store" |
OlderNewer