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 'formula' | |
class Vim < Formula | |
homepage 'http://www.vim.org/' | |
# Get stable versions from hg repo instead of downloading an increasing | |
# number of separate patches. | |
url 'https://vim.googlecode.com/hg/', :tag => 'v7-3-608' | |
version '7.3.608' | |
head 'https://vim.googlecode.com/hg/' |
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
:+1: | |
:-1: | |
:airplane: | |
:art: | |
:bear: | |
:beer: | |
:bike: | |
:bomb: | |
:book: | |
:bulb: |
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
/*! | |
* Wizard: Easy paging through DOM objects | |
* | |
* @constructor | |
* @param {String} jQuery selector for page | |
*/ | |
var Wizard = (function(selector){ | |
/** |
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 an example configuration file for pianobar. You may remove the # from | |
# lines you need and copy/move this file to ~/.config/pianobar/config | |
# See manpage for a description of the config keys | |
# | |
# User | |
user = YOUR_EMAIL | |
password = YOUR_PASSWORD | |
# Proxy (for those who are not living in the USA) | |
#control_proxy = http://127.0.0.1:9090/ |
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
CREATE OR REPLACE FUNCTION public.epoch_offset() RETURNS bigint AS $$ | |
BEGIN | |
RETURN 135702720000; -- 2013-01-01 00:00:00 | |
END; | |
$$ LANGUAGE plpgsql; | |
CREATE OR REPLACE FUNCTION public.druuid(epoch bigint default NULL) RETURNS bigint AS $$ | |
DECLARE | |
result bigint; | |
BEGIN |
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
#!/bin/bash | |
echo "Kibana Version ex: 4.4.2" | |
read version | |
echo "ElasticSearch Cloud URL:" | |
read url | |
echo "ElasticSearch Username:" | |
read username |
This file has been truncated, but you can view the full file.