I hereby claim:
- I am pqrth on github.
- I am parth (https://keybase.io/parth) on keybase.
- I have a public key whose fingerprint is 88D7 A746 140F F055 45B2 A8BD 92B1 BE16 54E7 1C30
To claim this, I am signing this object:
@echo off | |
@color 0a | |
if "%1"=="" ( | |
:help | |
echo. | |
echo Usage: bleed_heart target_name [--every time] [--from count] | |
echo. | |
echo Options: | |
echo --every time Delay between consecutive tests in ms |
I hereby claim:
To claim this, I am signing this object:
tell application "Notes" | |
set theMessages to every note | |
repeat with thisMessage in theMessages | |
# added identification of folder to create notebooks based on existing folder hierarchy | |
set myFolder to the container of thisMessage | |
set myFolder to the name of myFolder | |
set myTitle to the name of thisMessage |
#!/bin/bash | |
SAVE_DIR=$1 | |
# Check the availiable podcasts and download them to local storage | |
# TODO: Split up at some point since files could potentially be too big | |
for url in "${@:2}" | |
do | |
str=$(wget -P $SAVE_DIR -q -O- $url | grep -o '<enclosure [^>]*url="[^"]*' | grep -o '[^"]*$' | head -n 1) |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>net.activitywatch.aw-qt</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/aw-qt</string> | |
</array> |
function getPodcastIds() { | |
var feeds = document.querySelectorAll(".feedcell .art"), | |
i, ids = []; | |
for (i = 0; i < feeds.length; ++i) { | |
let anchorElement = document.createElement('a'); | |
anchorElement.href = feeds[i].src; | |
ids.push(anchorElement.pathname.split('/').pop().split('_')[0]); | |
} | |
return ids; | |
} |