Also see the original Pieter Noordhuis's guide
You need:
- Raspberry Pi Model B (or B+) with a MicroSD Card $35-40
- An RTL-SDR dongle:
Also see the original Pieter Noordhuis's guide
You need:
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
Open the find/replace dialog. | |
At the bottom will be some Search mode options. Select "Extended (\n \r \t \0 \x...)" | |
In either the Find what or the Replace with field entries, you can use the following escapes: | |
\n new line (LF) | |
\r carriage return (CR) | |
\t tab character | |
\0 null character | |
\xddd special character with code ddd |
url="http://api.wolframalpha.com/v2/query" | |
appid="YOUR APP ID" # get one at https://developer.wolframalpha.com/portal/apisignup.html | |
query="$@" | |
value="$(perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$query")" | |
echo "Computing: $query" | |
curl -s -L -G -d "input=$value&appid=$appid&format=plaintext" $url >/tmp/wolfram-alpha.xml | |
xsltproc ~/Scripts/wolf.xslt /tmp/wolfram-alpha.xml |