Skip to content

Instantly share code, notes, and snippets.

@jensraaby
jensraaby / k8s.md
Created July 22, 2021 14:52
TIL K8s

Port forwarding

kubectl port-forward -n namespace pod-name local:remote

Port forwarding

@jensraaby
jensraaby / postgres-til.md
Last active July 22, 2021 13:36
TIL Postgres
@jensraaby
jensraaby / keybase.md
Created May 18, 2018 16:17
keybase.md

Keybase proof

I hereby claim:

  • I am jensraaby on github.
  • I am jensraaby (https://keybase.io/jensraaby) on keybase.
  • I have a public key whose fingerprint is E6A1 CF0D 7F21 4639 6305 AE42 A99F 9FE8 5A2F E7B6

To claim this, I am signing this object:

@jensraaby
jensraaby / README.md
Last active December 9, 2017 16:18
Nordic computing history

In scope is anything of note in technology/programming that is Danish, Estonian, Finnish, Icelandic, Norwegian or Swedish. I've included the main authors based on Wikipedia articles.

A lot of these were created by people while abroad (mainly in the US) but I still list them here as it's interesting to see how much people from such a small part of the world have contributed. Similarly, things built in the Nordic countries by a multitude of nationalities may be included (e.g. Erlang).

Programming languages, technologies and apps

@jensraaby
jensraaby / AcceptanceTestHelper.scala
Last active August 29, 2015 14:28
An attempt to set a less noisy logging level for Finatra testing
package acceptance
import MyFinatraServer
import com.twitter.finatra.http.test.EmbeddedHttpServer
def quietServerForTests: EmbeddedHttpServer = {
new EmbeddedHttpServer(
twitterServer = new MyFinatraServer
) {
override protected def combineArgs() = {
val parentArgs = super.combineArgs()