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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
// Attributes | |
// ---------------------------------- | |
$grid-default-column-count: 12 !default; |
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> | |
<title>lazyloading images</title> | |
<link rel="stylesheet" href="styles.css" /> | |
<script src="lazyload.min.js"></script> | |
<div class="popin"> | |
<h1>simple images example</h1> | |
<h2>scroll for more</h2> | |
<div class="pad"> | |
<img |
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
// ==UserScript== | |
// @name CoachLaBrute | |
// @description Ajoute des métriques pour suivre la progression de ses brutes | |
// @id fr.tzi.CoachLaBrute | |
// @namespace http://tzi.fr | |
// @author tzi | |
// @include http://*.labrute.fr/cellule | |
// @include http://*.labrute.fr/arene | |
// @grant none | |
// @version 2015.04.22 |
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
// Fonction anonyme | |
(function (){ | |
var border_image = function(win) { | |
// On essaye de récupérer le document à partir de la fenêtre | |
var doc | |
try { | |
doc = win.document; | |
} catch(e) {} |
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
# USAGE | |
usage() | |
{ | |
echo "usage: $0 [ -v ] <storage> <destination>" | |
echo "" | |
echo " -v : Increase the verbose" | |
echo "" | |
exit | |
} |
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>Parse SGF to JSON in Javascript</title> | |
<script type="text/javascript" src="sgf.js"></script> | |
<script type="text/javascript"> | |
window.onload = function() { | |
document.getElementById( 'form_sgf' ).onsubmit = function() { | |
parse_sgf( document.getElementById( 'textarea_sgf' ).value ); | |
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
<?php | |
$viewdefs[ $module_name ][ 'EditView' ] = array( | |
// CONTENT | |
'panels' => array( | |
// PANEL | |
'lbl_panel_1' => array( | |
// ROW |
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 | |
$config = array ( | |
'assignable' => true, | |
'acl' => true, | |
'has_tab' => true, | |
'studio' => true, | |
'audit' => true, | |
'templates' => |
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 () { | |
if ( typeof( bm_popin ) == 'undefined' ) { | |
alert( 'Please update your Bookmarklet here: http://zilliox.me/bm' ); | |
} else { | |
// Instanciate a generic bookmarklet popin | |
var popin = new bm_popin( 1534085 ); | |
popin.title( 'What JS ?' ); | |
var no_framework = true; | |
// jQuery : http://jquery.com/ |
OlderNewer