This file contains hidden or 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
| /* | |
| * Mixin for generic rounded webfont icon | |
| * | |
| */ | |
| @mixin -emencia-round-font-icon( | |
| $inner-padding: 1rem, | |
| $font-size: 2rem, | |
| $color: $black, | |
| $border-width: 0.1rem, | |
| $border-color: null |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| Some tools to extract datas about codemirror components (modes, themes) | |
| This is only designed to developers. You will have to use it like so: :: | |
| python extract.py | |
| """ | |
| import os, json |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| Some ssh script stuff using 'fabric' | |
| My personnal environment use ssh keys with passphrase | |
| (some empty, some other not) to connect to knowed hosts. | |
| Install requires: | |
| * Needed C build toolchain to compile C modules; |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| Very basic code to search within logs from Quassel IRC client | |
| Tested on Quassel v0.10.0 (dist-575f27e) | |
| """ | |
| import sqlite3 | |
| import os | |
| import json |
This file contains hidden or 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
| /* | |
| * | |
| * This is a CasperJS script. | |
| * | |
| * It try to authenticate so the session cookie can be stored in current profile | |
| * and then BackstopJS+CasperJS+SlimerJS can use the same cookie during tests. | |
| * | |
| * Scenario | |
| * ======== | |
| * |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| This should enforce relative @import using the full path in sass files | |
| Problem is, Compass resolve relative path as relative to the current file even into sass libraries. | |
| 'libsass' does not do that and allways resolves relative path to the current sass source file directory. | |
| So some sass library like Foundation use the way from Compass do (and like node-sass seems to do also with some sugar). |
This file contains hidden or 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
| /* | |
| * Sample app Javascript initializer to demonstrate usage of 'mediaquery-watcher.jquery.js' | |
| */ | |
| $(document).ready(function($) { | |
| // Init MediaQuery watcher | |
| $('#watch-for-current-mquery').initCurrentMediaQuery(); | |
| $('#watch-for-current-mquery').watchForCurrentMediaQuery(); | |
| /* | |
| * Initialize Foundation after all event is binded |
This file contains hidden or 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
| /** | |
| * Grunt config | |
| */ | |
| module.exports = function(grunt) { | |
| var project_dir = 'project/', | |
| static_dir = project_dir+'webapp_statics/', | |
| asset_manifest = grunt.file.readJSON(project_dir+'assets.json'), | |
| prepend_staticdir = function(file_map) { | |
| for(var keyname in file_map){ | |
| var distkey = static_dir+keyname; |
This file contains hidden or 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
| <?xml version='1.0' encoding='UTF-8'?> | |
| <systems> | |
| <system key="atari2600" name="Atari 2600"> | |
| <extensions> | |
| <extension>a26</extension> | |
| </extensions> | |
| <download_links> | |
| <link>http://www.planetemu.net/roms/atari-2600</link> | |
| </download_links> | |
| </system> |
This file contains hidden or 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 "compass/css3"; | |
| @import "compass/css3/shared"; | |
| // For more information see https://gist.github.com/cimmanon/727c9d558b374d27c5b6 | |
| // NOTE: | |
| // ----- | |
| // All mixins for the @box spec have been written assuming they'll be fed property values that | |
| // correspond to the standard spec. Some mixins can be fed values from the @box spec, but don't |