Which leads to question: when to use nested define and when to use let?
> From: matth...@ccs.neu.edu
> Date: Sun, 11 Mar 2012 19:14:38 -0400
> To: jgil...@gmail.com
> CC: users@racket-lang.org; jus...@zamora.com
> Subject: Re: [racket] spirit of Racket?
>
>
> I believe the code below cuts your
For all you dear academic Racket scribomans, here's a lesson from Mark Tarver,
the ingenious inventor of a new lisp-like language, Shen (more on that
beautiful language can be found here: http://http://shenlanguage.org). In his
article "Why I am Not a Professor", this clever man says the fol
Dear Racketeers,
Wishing you a very happy and prosperous new year!
Let the new year bring us much more good documentation for web development in
Racket. And much less artificial academic articles, far away from practice.
Cheers!
Ra
I don't feel any need in my heart and brain to write "examples" for such a
poorly undocumented piece of code like Racket Web Development library.To
shriram: kill the messenger of bad news! The easiest way is always to declare
troll those who does not nod at everything you, academic multiwriters
From: racketn...@hotmail.com
To: keyd...@gmx.de
Subject: RE: [racket] formlets with radio button & checkbox example?
Date: Mon, 26 Dec 2011 12:48:57 +0100
No, you are not dumb. It's only that Racket web documentation sucks. But never
mind: there is also a Ruby on Rails, or maybe Django
Of course I care!
I love racket and deeply respect all of you. But, I'm afraid that if you go
this way, Racket remain just another never used "academic" language.
Community is too hermetic and self-sufficient. Let's take only RacketCon's
videos as example: you, boys are so much in your
me I know you. I provided advice on a solution to a book problem,
and that's that.
On Dec 19, 2011, at 6:16 PM, Racket Noob wrote:
Yes, You, professor: some time ago I was asked you to rate my solution for "Peg
Solitaire" and once again thank you for your help and kindness!
Subjec
3 -0500
CC: users@racket-lang.org
To: racketn...@hotmail.com
On Dec 19, 2011, at 6:05 PM, Racket Noob wrote:Mr. Matthis already knows some
details about my "psychopathological" profile.
Me?
> Date: Mon, 19 Dec 2011 17:48:11 -0500
> Subject: Re: [racket] Racket documentation for web development is just awful!
> From: toddobr...@gmail.com
> To: matth...@ccs.neu.edu
> CC: racketn...@hotmail.com; users@racket-lang.org
>
> I think Racket Noob is actually
Jordan, beautiful are your ideas and suggestions, but unfortunately, I think
that they are futile. Why do I say this? I think that Racket primarily serves
to a specific group of people as an inexhaustible source for mass-production of
always the same academic articles, and much less for everyda
think this is one of the main reasons for poor use of Racket in the web
(otherwise, Racket is just great!).
Date: Sat, 17 Dec 2011 12:06:54 -0500
From: n...@neilvandyke.org
To: racketn...@hotmail.com
Subject: Re: [racket] Racket documentation for web development is just awful!
Racket
etty
URLs, but still have a continuation?) Racket Noob > From: sa...@ccs.neu.edu
> Date: Sat, 17 Dec 2011 11:18:06 -0500
> Subject: Re: [racket] Racket documentation for web development is just awful!
> To: racketn...@hotmail.com
> CC: users@racket-lang.org
>
> First, I want to
this community: let someone with more
literary talent to write documentation for web development in the Racket!
Racket Noob _
For list-related administrative tasks:
http://lists.racket-lang.org/listinfo/users
Such a cold community. :(
I give up. I'm sorry for bothering you with my bad english and stupidity, I'll
never post to this group again.
> From: s...@cs.brown.edu
> Date: Sun, 18 Sep 2011 16:47:45 -0400
> Subject: Re: [racket] Quoted expressions in #lang racket
> To: racketn...@hotmail.com
> CC
> FWIW, as one PL educator, I don't find that to be something I wish to
> teach to the students who are beginning to learn what is important
> about programming languages. I also don't think that a list is a
> particularly good representation for a function application in an
> implementation and a
> I kindly suggest the thought that omitting the quote is precisely what
> makes things harder for beginners. It seems to suggest to the
> untrained that REPL is returning something that is not a value. As
> Matthias and others have pointed out, you can not take the "value" (1
> 2 3) and use it s
Here http://www.ccs.neu.edu/home/matthias/HtDP2e/i2-3.html i found this:"You
can use the function show-in-browser from "2htdp/web-io.rkt" to display the
result of functions such as my-first-web-page in a web browser". Unfortunately,
I cannot find web-io.rkt nowhere in Racket, version 5.1.3.
> You keep thinking (1 2 3) is the canonical form of a list. It is
> not. It's just a particular *print representation* of list. So is
> # or one of the many alternatives Eli proposed.
> Oh, I understand that. It's just that I don't understand why you (i.e. Racket
> implementers) choose Racke
You can't compute (car (1 2 3)) because before car even begin, it's parameter,
list (1 2 3) must be evaluated, but 1 is not a procedure name. It is different
than in (quote (1 2 3)) where such evaluation doesn't take place. > Date: Sun,
18 Sep 2011 12:05:20 -0500
> From: gret...@acm.org
> To:
Sorry Shriram, i didn't mean to insult you or anyone else, but my poor english
prevents me to express myself clearly. Still, i will try to explain what
bothers me with the way Racket prints quoted expressions and I hope that you'll
understand what i want to say:
Suppose that we enter expressio
Saying that (quote (1 2 3)) evaluates to (quote (1 2 3)) [instead to (1 2 3)]
is the same nonsanse to me like saying that (+ 1 2) evaluates to (+ 1 2)
[instead to 3].
> From: s...@cs.brown.edu
> Date: Sun, 18 Sep 2011 11:15:41 -0400
> Subject: Re: [racket] Quoted expressions in #lang racket
> T
> >> In Common Lisp or Clojure REPL, expression '(1 2 3) evaluates to (1 2 3).
>
>
> No it doesn't. In CL and Clojure, '(1 2 3) evaluates to '(1 2 3) and then the
> printer turns it into (1 2 3).
>
Wait a minute, I dont get it! You are saying that (quote (1 2 3)) evaluates to
(quote (1 2
In Common Lisp or Clojure REPL, expression '(1 2 3) evaluates to (1 2 3).
But in #lang racket the same expression evaluates to '(1 2 3). Why?
_
For list-related administrative tasks:
http://lists.racket-l
solitaire for solving a
puzzle.
Subject: Re: [racket] HtDP Exercise 32.3.2
From: matth...@ccs.neu.edu
Date: Mon, 15 Aug 2011 15:21:08 -0400
CC: users@racket-lang.org
To: racketn...@hotmail.com
On Aug 15, 2011, at 3:10 PM, Racket Noob wrote:I don't understand this exercise:
Exercise 32.3.2. De
I don't understand this exercise:
Exercise 32.3.2. Develop a function that, given a board and the board
position of a peg, determines whether or not the peg can jump. We call such a
peg enabled.Develop a function that, given a board and the board position of an
enabled peg, creates a board th
Thank you, beautiful people!
I'll take a look at Dybvig's article. And, i hope that upcoming book, "Realm of
Racket", will contain non-trivial chapter about "racket-way" macros.
By the way, when will "RoR" be published? I'm so eager to see it! :)
27;r)
endstate
Shriram's approach (described here:
http://www.cs.brown.edu/~sk/Publications/Papers/Published/sk-automata-macros/paper.pdf
) forces us to give input all in one take.
Racket Noob
> Date: Fri, 12 Aug 2011 10:22:18 -0400
> From: n...@neilvandyke.org
> To: racketn.
that covers Racket's hygienic macros in such detailed manner. :(
Racket Noob
> Date: Fri, 12 Aug 2011 07:39:16 -0500
> Subject: Re: [racket] Problem with macro
> From: ro...@eecs.northwestern.edu
> To: clkl...@eecs.northwestern.edu
> CC: jay.mccar...@gmail.com; users@racket-l
#x27;reading-past-end-error)])
(set! curr-state init-state)
(lambda (c)
(curr-state c)))]))
Reported error is: case: bad syntax (missing expression after datum sequence)
in: ((process-state (c -> more)))
It seems to me that macro process-state is not expanding at all.
29 matches
Mail list logo