git clone https://github.com/pentaho/pentaho-kettle.git
cd pentaho-kettle
git checkout 8.0.0.4
mvn clean install -DskipTests
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
/** | |
* Same as joinPath, but preserves http(s):// schemes | |
* | |
* @param segments Url segments to join | |
* @return Joined url | |
*/ | |
function joinUrl(...segments: string[]): string { | |
if (segments.length === 0) { | |
return ""; | |
} |
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 main | |
import ( | |
"fmt" | |
"sync" | |
"time" | |
) | |
// Waiter allows multiple clients to wait until a certain sequence number has been reached | |
type Waiter struct { |
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 python | |
import errno | |
import os | |
import subprocess | |
import sys | |
import shutil | |
import glob | |
import tarfile | |
import os.path |
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
#!/bin/bash | |
# This script takes a remote repository and merges it into | |
# the current one as a subdirectory | |
set -e | |
if [ -z "$1" ] | |
then | |
echo "Usage:" |
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
#!/bin/bash | |
# This script takes a remote repository and merges it into | |
# the current one as a subdirectory | |
if [ -z "$1" ] | |
then | |
echo "Usage:" | |
echo " ./merge_repo.sh <repository> [name]" | |
exit |
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
type Checker struct { | |
err error | |
} | |
func (c *Checker) Check(cond bool, err error) { | |
if !cond && c.err == nil { | |
c.err = err | |
} | |
} |
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
// Type definitions for GeoJSON Format Specification | |
// Project: http://geojson.org/ | |
// Definitions by: Jacob Bruun <https://github.com/cobster/> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
export as namespace GeoJSON; | |
/** | |
* http://geojson.org/geojson-spec.html#geojson-objects | |
*/ |
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
const charset = ['a', 'b', 'c']; | |
function parse(key: string): number[] { | |
return key.split('').map(c => charset.indexOf(c)); | |
} | |
function format(key: number[]): string { | |
return key.map(i => charset[i]).join(''); | |
} |
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
let ref = { | |
foo: 123, | |
bar: "test" | |
}; | |
let obj = { | |
foo: 123, | |
bar: "what" | |
} |