Skip to content

Instantly share code, notes, and snippets.

View rik's full-sized avatar

Anthony Ricaud rik

View GitHub Profile
We couldn’t find that file to show.
<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>
<!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>
#!/usr/local/bin/python2.6
# encoding: utf-8
import sys
import getpass
import urllib2
import json
import datetime
TWITTER_DOMAIN = "https://twitter.com/"
<?php
setcookie('unsafe', 'true');
setcookie('safe', 'true', 0, '', '', '', TRUE);
if ($_COOKIE['unsafe'])
echo 'unsafe<br>';
if ($_COOKIE['safe'])
echo 'safe<br>';
?>
<!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;
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;
}
#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;
@rik
rik / jpegtran-directory.sh
Created July 14, 2011 22:28
Run jpegtran on every image in a directory (and subdirectories)
#!/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
@rik
rik / template.html
Created March 8, 2012 19:51 — forked from paulrouget/template.html
Empty HTML5 page
<!DOCTYPE html>
<meta charset=utf-8 />
<title>test</title>
<style>
</style>
<div></div>