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
| Ironfan.cluster 'test0' do | |
| cloud(:ec2) do | |
| permanent false | |
| availability_zones ['us-east-1d'] | |
| flavor 't1.micro' | |
| backing 'ebs' | |
| image_name 'natty' | |
| bootstrap_distro 'ubuntu10.04-ironfan' | |
| chef_client_script 'client.rb' | |
| mount_ephemerals |
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
| Ironfan.cluster 'test0' do | |
| cloud(:ec2) do | |
| availability_zones ['us-east-1d'] | |
| ssh_user "ubuntu" | |
| permanent false | |
| flavor 'm1.large' | |
| backing 'ebs' | |
| image_name 'natty' | |
| bootstrap_distro 'ubuntu12.04-ironfan' |
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
| -module(foo). | |
| -export([drop/2]). | |
| drop([], Elem) -> []; | |
| drop([Elem|T], Elem) -> drop(T, Elem); | |
| drop([H|T], Elem) -> [H | drop(T, Elem)]. |
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
| ;; Without using partial | |
| (defn sums-to-n? [n] | |
| (fn [coll] | |
| (= n (reduce + coll)))) | |
| (def f (sums-to-n? 10)) | |
| (f [1 2 3]) ; false | |
| (f [1 2 3 4]) ; true |
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
| # the following two lines give a two-line status, with the current window highlighted | |
| hardstatus alwayslastline | |
| hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]' | |
| # huge scrollback buffer | |
| defscrollback 5000 | |
| # no welcome message | |
| startup_message off |
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
| fn main() { | |
| println!("hello world!"); | |
| let foo = format!("hello rustacean!"); | |
| println!("{}", foo); | |
| let x = 5 + 10; | |
| println!("x is {}", x); | |
| #[allow(unused_variables)] | |
| let y: i32 = 42; |
OlderNewer