Skip to content

Instantly share code, notes, and snippets.

View Taubin's full-sized avatar

Taubin

View GitHub Profile
@Taubin
Taubin / rtlsdr-decoder-setup.sh
Created August 5, 2019 23:46 — forked from moorer2k/rtlsdr-decoder-setup.sh
Automated setup created for DietPi on an RPI2 for RTL-SDR pager decoding using mutlimon-ng and pagermon. Uses version managers for node and python to keep it isolated + correctly compiled.
#DietPi setup script for RTL-SDR/Multimon-ng/Pagermon for decoding pager messages(FLEX/POCSAG etc.)
cat <<EOF >no-rtl.conf
blacklist dvb_usb_rtl28xxu
blacklist rtl2832
blacklist rtl2830
EOF
mv no-rtl.conf /etc/modprobe.d/
firewall {
all-ping enable
broadcast-ping disable
ipv6-name WANv6_IN {
default-action drop
description "WAN inbound traffic forwarded to LAN"
enable-default-log
rule 10 {
action accept
description "Allow established/related sessions"
@Taubin
Taubin / PowerShell Customization.md
Created May 6, 2019 05:40 — forked from jchandra74/PowerShell Customization.md
PowerShell, Cmder / ConEmu, Posh-Git, Oh-My-Posh, Powerline Customization

Pimping Up Your PowerShell & Cmder with Posh-Git, Oh-My-Posh, & Powerline Fonts

Backstory (TLDR)

I work as a full-stack developer at work. We are a Windows & Azure shop, so we are using Windows as our development platform, hence this customization.

For my console needs, I am using Cmder which is based on ConEmu with PowerShell as my shell of choice.

Yes, yes, I know nowadays you can use the Linux subsystem on Windows 10 which allow you to run Ubuntu on Windows. If you are looking for customization of the Ubuntu bash shell, check out this article by Scott Hanselman.

@Taubin
Taubin / markdown.json
Created May 3, 2019 09:04
VS Code markdown snippet
{
"insert image": {
"prefix": "img",
"body": [
"{% include image.html url=\"${1:link}\" description=\"${2:alt-text}\" %}"
],
"description": "insert image"
}
}
/home/taubin/./modesmixer2 --inConnect 127.0.0.1:30002 --outServer avr:9999 --outServer beast:31001 --outServer sbs10001:10001 --globes 32000:table2:home --web 8888 --location [LAT]:[LONG] --google-key [INSERT KEY HERE] --frdb /mnt/PIHDD/flightroute.sqb --silhouettes /mnt/PIHDD/OperatorFlags
@Taubin
Taubin / goes16-rtlsdr.md
Created December 31, 2018 04:40 — forked from lxe/goes16-rtlsdr.md
Receive GOES-16 and GOES-17 Images with a Raspberry Pi and RTL-SDR dongle

Keybase proof

I hereby claim:

  • I am taubin on github.
  • I am dustinplunkett (https://keybase.io/dustinplunkett) on keybase.
  • I have a public key whose fingerprint is D957 747E A80A C228 5C8A 1EC3 409C 4F54 9FD2 24F3

To claim this, I am signing this object:

@Taubin
Taubin / omercy.py
Created February 19, 2018 02:46 — forked from Krazybug/omercy.py
O'Reilly free ebooks downloader
'''
O'Meirrcy !!!! Download free ebooks from O'Reilly
http://www.oreilly.com/free/reports.html
(Thanks for their nice policy, please suscribe you email adress on 1 ebook download page
at least to encourage this kind initiative)
Usage:
> git clone https://gist.github.com/Krazybug/1ae50814d25b0a1d862dfdf7161ee503
> mv 1ae50814d25b0a1d862dfdf7161ee503 omercy
@Taubin
Taubin / docker-cleanup-resources.md
Created January 7, 2018 08:29 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm

@Taubin
Taubin / git-cheat-list.md
Created February 17, 2017 20:17
Git cheat list

Git cheat list

  • name of the current banch and nothing else (for automation)

    git rev-parse --abbrev-ref HEAD
    
  • all commits that your branch have that are not yet in master

    git log master..<HERE_COMES_YOUR_BRANCH_NAME>