This file contains 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 | |
# Go to console.aws.amazon.com | |
# - launch a spot instance of one of alestic's images (see alestic.com) | |
# - create a 5G EBS volume | |
# - attach the 5G EBS volume to your instance | |
# - log into the instance with ssh | |
set -e -x |
This file contains 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
(tool-bar-mode -1) | |
(menu-bar-mode -1) | |
(scroll-bar-mode -1) | |
(setq inhibit-splash-screen t) | |
(setq-default indent-tabs-mode nil) | |
(setq-default tab-width 4) | |
(font-lock-mode 0) | |
(global-set-key "\C-cm" 'compile) |
This file contains 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
emacs*foreground: wheat | |
emacs*background: darkslategray | |
emacs*cursorColor: white | |
emacs*pointerColor: white |
This file contains 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
{ sys | | |
Matrix: (| | |
Array: sys Array; | |
// constructor | |
num_rows:num_columns:: { num_rows num_columns | | |
self @num_rows: num_rows; | |
self @num_columns: num_columns; |
This file contains 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
apt-get install -y sudo emacs xserver-xorg ruby \ | |
openbox rxvt-univode x11-server-utils xinit less \ | |
gconf2 ssh git-core | |
export EDITOR=emacs | |
visudo |
This file contains 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
# xorg.conf (X.Org X Window System server configuration file) | |
# | |
# This file was generated by dexconf, the Debian X Configuration tool, using | |
# values from the debconf database. | |
# | |
# Edit this file with caution, and see the xorg.conf manual page. | |
# (Type "man xorg.conf" at the shell prompt.) | |
# | |
# This file is automatically updated on xserver-xorg package upgrades *only* | |
# if it has not been modified since the last upgrade of the xserver-xorg |
This file contains 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
/* | |
* Note this just tests a single core: | |
* | |
* My work desktop: 1.2GB/s | |
* My home desktop: 1.4GB/s | |
* My raspberry pi: 200 MB/s | |
*/ | |
#include <stdlib.h> | |
#include <stdio.h> |
This file contains 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 programing language and OpenVG | |
http://www.raspberrypi.org/phpBB3/viewtopic.php?f=69&t=16421 | |
https://github.com/ajstarks/openvg | |
This file contains 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
(menu-bar-mode 0) | |
(tool-bar-mode 0) | |
(set-background-color "darkslategray") | |
(set-foreground-color "wheat") | |
;; | |
;; Default Settings | |
;; | |
(setq make-backup-files nil) |