Skip to content

Instantly share code, notes, and snippets.

View vegaasen's full-sized avatar
🤠
Howdy

Vegard Aasen vegaasen

🤠
Howdy
View GitHub Profile
@vegaasen
vegaasen / kubernetes-jvm-dump-tool.sh
Last active March 26, 2021 14:46
💩 The dumper 💩 Dump heap and thread dumps on an JVM-running app using Kubectl
#!/usr/bin/env bash
# Usage: pod-dump <namespace> <pod-identifier>
# Summary: Grab a heap- and thread-dump of an app running on an active k8s pod ✨
if [ -z "$*" ]; then
echo -e "
Welcome to 💩 the Dumper 💩! 👋
This will trigger a dump of heap and thread for a specific pod on a defined namespace. Is it safe?! Yes, this is fairly safe to run! Worst case?: Stop-the-world.
@usage:
@vegaasen
vegaasen / azure-misc.md
Last active March 3, 2022 09:33
Azure misc

Azure features, trix and whatnotz

Some of my ramlings whilst working with Azure. This includes dev-ops and more.

Badges

Badge for package-versions within feed

This requires that the permission is defined on the feed itself.

@vegaasen
vegaasen / react-remembersheet.md
Last active April 8, 2021 07:57
React ramblings for self

React cheatsheet

Testing

Enzyme testing useEffect()

const fancyAct = async (component, assertions) => {
 await act(async () =&gt; {
@vegaasen
vegaasen / unfuck-postgres-brew.sh
Created June 4, 2020 06:38
Stop any "seemingly" running instances of postgres through Brew on Mac
echo "Stopping existing (perhaps) running Postgres.."
brew services stop [email protected]
if [ ! -f /usr/local/var/postgresql\@9.5/postmaster.pid ]; then
echo "🛑 Ops, cannot unfuck Postgres. The file does not exists??? (postmaster.pid)";
echo "Try to restart and see if that helps? ===> brew services start [email protected] <===...amazingly this will also be happening right... NOW!"
brew services restart [email protected]
exit 1;
fi
echo "⚡️ Unfucking Postgres...";
@vegaasen
vegaasen / Cache.kt
Created May 29, 2020 07:26
kotlin-simple-cache
package cache
import java.time.Duration
/*
Usage:
data class Something(val whatever: String)
internal val myAwesomeCache by lazy { Cache<Something>(expire = Duration.ofDays(10)) }
myAwesomeCache.pushOrFetch("identifierForMySomething") { someMethodThatReturnsSomething() }
*/
@vegaasen
vegaasen / azure-get-secrets-from-keyvault.sh
Last active May 29, 2020 07:23
MacOS: Fetch/Get all secrets from a defined Azure KeyVault
#!/usr/bin/env bash
# usage ./azure-get-secrets-from-keyvault.sh my-awesome-az-keyvault
KEY_VAULT=${1:-my-keyvault}
if [[ -z `which az` ]]; then
echo -e "OH NOES! Missing A Z U R E 😱! Install the tools by running \nbrew install azure-cli"
exit 1;
fi
@vegaasen
vegaasen / docker-k8s-helm-commands-cheat-sheet.md
Last active October 10, 2023 10:37
K8s and Helm cheat sheet

Introduction

Commands and whatnot

Docker

# Unable to deploy to docker? May have to log in first
docker login -u <username> -p <password> <(opt)hostname>
# or if you wnat to authorize with your own user (prefer this..!)
@vegaasen
vegaasen / commit-msg.sh
Created December 19, 2019 13:32
githooks > commit-msg
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# Place this file under "<project-home>/.githooks/commit-msg"
# Allow only e.g "PK-12345: ", "FPFEIL-12: ", "FIX: " eller "Merge "
@vegaasen
vegaasen / SafeListTypeAdapter.java
Created October 22, 2018 09:56
Simple "SafeListTypeAdapter" > Always return array for non-array objects that can be array together with non-arrays..
import com.google.gson.Gson;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;
import com.google.gson.stream.MalformedJsonException;
import java.io.IOException;
@vegaasen
vegaasen / SocialSecurityNumberGender.java
Last active March 5, 2018 08:21
Norwegian SSN gender localizer thingie (personnummer)
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Optional;
/**
* @author <a href="mailto:[email protected]">vegaasen</a>
*/
public class SocialSecurityNumberGender {
public static void main(String... args) {