I hereby claim:
- I am rikschennink on github.
- I am rikschennink (https://keybase.io/rikschennink) on keybase.
- I have a public key whose fingerprint is 679B 6933 62E6 CD78 C5A4 3DE9 3FB0 0B55 E5D3 8AEE
To claim this, I am signing this object:
# "Usernoted" seems to be the "user notifications daemon", so get it's PID. | |
pid=$(ps aux | grep -i [u]sernoted | awk '{print $2}') | |
# Find the sqlite3 database that this program has open. It's in a "private" folder (app sandboxing). | |
db="$(lsof -p $pid | grep com.apple.notificationcenter/db/db\$ | awk '{print $9}')" | |
# I got the bundleid from Spotify.app/Contents/Info.plist | |
bundleid="com.spotify.client" | |
# I use 0 as the flags because you can change all the settings in System Preferences |
I hereby claim:
To claim this, I am signing this object:
// Mixins define the various layouts and options of a module, other modules are not allowed to override styles on subnodes of a module. | |
// HTML | |
// | |
// <ol class="article-list"> | |
// <li> | |
// <article class="article-item"> | |
// <h1>Sass outline experiment</h1> | |
// <dl> |
(function(cordova){ | |
'use strict'; | |
var exports = {},method; | |
// Plugin Definition | |
var plugin = { | |
name:'<PluginName>', | |
api:{ |
// (c) copyright unscriptable.com / John Hann | |
// License MIT | |
// For more robust promises, see https://github.com/briancavalier/when.js. | |
function Promise () { | |
this._thens = []; | |
} | |
Promise.prototype = { |