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
The answer to everything. |
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
total used free shared buffers cached | |
Mem: 1572864 507712 1065152 0 0 0 | |
-/+ buffers/cache: 507712 1065152 | |
Swap: 0 0 0 | |
total used free shared buffers cached | |
Mem: 1572864 666920 905944 0 0 0 | |
-/+ buffers/cache: 666920 905944 | |
Swap: 0 0 0 |
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
%% ``The contents of this file are subject to the Erlang Public License, | |
%% Version 1.1, (the "License"); you may not use this file except in | |
%% compliance with the License. You should have received a copy of the | |
%% Erlang Public License along with this software. If not, it can be | |
%% retrieved via the world wide web at http://www.erlang.org/. | |
%% | |
%% Software distributed under the License is distributed on an "AS IS" | |
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See | |
%% the License for the specific language governing rights and limitations | |
%% under the License. |
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
delegate = Object.new | |
def delegate.netServiceBrowserWillSearch(browser) | |
puts "search commencing!" | |
end | |
def delegate.netServiceBrowser(browser, didFindService:service, moreComing:more) | |
# this never calls regardless of the services on the network. | |
puts "Found service #{service.name}." | |
end |
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
/* This is a template command */ | |
CmdUtils.CreateCommand({ | |
name: "example", | |
icon: "http://example.com/example.png", | |
homepage: "http://example.com/", | |
author: { name: "Your Name", email: "[email protected]"}, | |
license: "GPL", | |
description: "A short description of your command", |
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
(define (fb x) | |
(cond ((= (remainder x 15) 0) "FizzBuzz") | |
((= (remainder x 3) 0) "Fizz") | |
((= (remainder x 5) 0) "Buzz") | |
(else x) | |
)) | |
(do ((i 1 (+ i 1))) ((> i 100)) | |
(display (fb i)) | |
(newline)) |
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
(define (fb x) | |
(cond ((= (remainder x 15) 0) "fizzbuzz") | |
((= (remainder x 3) 0) "fizz") | |
((= (remainder x 5) 0) "buzz") | |
(else x) | |
)) | |
(fb 1) | |
(fb 2) | |
(fb 3) | |
(fb 4) |
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
(define (print x) | |
(cond ((= (remainder x 15) 0) 'fizzbuzz) | |
((= (remainder x 3) 0) 'fizz) | |
((= (remainder x 5) 0) 'buzz) | |
(else x))) | |
(define (makelist n) | |
(if (= n 101) | |
'() | |
(cons (print n) | |
(makelist (+ n 1))))) |
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
(define (fast-expt b n) | |
(define (iter a b count) | |
(cond ((= count 0) a) | |
((even? count) (iter a (square b) (/ count 2))) | |
(else (iter (* a b) b (- count 1))))) | |
(iter 1 b n)) |
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
(define a (lambda (x) (+ x 4))) | |
(a 4) | |
(define (b q) (a q)) | |
(define a (lambda (x) (* x 16))) | |
(b 4) | |
(a 4) |
OlderNewer