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
// javascript objects keys method | |
// from http://javascriptweblog.wordpress.com/2011/02/28/javascript-object-keys-finally/ | |
//all browsers | |
if (typeof Object.keys != 'function') { | |
Object.keys = function(obj) { | |
if (typeof obj != "object" && typeof obj != "function" || obj == null) { | |
throw TypeError("Object.keys called on non-object"); | |
} |
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 | |
gpg --keyserver pgpkeys.mit.edu --recv-key $1 | |
gpg -a --export $1| apt-key add - | |
echo "done" |
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
// | |
// useful for executing safely embedded syntaxhighlighter code | |
// | |
function getInnerText(el, recurse) { | |
// innerText emulation for Firefox | |
// pereserve carriage returns | |
// remove JS comments | |
var inner = new Array(); | |
if (el.childNodes[0] && el.childNodes[0].nodeValue) { |
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
# -*- encoding: UTF-8 -*- | |
from PIL import Image | |
import ImageOps | |
IN = 'bianchi.png' | |
EKTA = 'ekta.png' | |
image = Image.open( IN ) | |
ekta = Image.open( EKTA ) |
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
# -*- encoding: UTF-8 -*- | |
# grab email addresses from your IMAP inbox | |
def getHeadersFromEmails(host = 'imap.gmail.com', username = '', password = '', folder = 'INBOX', header = 'FROM', search = 'ALL'): | |
import imaplib | |
import re | |
imap = imaplib.IMAP4_SSL(host, 993) | |
imap.login(username, password) | |
mboxes = imap.list() |
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
# | |
# redirect requests if not iPad or Android tablet | |
# NB "mobile safari" is the UA for Android phones | |
# | |
RewriteEngine On | |
SetEnv isAndroidTablet=NO | |
BrowserMatchNoCase Android isAndroidTablet=YES | |
BrowserMatchNoCase "Mobile Safari" isAndroidTablet=NO |
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
<html> | |
<head> | |
<script language="javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script language="javascript"> | |
// | |
// client side image to base64 conversion for your CSS | |
// from revolunet team - [email protected] | |
// demo at : http://revolunet.com/static/drop.html | |
// | |
$(document).ready(function() { |
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
REM change UDP IP and port | |
"c:\program files\videolan\vlc\vlc.exe" "C:\\Users\\juju\\Desktop\\divx\\aymo_brille.avi" --sout="#duplicate{dst=std{access=udp,mux=ts,dst=239.255.12.4:1234}}" --sout-udp-caching=1000 --extraintf=http |
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
REM SERVER (HTTP) | |
vlc "C:\\Users\\juju\\Desktop\\divx\\aymo_brille.avi" --sout="#duplicate{dst=std{access=http,mux=ts,dst=0.0.0.0:1234}}" --extraintf=http | |
REM CLIENT | |
vlc http://SERVERIP:1234 --http-caching=5000 |
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 Image, ImageDraw, ImageFont | |
import os | |
def createImage(width=100, height=50): | |
size = (width, height) | |
im = Image.new('RGB', size) | |
draw = ImageDraw.Draw(im) | |
color = (100,100,100) |