Skip to content

Instantly share code, notes, and snippets.

View jaredrummler's full-sized avatar

Jared Rummler jaredrummler

View GitHub Profile
@jaredrummler
jaredrummler / chords.kt
Created April 4, 2024 17:16
Just playing around with music and didn't want to throw this away
// Add all chord types as properties to the MelodyDSL class with customizable durations
class MelodyDSL : DurationDSL {
// Define major chords as properties with customizable duration
fun chordMajor(name: String, duration: Duration, vararg notes: Note) =
chord(name) { notes.forEach { it.duration = duration }; notes.toList() }
val CMajor get() = chordMajor("CMajor", q, C4, E4, G4)
val DMajor get() = chordMajor("DMajor", q, D4, Fs4, A4)
val EMajor get() = chordMajor("EMajor", q, E4, Gs4, B4)
val FMajor get() = chordMajor("FMajor", q, F4, A4, C5)
This file has been truncated, but you can view the full file.
@jaredrummler
jaredrummler / CpuInfo.kt
Last active June 24, 2022 00:44
Parse /proc/cpuinfo
/*
* SPDX-FileCopyrightText: © 2022 Jared Rummler <jared@jaredrummler.com>
* SPDX-License-Identifier: MIT
*/
import androidx.annotation.WorkerThread
import java.io.File
/**
@jaredrummler
jaredrummler / bloomberg-futures.userscript.js
Created March 17, 2021 17:02
Use percent change when viewing futures on Bloomberg
// ==UserScript==
// @name Bloomberg Futures
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Chage table content to use percents for futures
// @author Jared Rummler
// @match https://www.bloomberg.com/markets/stocks/futures
// @grant none
// ==/UserScript==
@jaredrummler
jaredrummler / TimberJava.xml
Created February 11, 2021 18:19 — forked from ericksli/TimberJava.xml
Timber Android Studio live template for Java and Kotlin #kotlin #android
<templateSet group="TimberJava">
<template name="timd" value="timber.log.Timber.d(&quot;$METHOD_NAME$: $content$&quot;);" description="Timber.d(String)" toReformat="true" toShortenFQNames="true">
<variable name="METHOD_NAME" expression="methodName()" defaultValue="" alwaysStopAt="false" />
<variable name="content" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="JAVA_STATEMENT" value="true" />
</context>
</template>
<template name="time" value="timber.log.Timber.e($exception$, &quot;$METHOD_NAME$: $content$&quot;);" description="Timber.e(Exception, String)" toReformat="true" toShortenFQNames="true">
<variable name="exception" expression="" defaultValue="e" alwaysStopAt="true" />
@jaredrummler
jaredrummler / instagram.json
Last active November 14, 2020 01:03
shields.io badges
{
"schemaVersion": 1,
"label": "Instagram",
"message": "jaredrummler",
"color": "#c32aa3",
"namedLogo": "instagram",
"style": "social"
}
@jaredrummler
jaredrummler / IconView.kt
Created October 26, 2020 19:09 — forked from nickbutcher/IconView.kt
A prototype implementation of a shadow effect inspired by the Google Play Games app (https://play.google.com/store/apps/details?id=com.google.android.play.games).
/*
* Copyright 2017 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
MaterialColor createMaterialColor(Color color) {
  List strengths = <double>[.05];
  Map swatch = <int, Color>{};
  final int r = color.red, g = color.green, b = color.blue;

  for (int i = 1; i < 10; i++) {
    strengths.add(0.1 * i);
  }
  strengths.forEach((strength) {
@jaredrummler
jaredrummler / index.html
Created May 1, 2020 19:53
The handbook download animation
<div class="container">
<div class="box box-1">
<div class="cover"><img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/945546/3433202-893bc9989a52eba0.png" alt=""></div>
<button><div></div></button>
</div>
<div class="box box-2">
<div class="cover"><img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/945546/3433202-964edcf0f07211b0.png" alt=""></div>
<button><div></div></button>
</div>
<div class="box box-3">
/*
* Copyright (C) 2020 Jared Rummler
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software