View SassMeister-input.scss
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; |
View index.html
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 |
View coachlabrute.user.js
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 |
View border_image.js
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) {} |
View alphabounceenhancer.user.js
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 AlphabounceEnhancer | |
// @namespace http://zilliox.me | |
// @description Improve the Alphabounce interface by adding the direction of the missions, the planets and the asteroids. This script also add a bloc-note. | |
// @include *.alphabounce.com/ | |
// @include *.alphabounce.com/?* | |
// ==/UserScript== | |
(function () { | |
var $; |
View gist:1351364
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 | |
} |
View index.html
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; | |
} |
View custom-field-data.php
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 |
View config.php
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' => |
View whatJS.js
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