vlan 10
exit
int fa0/0
| # wget -i this_file | |
| http://www.oreilly.com/programming/free/files/files/microservices-for-java-developers.pdf | |
| http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.pdf | |
| http://www.oreilly.com/programming/free/files/object-oriented-vs-functional-programming.pdf | |
| http://www.oreilly.com/programming/free/files/java-the-legend.pdf | |
| http://www.oreilly.com/programming/free/files/functional-programming-python.pdf | |
| http://www.oreilly.com/programming/free/files/reactive-microservices-architecture-orm.pdf | |
| http://www.oreilly.com/programming/free/files/migrating-cloud-native-application-architectures.pdf | |
| http://www.oreilly.com/programming/free/files/software-architecture-patterns.pdf |
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| hostname=THEHOSTNAME | |
| distr=trusty | |
| swapsize=2048 | |
| rootsize=8192 | |
| memory=2048 | |
| ubuntu-vm-builder kvm $distr \ | |
| --mirror http://mirror.hetzner.de/ubuntu/packages \ | |
| --dest /var/lib/libvirt/images/$hostname \ | |
| --arch amd64 \ | |
| --mem $memory \ |
| # RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com | |
| # defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below) | |
| module Player | |
| describe MovieList, "with optional description" do | |
| it "is pending example, so that you can write ones quickly" | |
| it "is already working example that we want to suspend from failing temporarily" do | |
| pending("working on another feature that temporarily breaks this one") |