Skip to content

Instantly share code, notes, and snippets.

@zziuni
zziuni / .jshintrc
Last active December 30, 2015 02:49 — forked from haschek/.jshintrc
{
// --------------------------------------------------------------------
// JSHint Configuration, Strict Edition
// --------------------------------------------------------------------
//
// This is a options template for [JSHint][1], using [JSHint example][2]
// and [Ory Band's example][3] as basis and setting config values to
// be most strict:
//
// * set all enforcing options to true
@zziuni
zziuni / ts
Created November 9, 2022 16:53
Testing gist for sharing
const foo = 1
@zziuni
zziuni / shufflePlayList.scpt
Created February 5, 2023 02:30
Applescript shuffle play playlist on OSX
tell application "Music"
activate
set shuffle mode to songs
set shuffle enabled to yes
play the playlist named "Power Music"
end tell