Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
" run :GoBuild or :GoTestCompile based on the go file | |
function! s:build_go_files() | |
let l:file = expand('%') | |
if l:file =~# '^\f\+_test\.go$' | |
call go#cmd#Test(0, 1) | |
elseif l:file =~# '^\f\+\.go$' | |
call go#cmd#Build(0) | |
endif | |
endfunction |
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
[[source]] | |
url = "https://pypi.python.org/simple" | |
verify_ssl = true | |
[packages] | |
n26 = "*" | |
pynynab = "*" | |
sqlalchemy = "*" |
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
MINT_BUCKET=zalando-stups-mint-200641888568-eu-west-1 | |
PROJECT=user-management | |
TEAM_PACKAGE=solution_center | |
STAGING_URL="https://nakadi-staging.aruha-test.zalan.do/event-types" | |
PROD_URL="https://nakadi-live.aruha.zalan.do/event-types" | |
gradle clean build generateEventTypes | |
cd build/event-types | |
cd $TEAM_PACKAGE |
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
<html> | |
<body> | |
<img src="http://dogr.io/wow/suchreactive/muchintegrations/verywebscale/datgooddata.png" /> | |
<script src="https://www.gstatic.com/firebasejs/3.2.0/firebase.js"></script> | |
<script> | |
var img = document.getElementsByTagName("img")[0]; | |
Object.values = obj => Object.keys(obj).map(key => obj[key]); | |
// Initialize Firebase | |
var config = { | |
apiKey: "AIzaSyDWXUtdcIG5N-XKk1TAXPn5xOLaUMuwHUQ", |
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 bash | |
channel=$1 | |
if [ -z "$2" ]; then | |
date=`date +%Y-%m-%d` | |
else | |
date=$2 | |
fi | |
curl -s "http://eavesdrop.openstack.org/irclogs/%23$channel/%23$channel.$date.log" | iconv -f utf-8 | grep -vF "***" |
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> | |
<meta charset="utf-8"> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var width = 960, | |
height = 500, | |
radius = Math.min(width, height) / 2, | |
donut_width=radius/3; |
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 'open-uri' | |
require 'nokogiri' | |
require 'RMagick' | |
include Nokogiri | |
include Magick |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
package mtrovo; | |
import java.io.File; | |
import java.io.IOException; | |
import org.apache.commons.io.FileUtils; | |
import org.apache.commons.lang.RandomStringUtils; | |
import org.apache.commons.lang.StringEscapeUtils; | |
import org.apache.commons.lang.StringUtils; | |
NewerOlder