Skip to content

Instantly share code, notes, and snippets.

View jzillmann's full-sized avatar

Johannes Zillmann jzillmann

View GitHub Profile
@sgarciav
sgarciav / pass.md
Last active November 27, 2025 08:16
Initialize your password store

About

Summarizing the instructions of the pass tool (as seen on its website).

Getting Started

Installation

Execute: $ sudo apt install pass

@jzillmann
jzillmann / jmh.gradle
Last active November 8, 2024 03:01
Integrating JMH into gradle
// Adds JMH integration to a project.
// Considering putting this file into gradle/ folder and include it with:
// apply from: rootProject.file('gradle/jmh.gradle')
sourceSets {
jmh {
compileClasspath += sourceSets.test.runtimeClasspath
runtimeClasspath += sourceSets.test.runtimeClasspath
}
}