Skip to content

Instantly share code, notes, and snippets.

@juliendargelos
juliendargelos / imagemagick-trim-transparent.sh
Last active October 23, 2023 02:31
Imagemagick command that trims transparent pixels from an image.
convert input.png -trim +repage output.png
@jcsteh
jcsteh / SpotifyGlobalKeys.ahk
Last active December 30, 2023 19:34
AutoHotkey script to control Spotify with global keyboard shortcuts
; SpotifyGlobalKeys.ahk:
; AutoHotkey script to control Spotify with global keyboard shortcuts
; Author: James Teh <jamie@jantrid.net>
; Copyright 2017-2018 James Teh
; License: GNU General Public License version 2.0
DetectHiddenWindows, On
; Get the HWND of the Spotify main window.
getSpotifyHwnd() {
@aveuiller
aveuiller / Test.java
Created September 21, 2017 08:50
Configuration example to make script engine work with Android
package test.app;
import android.app.Activity;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.util.Log;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;