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
// aids in converting a godep project to a gb project: | |
// | |
// reads a Godeps.json manifest and uses the 'gb-vendor' plugin to vendor the | |
// same revision of each dependency into a gb-based project. | |
// | |
// Example: | |
// To vendor all the dependencies of the godep-based project at /go/src/github.com/username/foo | |
// into the new gb-based project at /path/to/gb/proj, run the following: | |
// | |
// $ go run godep2gb.go -gbroot=/path/to/gb/proj/ -godeps=/go/src/github.com/username/foo/Godeps/Godeps.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
""" | |
client.py - AsyncIO Server using StreamReader and StreamWriter | |
This will create 200 client connections to a server running server.py | |
It will handshake and run similar to this: | |
Server: HELLO | |
Client: WORLD |
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
#!/bin/bash | |
#Post Install for Ubuntu 14.04 LTS (Trusty) | |
#copy and paste and run - don't run this script directly | |
#you are going to need to reboot after each part. | |
echo "Don't run this script directly, copy and paste" | |
echo "the parts you will use! See the file's comments for information." | |
echo "" | |
echo "The script will run part 1 for you.. then read the file for rest!" |