Basically four steps:
- install SDK and initialize a new project via console
- upload and generate a new GCE image for your project
- instantiate a new instance on GCE using the image
- follow a known path
- Sign up for Google Compute Engine
#!/bin/bash | |
## **Updates to this file are now at https://github.com/giovtorres/kvm-install-vm.** | |
## **This updated version has more options and less hardcoded variables.** | |
# Take one argument from the commandline: VM name | |
if ! [ $# -eq 1 ]; then | |
echo "Usage: $0 <node-name>" | |
exit 1 | |
fi |
This configuration is not maintained anymore. You should think twice before using it, Breaking change and security issue will likely eventually happens as any abandonned project.
#!/bin/bash -eEx | |
if ! which gpg-agent; then | |
sudo apt-get install gnupg-agent | |
fi | |
if ! which pull-lp-source; then | |
sudo apt-get install ubuntu-dev-tools | |
fi | |
gpg-agent || eval `gpg-agent --daemon` |
21:16 < synx> look | |
21:16 < synx> I don't want to be "that guy", but this is the real world and good code doesnt' mean shit. | |
21:16 < synx> We have a product to ship in 18 weeks and you are arguing with me over whether this functinoality should be exposed via an interface or an abstract class?? | |
21:17 < synx> Until there is a deliverable, I don't give a fuck if it's exposed via a fucking socket on a machien in Malaysia! | |
21:17 < synx> Get it THE FUCK DONE |
diff -ur screen-4.0.3/display.c screen-4.0.3-swap-x/display.c | |
--- screen-4.0.3/display.c 2003-12-05 05:45:41.000000000 -0800 | |
+++ screen-4.0.3-swap-x/display.c 2010-08-09 23:59:07.465303854 -0700 | |
@@ -33,6 +33,8 @@ | |
#include "extern.h" | |
#include "braille.h" | |
+int swap_x = 1; | |
+ | |
static int CountChars __P((int)); |