View stylus-dark.user.css
body, #stylus-popup { | |
background-color: #292929; | |
color: #e6e6e6; | |
} | |
a, .disabled a:hover, select { | |
color: #e6e6e6; | |
} | |
input[type="checkbox"]:not(.slider) { | |
background-color: #404040; | |
} |
View rainbow_brackets.xml
<application> | |
<component name="RainbowSettings"> | |
<option name="rainbowifyHTMLInsideJS" value="true" /> | |
<option name="version" value="5.1" /> | |
<option name="lightRoundBracketsColors"> | |
<array> | |
<option value="0x263238" /> | |
<option value="0x455a64" /> | |
<option value="0x607d8b" /> | |
<option value="0x90a4ae" /> |
View script.groovy
def dir = new File('path_to_sdk') | |
def licenses = new File(dir, 'licenses') | |
if (!licenses.exists()) licenses.mkdir() | |
dir.listFiles().each { println it } | |
def pw = new PrintWriter(new File(licenses, 'android-sdk-license')) | |
pw.println('8933bad161af4178b1185d1a37fbf41ea5269c55') |
View bandcamp.js
var commands = []; | |
commands.push('mkdir "' + TralbumData.current.title + '"'); | |
commands.push('cd "' + TralbumData.current.title + '"'); | |
TralbumData.trackinfo.forEach(function (track, index) { | |
if (track.file) { | |
var href = track.file['mp3-128']; |
View gologging_test.go
package main | |
import ( | |
logging "github.com/op/go-logging" | |
"io/ioutil" | |
"log" | |
"os" | |
"testing" | |
) |
View ClientCreator.java
OkHttpClient createClient() { | |
final OkHttpClient client = new OkHttpClient(); | |
// ... | |
client.networkInterceptors().add(chain -> { | |
Request request = chain.request(); | |
if (DEBUG) { | |
log(request); | |
} else { | |
String protocolPrefix = request.isHttps() ? "S" : ""; | |
Log.i(TAG, String.format("---> HTTP%s %s %s", |
View git-version.gradle
/** | |
* Copyright 2016 Avinash Ananth Narayan R | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, |
View auto-hibernate
#!/usr/bin/env bash | |
print_usage() { | |
echo " Usage: $0 [upper-threshold]" | |
} | |
if [ -z $1 ]; | |
then | |
echo "ERROR: upper threshold should be specified" | |
print_usage |
View datediff
#!/usr/local/bin/coffee | |
SEC = 1000 | |
MIN = SEC * 60 | |
HOUR = MIN * 60 | |
DAY = HOUR * 24 | |
WEEK = DAY * 7 | |
if process.argv.length != 4 | |
console.log "Insufficient arguments to complete call" |
View custom_rules.xml
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="application-custom"> | |
<macrodef name="git" taskname="@{taskname}"> | |
<attribute name="command" /> | |
<attribute name="dir" default="" /> | |
<attribute name="property" default="" /> | |
<attribute name="taskname" default="" /> | |
<attribute name="failonerror" default="on" /> | |
<element name="args" optional="true" /> |
NewerOlder