I hereby claim:
- I am kimble on github.
- I am kimble (https://keybase.io/kimble) on keybase.
- I have a public key ASC7eTs8N5cTZHNJqViq-_TzIR3QKVyf4mL2fReX9ja-VAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Monner | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Add a zoomable graph to monners investment page | |
// @author Kim A. Betti | |
// @match https://www.monner.no/investeringer | |
// @require https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js | |
// @grant none | |
// ==/UserScript== |
package junit.rules; | |
import org.junit.Rule; | |
import org.junit.Test; | |
import java.sql.SQLException; | |
public class H2RuleTest { | |
@Rule |
package junit.rules; | |
import org.h2.jdbcx.JdbcConnectionPool; | |
import org.junit.rules.ExternalResource; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import java.sql.Connection; | |
import java.sql.SQLException; | |
import java.util.function.Consumer; |
import org.junit.Test; | |
import java.lang.ref.WeakReference; | |
import static org.junit.Assert.*; | |
public class PubSubTest { | |
@Test |
### Keybase proof | |
I hereby claim: | |
* I am kimble on github. | |
* I am kimble (https://keybase.io/kimble) on keybase. | |
* I have a public key whose fingerprint is 2C3B 8702 F1E3 D303 5DE5 DAC2 EC5D 44DD 9F63 BDD3 | |
To claim this, I am signing this object: |
package com.developerb.noxml; | |
import com.google.common.base.Joiner; | |
import com.google.common.base.Preconditions; | |
import com.google.common.collect.Lists; | |
import com.google.common.collect.Sets; | |
import com.google.common.io.ByteSource; | |
import org.joda.time.LocalDate; | |
import org.joda.time.format.DateTimeFormat; | |
import org.joda.time.format.DateTimeFormatter; |
import com.google.common.base.Charsets; | |
import com.google.common.io.Files; | |
import org.apache.commons.io.FileUtils; | |
import org.junit.rules.TestRule; | |
import org.junit.runner.Description; | |
import org.junit.runners.model.Statement; | |
import java.io.File; | |
import java.io.IOException; |
author "Your Name" | |
description "upstart script for sample-dw-service" | |
# respawn the job up to 5 times within a 10 second period. | |
# If the job exceeds these values, it will be stopped and | |
# marked as failed. | |
respawn | |
respawn limit 5 10 | |
# move to this service's working directory |
package developerb.groovy.compiler; | |
import org.codehaus.groovy.transform.GroovyASTTransformationClass; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.Target; | |
import static java.lang.annotation.ElementType.TYPE; | |
import static java.lang.annotation.RetentionPolicy.RUNTIME; |