Forked from tdhopper's version to make it installable directly into Tampermonkey or Greasemonkey.
Click here!
Forked from tdhopper's version to make it installable directly into Tampermonkey or Greasemonkey.
Click here!
By default, the RescueTime Chrome extension doesn't report exact site usage because the extension determines browser usage by parsing the User Agent string in the request. So we need to fool the extension into thinking that we're using Chrome, not Chromium, which means it will accurately report usage statistics to RescueTime.
ID: bdakmnplckeopfghnlpocafcepegjeap
~/Library/Application Support/Chromium/Default/Extensions/{extension_id}/3.0.18_0
RescueTimeUtil.js
to return the browser as being Chrome. See the example in RescueTimeUtil.js in this gist.# Forked from https://github.com/felixhageloh/uebersicht-widgets/tree/master/german-word-of-the-day/german-word-of-the-day.widget by rizowski | |
command: 'curl -s "http://feeds.feedblitz.com/italian-word-of-the-day"' | |
refreshFrequency: 3600000 | |
style: """ | |
top: 500px | |
left: 0px | |
color: #fff |
Extracted from N-able/ScriptsAndAutomationPolicies
"do" ) | |
errmsg="usage: $TODO_SH do ITEM#[, ITEM#, ITEM#, ...]" | |
# shift so we get arguments to the do request | |
shift; | |
[ "$#" -eq 0 ] && die "$errmsg" | |
# Split multiple do's, if comma separated change to whitespace separated | |
# Loop the 'do' function for each item | |
for item in ${*//,/ }; do | |
getTodo "$item" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
""" | |
Karl's unix/rsync time-machine script. | |
Maintains daily and monthly snapshots of a directory tree, hard linked to save | |
space when files don't change. | |
Inspired by http://www.mikerubel.org/computers/rsync_snapshots/, but using | |
more robust coding practices. | |
Features: |