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 onEdit(e) { | |
if (e) { | |
var sheet = e.source.getActiveSheet(); | |
var row = e.source.getActiveRange().getRow(); | |
if (row != 1) { // kleur niet de eerste rij | |
colorRowByStatus(sheet, row); | |
} | |
} | |
} |
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
package nl.brachio.ingapi; | |
import com.jayway.jsonpath.JsonPath; | |
import io.vertx.core.http.HttpMethod; | |
import io.vertx.core.net.JksOptions; | |
import io.vertx.ext.web.client.WebClientOptions; | |
import io.vertx.rxjava.core.Vertx; | |
import io.vertx.rxjava.core.buffer.Buffer; | |
import io.vertx.rxjava.ext.web.client.HttpResponse; | |
import io.vertx.rxjava.ext.web.client.WebClient; |
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
import sun.security.x509.* | |
import java.io.File | |
import java.math.BigInteger | |
import java.security.* | |
import java.security.cert.X509Certificate | |
import java.util.* | |
/** | |
* Simple script for generating keys and certificates as needed to connect to the ING API. |
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
import com.fasterxml.jackson.databind.DeserializationFeature | |
import com.fasterxml.jackson.databind.MapperFeature | |
import com.fasterxml.jackson.dataformat.xml.JacksonXmlModule | |
import com.fasterxml.jackson.dataformat.xml.XmlMapper | |
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty | |
import com.fasterxml.jackson.module.kotlin.registerKotlinModule | |
import org.springframework.boot.* | |
import org.springframework.boot.autoconfigure.SpringBootApplication | |
import org.springframework.stereotype.Component | |
import java.io.File |
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
#!/usr/bin/env python3 | |
# simple python script that reads eiscd file and outputs sortcode,bankid per sortcode for a specific range of banks | |
import sys | |
from lxml import etree | |
if len(sys.argv) != 2: | |
print("Please supply one argument, namely the eiscd file") | |
sys.exit() |
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
/** | |
* Exact implementation in javascript of the Damerau-Levenshtein algorithm as | |
* described on https://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance | |
* | |
* The only difference is that all arrays in here are 0-based indexed whereas | |
* on wikipedia d has indices starting at −1, while a, b and da are one-indexed. | |
* | |
* @customfunction | |
*/ | |
function distance(a, b) { |