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> | |
<title>Attention aux librairies</title> | |
<style type="text/css" media="screen"> | |
.hidden span { | |
display: none; | |
} | |
</style> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script> | |
</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
<!DOCTYPE html> | |
<html> | |
<head><title>Event delegation</title></head> | |
<body> | |
<ul> | |
<li><a href="#a"><span>a</span></a></li> | |
<li><a href="#b"><span><span>b</span></span></a></li> | |
<li><a href="#c"><span><span><span>c</span></span></span></a></li> | |
</ul> | |
<script> |
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
#!/usr/local/bin/python2.6 | |
# encoding: utf-8 | |
import sys | |
import getpass | |
import urllib2 | |
import json | |
import datetime | |
TWITTER_DOMAIN = "https://twitter.com/" |
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 | |
setcookie('unsafe', 'true'); | |
setcookie('safe', 'true', 0, '', '', '', TRUE); | |
if ($_COOKIE['unsafe']) | |
echo 'unsafe<br>'; | |
if ($_COOKIE['safe']) | |
echo 'safe<br>'; | |
?> |
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
<!doctype html> | |
<head> | |
<title>Test BSG</title> | |
<link rel="stylesheet" type="text/css" href="jump.css"> | |
<script type="text/javascript"> | |
(function (){ | |
var all_along_the_watch_tower = '1142'; | |
var key_sequence = ''; | |
var keypress = function (e) { | |
var caracter = e.which - 48; |
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
var containsClass = function (elm, className) { | |
if (document.documentElement.classList) { | |
containsClass = function (elm, className) { | |
return elm.classList.contains(className); | |
} | |
} else { | |
containsClass = function (elm, className) { | |
if (!elm || !elm.className) { | |
return false; | |
} |
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
#context-sendpage, #context-sendlink, #context-sendimage, #context-setDesktopBackground, | |
#context-bookmarklink, #context-savelink, #context-searchselect, | |
#context-bookmarkpage, #context-savepage, #context-sep-open, #context-sep-viewbgimage, | |
#urlbar .urlbar-history-dropmarker, #star-button | |
{ | |
display: none !important; | |
} | |
#urlbar-icons { | |
margin-right: 2px; |
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
#!/usr/bin/env bash | |
function optimize | |
{ | |
echo $1 | |
filesize=`stat -f %z "$1"` | |
if [[ $filesize -lt 10000 ]]; then | |
jpegtran -copy none -optimize "$1" > "$1.bak" | |
echo "pet | |
else |
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
<!DOCTYPE html> | |
<meta charset=utf-8 /> | |
<title>test</title> | |
<style> | |
</style> | |
<div></div> |
OlderNewer