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
| wget http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.epub | |
| wget http://www.oreilly.com/programming/free/files/object-oriented-vs-functional-programming.epub | |
| wget http://www.oreilly.com/programming/free/files/java-the-legend.epub | |
| wget http://www.oreilly.com/programming/free/files/introducing-java-8.epub | |
| wget http://www.oreilly.com/programming/free/files/a-whirlwind-tour-of-python.epub | |
| wget http://www.oreilly.com/programming/free/files/20-python-libraries-you-arent-using-but-should.epub | |
| wget http://www.oreilly.com/programming/free/files/hadoop-with-python.epub | |
| wget http://www.oreilly.com/programming/free/files/how-to-make-mistakes-in-python.epub | |
| wget http://www.oreilly.com/programming/free/files/functional-programming-python.epub | |
| wget http://www.oreilly.com/programming/free/files/python-in-education.epub |
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
| https://app.netlify.com/start | |
| https://forestry.io/#/ |
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
| https://jenkins.io/solutions/android | |
| https://jenkins.io/solutions/c | |
| https://jenkins.io/solutions/docker | |
| https://jenkins.io/solutions/embedded | |
| https://jenkins.io/solutions/github | |
| https://jenkins.io/solutions/java | |
| https://jenkins.io/solutions/pipeline | |
| https://jenkins.io/solutions/python | |
| https://jenkins.io/solutions/ruby | |
| https://jenkins.io/blog/2017/05/18/pipeline-dev-tools/ |
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
| for f in *.mkv;do ffmpeg -i "$f" -c:v copy -c:a aac -b:a 256k "${f%mkv}mp4";done |
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
| https://cloudconvert.com/epub-to-mobi |
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
| echo program_usb_boot_mode=1 | sudo tee -a /boot/config.txt | |
| # vcgencmd otp_dump | grep 17: | |
| # Esse comando deve mostrar o seguinte resultado, o que significa que podemos partir para o boot via USB. | |
| # 17:3020000a |
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
| https://jsonformatter.curiousconcept.com/ |
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( | |
| //"encoding/json" | |
| //"context" | |
| "fmt" | |
| //"io/ioutil" | |
| "net/http" | |
| "encoding/json" | |
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 ( | |
| "time" | |
| "log" | |
| "net/http" | |
| "os" | |
| "flag" | |
| "fmt" | |
| "text/tabwriter" |
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
| # Go standard envs | |
| ENV GOPATH /go | |
| ENV PATH /usr/local/go/bin:$PATH | |
| ENV PATH $GOPATH/bin:$PATH | |
| #/usr/lib/go/src/github.com/hashicorp/vault/api (from $GOROOT) | |
| #/home/richardson/go-dev/src/github.com/hashicorp/vault/api (from $GOPATH) |