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 150ef696a4d821a648880ea8f355acbc28e06f4a Mon Sep 17 00:00:00 2001 | |
From: Sean Braithwaite <[email protected]> | |
Date: Tue, 12 May 2009 22:12:00 -0400 | |
Subject: [PATCH] Typo in gem rake task | |
--- | |
do_sqlite3/tasks/gem.rake | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) | |
diff --git a/do_sqlite3/tasks/gem.rake b/do_sqlite3/tasks/gem.rake |
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
(define (fizz-buzz rng) | |
(let loop ((n 1)) | |
(let ((thr (remainder n 3)) | |
(fiv (remainder n 5))) | |
(cond | |
((and (zero? thr) (zero? fiv)) (printf “fizz-buzz~n”)) | |
((zero? thr) (printf “fizz~n”)) | |
((zero? fiv) (printf “buzz~n”)) | |
(else (printf “~a~n” n))) | |
(if (= rng n) |
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
( | |
SynthDef(\player, {|out=0,rate=1,bufNum, amp=1, noise=0.1, delay=3,dur=10| | |
var ctl,sig; | |
sig = BufRd.ar(1, bufNum, | |
Phasor.ar(0, BufRateScale.kr(bufNum)*rate, 0, BufFrames.kr(bufNum)); | |
); | |
//sig= (WhiteNoise.kr(0.25) * (1+noise)) * sig; | |
sig = Mix.ar(Array.fill(4,{ CombL.ar(sig, 0.1, 0.2, delay) })); | |
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
lex = WordNet::Lexicon.new | |
collection = [] | |
current = "" | |
while true | |
trap("INT") do | |
Process.exit | |
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
Index: SConstruct | |
=================================================================== | |
--- SConstruct (revision 8951) | |
+++ SConstruct (working copy) | |
@@ -104,7 +104,7 @@ | |
Exit(1) | |
#get our variables from the options | |
-PREFIX = env.get('PREFIX') | |
+PREFIX = os.path.join(env.get('DESTDIR',''), env.get('PREFIX')) |
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
Index: SConstruct | |
=================================================================== | |
--- SConstruct (revision 8951) | |
+++ SConstruct (working copy) | |
@@ -16,7 +16,7 @@ | |
ANY_FILE_RE = re.compile('.*') | |
HOME_DIR_RE = re.compile(os.environ.get('HOME') + '.*') | |
-DEFAULT_PREFIX = '/usr/local/' | |
+DEFAULT_PREFIX = os.environ.get('PREFIX', '/usr/local/') |
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
Index: SConstruct | |
=================================================================== | |
--- SConstruct (revision 8951) | |
+++ SConstruct (working copy) | |
@@ -359,7 +359,7 @@ | |
if os.path.exists('/usr/lib/ccache/bin'): | |
os.environ['PATH'] = '/usr/lib/ccache/bin:' + os.environ['PATH'] | |
- env['ENV']['CCACHE_DIR'] = os.environ['CCACHE_DIR'] | |
+ env['ENV']['CCACHE_DIR'] = os.environ.get('CCACHE_DIR') |
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
processing it and putting it here: /Users/jeremytough/.scvim/doc | |
/Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:112:in `write': Broken pipe (Errno::EPIPE) | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:112:in `puts' | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:112:in `runhtml' | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:100:in `open' | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:100:in `runhtml' | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:199:in `myunhtml' | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:198:in `open' | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:198:in `myunhtml' | |
from /Users/jeremytough/workspace/SuperCollider3/editors/scvim/bin/scvim_make_help.rb:267:in `processFi |
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
Index: build.xml | |
=================================================================== | |
RCS file: /var/cvs/EPC/EPC_v5.0/code/applications/Portal/epc-guideline/build.xml,v | |
retrieving revision 1.17 | |
diff -u -r1.17 build.xml | |
--- build.xml 11 Feb 2009 19:03:36 -0000 1.17 | |
+++ build.xml 4 Mar 2009 17:42:55 -0000 | |
@@ -136,6 +136,7 @@ | |
<include name="FlexSpy.swc" /> | |
<include name="KapInspect.swc" /> |
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 enell | |
{ | |
import caurina.transitions.Tweener; | |
import flash.display.Sprite; | |
import flash.events.Event; | |
public class Mountain extends Sprite | |
{ | |
//positiong |