-
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>
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// 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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| 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 |
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:
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "insert image": { | |
| "prefix": "img", | |
| "body": [ | |
| "{% include image.html url=\"${1:link}\" description=\"${2:alt-text}\" %}" | |
| ], | |
| "description": "insert image" | |
| } | |
| } |
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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/ |
OlderNewer