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
| section: screens | |
| tardis: | |
| impulse: | |
| end | |
| section: links | |
| tardis: | |
| down = impulse | |
| impulse: | |
| up = tardis |
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
| all: | |
| g++ -o test test.cpp |
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
| Installing linecache (0.43) with native extensions | |
| /usr/local/rvm/rubies/ruby-head/lib/ruby/1.9.1/rubygems/installer.rb:483:in `rescue in block in build_extensions': | |
| ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError) | |
| /usr/local/rvm/rubies/ruby-head/bin/ruby extconf.rb | |
| Can't handle 1.9.x yet |
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
| select(:id => 'num') do | |
| option(@num.to_i == 10 ? {:selected => true} : {}){ "10" } | |
| option(@num.to_i == 50 ? {:selected => true} : {}){ "50" } | |
| option(@num.to_i == 100 ? {:selected => true} : {}){ "100" } | |
| end |
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
| Year-Make-Model-Trim-Tranny-Weight | |
| 1985 Honda CRX Si MT 1883 | |
| 1985 Honda CRX DX MT 1819 | |
| 1985 Honda CRX HF MT 1713 | |
| 1986 Honda CRX Si MT 1953 | |
| 1986 Honda CRX DX MT 1819 | |
| 1986 Honda CRX HF MT 1713 | |
| 1987 Honda CRX Si MT 1978 | |
| 1987 Honda CRX DX MT 1865 | |
| 1987 Honda CRX HF MT 1713 |
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
| from scons_go_support import * | |
| import os | |
| # Build programs | |
| # Modify this to suit your program | |
| main_package = go_env.Go(target='echo.out', source='echo.go') | |
| program = go_env.GoProgram(target='echo', source=[main_package]) |
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
| package main | |
| import "fmt" | |
| func main() | |
| { | |
| fmt.Printf("hello, world\n") | |
| } | |
| // Error: |
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
| X @ (0, 2) | |
| | | |X| | |
| | | | | | |
| | | | | | |
| O @ (2, 1) | |
| | | |X| | |
| | | | | | |
| | |O| | | |
| X @ (2, 0) | |
| | | |X| |
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
| 350Mhz bus, 1.35 Vcore, 9x multiplier | |
| RAM seemed to be acting up at higher bus speeds | |
| # mprime results (Torture, 4 threads, FFT option 1) | |
| [Worker #2 Dec 6 10:20] Torture Test completed 50 tests in 8 hours, 51 minutes - 0 errors, 0 warnings. | |
| [Worker #3 Dec 6 10:20] Torture Test completed 50 tests in 8 hours, 51 minutes - 0 errors, 0 warnings. | |
| # Temperatures | |
| Core 0: +49.0C (high = +82.0C, crit = +100.0C) |
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
| include stdlib // Need for rand() and srand() | |
| include time // Need for time() | |
| c_rand: extern(rand) func -> Int | |
| c_srand: extern(srand) func(seed: Int) -> Int | |
| c_time: extern(time) func(when: Int) -> Int | |
| import structs/ArrayList | |
| //operator as (b: Boo) -> Int | |