- Twitter Bootstrap jQuery Mobile Theme
- Colorpicker and Datepicker for Twitter
- unique web design with Twitter Bootstrap
- [Beatutiful buttons] (http://charliepark.org/bootstrap_buttons/)
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
import sys | |
import os | |
import re | |
def normalize(filename): | |
(root, ext)=os.path.splitext(filename) | |
filename2 = root + "-norm"+ ext | |
print "Normalizing ", filename2 | |
f=open(filename, 'r') |
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
#Finds a list of jar files | |
find . -name \*.jar -print | |
#Using an alias | |
#Usage list *.jar | |
function list { find . -name "$1" -print ;} | |
export -f list | |
#Search text in files, recursive, ignore case, with file and line number: | |
grep -Hirn term *.txt |
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
#Decrypt the file enigma.txt | |
enc -d -aes128 -base64 -in enigma.txt -pass pass:**** | |
#Converts p12 to pem | |
openssl pkcs12 -in mypass.p12 -out mypass.pem -clcerts |
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
import scala.xml._ | |
import scala.xml.transform._ | |
import java.io.File | |
import scala.util.matching.Regex | |
import scala.util.matching.Regex.Match | |
/** | |
Creator: 2013, Olivier Huin (https://github.com/olih) | |
License: Eclipse Public License - v 1.0 | |
Contributors: | |
*/ |
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
import scala.xml._ | |
import scala.xml.transform._ | |
import java.io._ | |
import xml._ | |
/** | |
Creator: 2013, Olivier Huin (https://github.com/olih) | |
License: Eclipse Public License - v 1.0 | |
Contributors: | |
*/ |
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
/* GLOBAL STYLES | |
-------------------------------------------------- */ | |
/* Padding below the footer and lighter body text */ | |
body { | |
padding-bottom: 40px; | |
color: #5a5a5a; | |
} | |
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
#On MacOS, adds this to your .bash_profile | |
function json { coffee --print --bare $1.coffee | sed '1s/&.//' | sed 's/});/}/' | sed 's/({/{/' | sed "s/\([^ '\"].*[^ '\"]\): /\"\1\": /1" > $1.json ;} | |
export -f json |
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
renderer: | |
template: "the template to use" | |
template_type: "the template engine" | |
url: "the address of the page" | |
headers: | |
content_language: "The language the content is in (en,fr)" | |
last_modified: "The last modified date for the requested object, in RFC 2822 format" | |
expires: "Gives the date/time after which the response is considered stale" | |
etag: "An identifier for a specific version of a resource, often a message digest" | |
head: |
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
function tard { tar cvf $1-$(date +%Y-%m-%dT%H:%MZ).tar $1;} | |
export tard | |
function tarzd { tar cvfz $1-$(date +%Y-%m-%dT%H:%MZ).tar.gz $1;} | |
export tarzd |
OlderNewer