wmfarr.blogspot.com wmfarr.blogspot.com

wmfarr.blogspot.com

Scheming

Programming notes and ideas from an astrophysicist. Loop-Unrolling Macros in Clojure. I've been fooling around with clojure. A bit lately. Something fun: a. Like macro, but it completely unrolls your loop at compile time:. Defmacro dotimes-unroll "Just like dotimes, but completely unrolls the given loop. The number of iterations must read as a number." [ i n] and body] (assert (number? N) (if (= n 0) `nil `(let [ i (- n 1)] (dotimes-unroll [ i (- n 1)] @body) @body) ). Links to this post. 1 when r = a/b,...

http://wmfarr.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR WMFARR.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

November

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.7 out of 5 with 6 reviews
5 star
2
4 star
0
3 star
4
2 star
0
1 star
0

Hey there! Start your review of wmfarr.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.2 seconds

FAVICON PREVIEW

  • wmfarr.blogspot.com

    16x16

  • wmfarr.blogspot.com

    32x32

  • wmfarr.blogspot.com

    64x64

  • wmfarr.blogspot.com

    128x128

CONTACTS AT WMFARR.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Scheming | wmfarr.blogspot.com Reviews
<META>
DESCRIPTION
Programming notes and ideas from an astrophysicist. Loop-Unrolling Macros in Clojure. I've been fooling around with clojure. A bit lately. Something fun: a. Like macro, but it completely unrolls your loop at compile time:. Defmacro dotimes-unroll Just like dotimes, but completely unrolls the given loop. The number of iterations must read as a number. [ i n] and body] (assert (number? N) (if (= n 0) `nil `(let [ i (- n 1)] (dotimes-unroll [ i (- n 1)] @body) @body) ). Links to this post. 1 when r = a/b,...
<META>
KEYWORDS
1 skip to main
2 skip to sidebar
3 scheming
4 dotimes
5 posted by
6 will farr
7 no comments
8 get it with
9 polynomials in ocaml
10 on github
CONTENT
Page content here
KEYWORDS ON
PAGE
skip to main,skip to sidebar,scheming,dotimes,posted by,will farr,no comments,get it with,polynomials in ocaml,on github,show details,debugging and profiling,run program,robby suggested,using the,errortrace,run tests ss,require run tests ss,l errortrace
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Scheming | wmfarr.blogspot.com Reviews

https://wmfarr.blogspot.com

Programming notes and ideas from an astrophysicist. Loop-Unrolling Macros in Clojure. I've been fooling around with clojure. A bit lately. Something fun: a. Like macro, but it completely unrolls your loop at compile time:. Defmacro dotimes-unroll "Just like dotimes, but completely unrolls the given loop. The number of iterations must read as a number." [ i n] and body] (assert (number? N) (if (= n 0) `nil `(let [ i (- n 1)] (dotimes-unroll [ i (- n 1)] @body) @body) ). Links to this post. 1 when r = a/b,...

INTERNAL PAGES

wmfarr.blogspot.com wmfarr.blogspot.com
1

Scheming: Loop-Unrolling Macros in Clojure

http://wmfarr.blogspot.com/2010/06/loop-unrolling-macros-in-clojure.html

Programming notes and ideas from an astrophysicist. Loop-Unrolling Macros in Clojure. I've been fooling around with clojure. A bit lately. Something fun: a. Like macro, but it completely unrolls your loop at compile time:. Defmacro dotimes-unroll "Just like dotimes, but completely unrolls the given loop. The number of iterations must read as a number." [ i n] and body] (assert (number? N) (if (= n 0) `nil `(let [ i (- n 1)] (dotimes-unroll [ i (- n 1)] @body) @body) ). Subscribe to: Post Comments (Atom).

2

Scheming: June 2010

http://wmfarr.blogspot.com/2010_06_01_archive.html

Programming notes and ideas from an astrophysicist. Loop-Unrolling Macros in Clojure. I've been fooling around with clojure. A bit lately. Something fun: a. Like macro, but it completely unrolls your loop at compile time:. Defmacro dotimes-unroll "Just like dotimes, but completely unrolls the given loop. The number of iterations must read as a number." [ i n] and body] (assert (number? N) (if (= n 0) `nil `(let [ i (- n 1)] (dotimes-unroll [ i (- n 1)] @body) @body) ). Links to this post. I am a Lecturer...

3

Scheming: September 2007

http://wmfarr.blogspot.com/2007_09_01_archive.html

Programming notes and ideas from an astrophysicist. Quick Note on Continuations to comp.lang.scheme. I just posted a quick note. On continuations to c.l.s. Ie what images are going through your head while you figure out how to do what you want with call/cc in code, not how do you formalize call/cc, or how you explain it to someone else, or .). Links to this post. Subscribe to: Posts (Atom). Quick Note on Continuations to comp.lang.scheme. Confessions of a Community College Dean. View my complete profile.

4

Scheming: Quick Note on Continuations to comp.lang.scheme

http://wmfarr.blogspot.com/2007/09/quick-note-on-continuations-to.html

Programming notes and ideas from an astrophysicist. Quick Note on Continuations to comp.lang.scheme. I just posted a quick note. On continuations to c.l.s. Ie what images are going through your head while you figure out how to do what you want with call/cc in code, not how do you formalize call/cc, or how you explain it to someone else, or .). Just to tie back to standard terminology, the "magic function" I mention above is actually the program's current continuation. Of course, there's no reason call/cc...

