Skip to content

Instantly share code, notes, and snippets.

View ShkurtiA's full-sized avatar

Armando TBA ShkurtiA

  • Illyria
View GitHub Profile
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';
var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';
@ShkurtiA
ShkurtiA / drugs_and_alcohol.md
Last active July 18, 2023 20:30
Fahrschule, driving license germany, berlin

Drugs and Alcohol

How is the intoxicating substance in hashish broken down by the body?

  • Unevenly over an indeterminate period

In general, how long does it take before an alcohol level of 1.0 per mille (100mg/100ml) is cleared from the blood stream?

  • 5 hours
  • 10 hours
  • 1 hour
@ShkurtiA
ShkurtiA / speak.gradle
Created February 16, 2021 14:52 — forked from etiennestuder/speak.gradle
Voice notification when when Gradle build finishes (for Mac OS X)
// When runnning a Gradle build in the background, it is convenient to be notified immediately
// via voice once the build has finished - without having to actively switch windows to find out -
// and being told the actual exception in case of a build failure.
// Put this file into the folder ~/.gradle/init.d to enable the acoustic notifications for all builds
gradle.addBuildListener(new BuildAdapter() {
@Override
void buildFinished(BuildResult result) {