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:
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 |
[colors] | |
n5=Monokai,0,4,4,4,2,3,4,3,6,6,3,1,2,2,5,1,5,4,2,4,0,0,1,0,1,14,5,0,0,1 | |
[palettes] | |
n5=2238503,15923448,15718758,3072678,7481081,12767183,2070525,26832,1632504,57344,94740,16776960,16515072,16711935,8355711,13816530 |
### Keybase proof | |
I hereby claim: | |
* I am dziban303 on github. | |
* I am dziban303 (https://keybase.io/dziban303) on keybase. | |
* I have a public key ASApFFmZx6WwiDDkrdivHN2y7GSvoBfAkZLPttSwnSa28Ao | |
To claim this, I am signing this object: |
{ | |
"AATes123": true, | |
"AcrylicAndBackground": true, | |
"AudioInfoSync": true, | |
"BatteryIndicator": true, | |
"CallingDiscoveryTimeout": 30, | |
"CallingEnableOnARM": true, | |
"CallingFromMessages": true, | |
"CallingLabelInProd": true, | |
"CallingNode": true, |
/** | |
* The onOpen function runs automatically when the Google Docs document is | |
* opened. Use it to add custom menus to Google Docs that allow the user to run | |
* custom scripts. For more information, please consult the following two | |
* resources. | |
* | |
* Extending Google Docs developer guide: | |
* https://developers.google.com/apps-script/guides/docs | |
* | |
* Document service reference documentation: |
Also see the original Pieter Noordhuis's guide
You need:
# Neofetch config file | |
# https://github.com/dylanaraps/neofetch | |
# See this wiki page for more info: | |
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info | |
print_info() { | |
into line_break | |
info title | |
info underline |
#!/bin/bash | |
#Flag Bits | |
UNDERVOLTED=0x1 | |
CAPPED=0x2 | |
THROTTLED=0x4 | |
SOFT_TEMPLIMIT=0x8 | |
HAS_UNDERVOLTED=0x10000 | |
HAS_CAPPED=0x20000 | |
HAS_THROTTLED=0x40000 |