5

Scheming: Distribution for the Ratio of Two Uniform Deviates

http://wmfarr.blogspot.com/2010/03/distribution-for-ratio-of-two-uniform.html

Programming notes and ideas from an astrophysicist. Distribution for the Ratio of Two Uniform Deviates. Weird: the distribution for the ratio of two uniform deviates is constant for ratios smaller than 1, and falls like r 2 for larger ratios. p(r) = 1/2 if r. 1 when r = a/b, where a,b U(0, A). What's up with that? Subscribe to: Post Comments (Atom). Distribution for the Ratio of Two Uniform Deviates. Confessions of a Community College Dean. View my complete profile.

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

LINKS TO THIS WEBSITE

blog.scheme.dk blog.scheme.dk

Everything Scheme

http://blog.scheme.dk/2006_04_01_archive.html

A blog on all things Scheme. Wednesday, April 26, 2006. How many bits are needed to store a natural number n. Well, let's look at the standard encoding. One bit is needed for 1 (1). Two bits are needed for 2 (10) and 3 (11), furthermore three bits are needed for 4 (100), ., 7 (111). Hmm. log(1)=0, log(2)=1, log(4)=3, log(8)=4. So the number of bits needed is 1 floor(log n. Suppose the bits 110 are read from a file. Is this the number 3 or is it a 1 followed by a 2? The natural number is represented as n-1.

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL LINKS TO THIS WEBSITE

1

OTHER SITES

wmfarm.com.au wmfarm.com.au

Wyening Mission Farm

wmfarmerandsons.com wmfarmerandsons.com

William Farmer & SonsHome - William Farmer & Sons

Comfortable and eclectic rooms offer our guests a rare experience when staying in Hudson. each room's distinctive character makes staying here like hanging out with an old friend. Kirby Farmer has brought the glorious institutions of proper drinking, simple suppers and selfless service to Hudson. The Comings and Goings on Front Street. Looking for more information? Use our quick contact form Below and we’ll get right back to you. No 20 S. Front St Hudson, NY 12534.

wmfarmersmarket.com wmfarmersmarket.com

wmfarmersmarket.com - This domain may be for sale!

Find the best information and most relevant links on all topics related to wmfarmersmarket.com. This domain may be for sale!

wmfarmersmarket.org wmfarmersmarket.org

West Milford Farmer's Market » Food. Farms. Friends.

Farmer’s Market Bucks. Welcome to the Market. June 3 - October 21, 2015. Union Valley Rd and Milford Ln. West Milford, NJ 07480. This Week at the Market:. Gifted herbalist, instructor, and author Robin Rose Bennett, of Wise Woman Healing Ways, will be at the Market this week. Stop by to hear all about the wild medicinals that are all around us! Marianne Osiel will be joining us for the second time this season. If you missed her before, please come listen - she is something special! See ya at the market!

wmfarmlink.com wmfarmlink.com

WM FarmLink - Local Food

wmfarr.blogspot.com wmfarr.blogspot.com

Scheming

Programming notes and ideas from an astrophysicist. Loop-Unrolling Macros in Clojure. I've been fooling around with clojure. A bit lately. Something fun: a. Like macro, but it completely unrolls your loop at compile time:. Defmacro dotimes-unroll "Just like dotimes, but completely unrolls the given loop. The number of iterations must read as a number." [ i n] and body] (assert (number? N) (if (= n 0) `nil `(let [ i (- n 1)] (dotimes-unroll [ i (- n 1)] @body) @body) ). Links to this post. 1 when r = a/b,...

wmfarrantdiary.blogspot.com wmfarrantdiary.blogspot.com

Wm. Farrant's Diary

Monday, March 5, 2012. My new address is:. Http:/ williamfarrant.tumblr.com/. Tuesday, February 14, 2012. Chocolate Chip Cookie Fantasy For Your Man. This one is for all you Valentine's cynics, including myself. That's why I wrote it last year. And now I'm making an annual tradition out of posting it on the "special" day. Chocolate Chip Cookie Fantasy For Your Man. A bag of Chips Ahoy cookies. Pans, bowls, spatula, electronic devices. Eighties rock music (Poison, Warrant, but feel free to improvise).

wmfas.org wmfas.org

WMFAS

At our main building. We have crutches, wheelchairs and other items to loan out for short-term use. Classes for certification in CPR (cardiopulmonary resuscitation) and AED (automated external defibrillation) are conducted regularly in our meeting room. If you are interested in either the loan of equipment or CPR/AED certification, please call or send an email. And we will contact you. The Township of West Milford. Long Pond Iron Works. State Parks and several Green-Acres preserves. You can find us here.

wmfashion.com wmfashion.com

wmfashion.com - This domain may be for sale!

Find the best information and most relevant links on all topics related to wmfashion.com. This domain may be for sale!

wmfashions.com wmfashions.com

W M Fashions - WMfashions.com

wmfatangkor.org wmfatangkor.org

amazee.io - Drupal Hosting for Developers

Skip to main content. Welcome to amazee.io. It looks like you are trying to reach a site which points to our Webservers. But something isn't configured properly yet. In order to get help check the Documentation on docs.amazee.io or get in touch with our Team, we're happy to help! We release every week.