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
| package main | |
| import ( | |
| "bytes" | |
| "io" | |
| "log" | |
| "os" | |
| "os/exec" | |
| ) |
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
| #!/usr/bin/env python | |
| # Requirements: BeautifulSoup - http://www.crummy.com/software/BeautifulSoup/ | |
| # Example: | |
| # overcast_downloader (~) python download.py https://overcast.fm/podcasts/episode/101217043409120 | |
| # http://traffic.libsyn.com/oneyoufeed/Mini_Episode_7.mp3#t=0 | |
| # | |
| # overcast_downloader (~) python download.py https://overcast.fm/podcasts/episode/101217043409120 | xargs wget | |
| # --2014-09-18 11:53:45-- http://traffic.libsyn.com/oneyoufeed/Mini_Episode_7.mp3 | |
| # Resolving traffic.libsyn.com... 204.16.245.39 | |
| # Connecting to traffic.libsyn.com|204.16.245.39|:80... connected. |
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
| // author: tyndyll | |
| // Simple script/binary that prints a message at a prescribed --interval either infinitely or | |
| // for --count number of times. | |
| // It is being used a simple service target for setting up and testing systemd files. To that | |
| // end it handles SIGINT | |
| // | |
| // To use: | |
| // | |
| // ~GOPATH go run src/cheerleader.go --interval 1 --count 1 | |
| // I am the cheerleader, I will save the world |
NewerOlder