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
<html> | |
<style type="text/css" media="screen"> | |
#table { | |
position: absolute; | |
top: 30px; | |
bottom: 0; | |
left: 10px; | |
right: 10px; | |
} | |
#header { |
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
String soql = new al.SoqlBuilder() | |
.fromx('account') | |
.wherex( | |
new al.AndCondition() | |
.add(new al.NotCondition(new al.FieldCondition('name', 'acme'))) | |
.add(new al.FieldCondition('ispartner', true)) | |
) | |
.toSoql(); | |
Database.query(soql); |
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
$ for i in *.gz; do ls -l $i; done | |
ls: cannot access file: No such file or directory | |
ls: cannot access 1.gz: No such file or directory | |
$ for i in *.gz; do ls -l "$i"; done | |
-rw-r--r-- 1 cwarden cwarden 27 May 29 11:03 file 1.gz |
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
noremap <Esc>[5;5~ <nop> | |
inoremap <Esc>[5;5~ <nop> | |
noremap <Esc>[6;5~ <nop> | |
inoremap <Esc>[6;5~ <nop> |
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
/** | |
* Copyright 2012, Prescreen, Inc. https://www.prescreen.com | |
* @author John Smart <https://twitter.com/thesmart> | |
* | |
* 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 | |
* |
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
/** | |
* Javascript wrapper for the Google Chart API. Enables users | |
* to render charts from the API with a small piece of javascript. | |
* This is software is still in development. | |
* @author Bas Wenneker <[email protected]> | |
* @website <http://www.solutoire.com> | |
* @date 12-11-2007 | |
* @version 0.2 alpha. | |
*/ | |
GChart = 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
nnoremap <leader>4t3 :set tabstop=4 noexpandtab<cr>:retab!<cr>:set tabstop=3 shiftwidth=3<cr> |
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
# SHA: be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2 | |
# User@SHA ref: mojombo@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2 | |
# User/Project@SHA: mojombo/god@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2 | |
# \#Num: #1 | |
# User/#Num: mojombo#1 | |
# User/Project#Num: mojombo/god#1 |
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
/* de-obfuscate kettle passwords */ | |
import java.math.BigInteger; | |
public class Decr { | |
private static final int RADIX = 16; | |
private static final String SEED = "0933910847463829827159347601486730416058"; | |
public static void main(String[] args) { | |
if (args.length!=1) { |
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
(function(b) { | |
var a = b.createElement("a"); | |
var s = b.createElement("span"); | |
s.innerText = "Download"; | |
a.appendChild(s); | |
a.href="http://media.soundcloud.com/stream/"+b.querySelector("#main-content-inner img[class=waveform]").src.match(/\.com\/(.+)\_/)[1]; | |
a.setAttribute("class", "pl-button"); | |
a.setAttribute("style", "background-image: url(http://soundcloud.com/images/icons_mini.png?unicorn26); background-repeat: no-repeat; padding-left: 18px; background-position: -77px -236px;"); | |
a.download = b.querySelector("em").innerText+".mp3"; | |
b.querySelector(".primary").appendChild(a); |