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 | |
$themes[] = "Theme Name"; | |
$theme_name["task divider"]["foreground"] = "color"; | |
$theme_name["task divider"]["background"] = null; | |
$theme_name["id"]["foreground"] = null; | |
$theme_name["id"]["background"] = null; | |
$theme_name["title"]["foreground"] = null; |
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> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<!--[if lt IE 9]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<!--[if lt IE 7]> | |
<script> |
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> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<style> | |
body { | |
font-family: "Helvetica Neue", Helvetica, sans-serif; | |
} | |
input[type=range] { |
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
[data-tooltip], .tooltip { | |
text-decoration: none!important; | |
border-bottom: 3px double black; | |
margin-bottom: -3px; | |
position: relative; | |
white-space: nowrap; | |
} | |
@-moz-document url-prefix() { | |
[data-tooltip], .tooltip, [data-tooltip] a, .tooltip a { | |
display: inline-block; |
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
$button-top-left-border: #cccccc | |
$button-bottom-right-border: #bbbbbb | |
$button-top-background: #f9f9f9 | |
$button-bottom-background: #e3e3e3 | |
$button-text-color: #000000 | |
$button-active-top-left-border: #555555 | |
$button-active-bottom-right-border: #444444 | |
$button-active-top-background: #666666 | |
$button-active-bottom-background: #7c7c7c | |
$button-active-text-color: #ffffff |
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> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>UI Kit</title> | |
<style> | |
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
abbr, address, cite, code, |
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
#!/usr/bin/env ruby | |
require "base64" | |
data = STDIN.read | |
%x[open http://hashify.me/#{Base64.encode64(data)}] | |
=begin | |
+-[ COMMAND SETTINGS ]------------+ | |
| Save: nothing | | |
| Input: entire document | |
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
define a = b, // global.a = b; | |
c = d; // global.c = d; | |
define f(x) { // global.f = function(x) { | |
// return; | |
} // }; global.f.name = "f"; | |
/* only globals can be reassigned, and only with the `define` keyword */ | |
let (a = b, c = d) { // (function() { var a = b, c = d; (function(a, c) { | |
console.log(a, c); // return console.log(a, c); |
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
#!/usr/bin/env node | |
var input = require("fs").readFileSync( | |
require("path").join(process.cwd(), process.argv[process.argv.length - 1]), | |
"utf8" | |
); | |
var gvars = {}; | |
function exec(input, fns, vars) { | |
(function findStrs() { | |
var inStr = 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
var Kaffeine = require("./../lib/index"), | |
fs = require('fs'), | |
path = require('path'), | |
optparse = require('optparse'), | |
util = require("util"), | |
sources = [], | |
options = {}, | |
oparser | |
OlderNewer