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
SYSTEM_PRODUCT_NAME = $(shell cat /sys/devices/virtual/dmi/id/product_name 2>/dev/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
/** | |
* Define a module with optional dependencies. | |
* | |
* @function | |
* @param {String} id Optional module ID. If this is omitted, no module is defined and instead <code>factory</code> is called immediately. | |
* @param {Array} dependencies Optional list of module IDs on which this module depends. | |
* @param {Function} factory The module body. The function is called with arguments matching the given dependencies, if any. | |
* @return {Function} The module body with dependencies injected. | |
*/ | |
var define = (function() { |
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
// Taken from https://bitbucket.org/pellepim/jstimezonedetect/raw/default/detect_timezone.js | |
/*version 2012-05-10*/ | |
/** | |
* Namespace to hold all the code for timezone detection. | |
*/ | |
var jstz = (function () { | |
'use strict'; |
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
" Cyrillic configuration, tired of layout switching, no? | |
set langmap+=чявертъуиопшщасдфгхйклзьцжбнмЧЯВЕРТЪУИОПШЩАСДФГХЙКЛЗѝЦЖБНМ;`qwertyuiop[]asdfghjklzxcvbnm~QWERTYUIOP{}ASDFGHJKLZXCVBNM,ю\\,Ю\|, |
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
// See https://github.com/nex3/sass/issues/116 | |
$device-size: small; | |
$device-width: 640px; | |
body { | |
color: white; | |
@buffer #{$device-size}-screen { | |
color: black; | |
} |
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
# [..] | |
require 'shellwords' | |
on_stylesheet_saved do |filename| | |
script = File.dirname(__FILE__) + '/_scripts/join-media-queries.php' | |
system('php -q ' + Shellwords.escape(script) + ' -i ' + Shellwords.escape(filename)) | |
end |
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
fs = require 'fs' | |
path = require 'path' | |
CoffeeScript = require 'coffee-script' | |
CoffeeScript.on 'compile', (task) -> | |
task.input = task.input.replace /^([ \t]*)#=\s*include\s+(.*)$/im, (group, indent, file) -> | |
"#{indent}`#{ fs.readFileSync(path.join(path.dirname(task.file), file), 'utf8') }`" |
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
##2 | |
# If first line starts with "##" and has a single digit following it, | |
# it should denote average count of bytes used in representing UTF-8 | |
# characters of this locale. This value is utilized into properly | |
# wrapping translated text. | |
# | |
# This is a translation file for Sakis3G All-in-one script. | |
# | |
# All translation files should strictly remain in UTF-8 encoding. | |
# Make sure your editor loads and saves file using UTF-8. |
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
$theme: | |
page #fff | |
navigation ( | |
background #f4f4f4 | |
text #595959 | |
) | |
; | |
$levels: |
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
To start a multi-line comment: | |
<!-- {{=<% %>=}}<%! | |
to end a multi-line comment: | |
%><%={{ }}=%> --> | |
Sooo: |