Racket v5.3.6 released
blog.racket-lang.org
Racket v5.3.6 released
1–10 of 21 posts
Re: Racket v5.3.6 released
#2Re: Racket v5.3.6 released
#3This was a bug-fix release. In Typed Racket, one set of fixes adds support for struct:, define-type, and require/typed at the REPL. The DrRacket bug with [ on some keyboards was also fixed. For the rest, see the log above.
Re: Racket v5.3.6 released
#4Any Racketeers over here?
Re: Racket v5.3.6 released
#5Re: Racket v5.3.6 released
#6Full list of changes for 5.3.6: https://github.com/plt/racket/commits/v5.3.6 This was a bug-fix release. In Typed Racket, one set of fixes adds support for struct:, define-type, and require/typed at the REPL. The DrRacket bug with [ on some keyboards was also fixed. For the rest, see the log above.
Re: Racket v5.3.6 released
#7Any Racketeers over here?
The racket docs (http://docs.racket-lang.org/) have a list of tutorials at the top. There's a visual art/programming tutorial for those new to lisp (http://docs.racket-lang.org/quick/) and a webapp one (http://docs.racket-lang.org/continue/) that demonstrates Racket's built-in web framework.
Re: Racket v5.3.6 released
#8Any Racketeers over here?
Some years ago though. Wrote the "style browser" stand-alone application in DrScheme. Damn! Feeling nostalgic about Scheme as I browse through some old code :)
https://code.google.com/p/muvee-style-authoring/
If you're looking to dabble in Racket and are looking for pet project ideas, here is one I've had in mind for years --
Make a "browser"!
By that I don't mean make something that renders HTML/CSS, runs JavaScript, etc. Instead, make a browser whose "HTML page" is actually a Racket program that loads off a http URL and runs in the "browser"'s window. racket/sandbox is a candidate for sandboxing these runs. Give the script access to drawing on the window, making a sound, limited file system access, etc over time. A standard http server can serve these files, but something extra fun would be a server that also runs Racket that you can use s-expressions to communicate with (bye bye JSON).
Re: Racket v5.3.6 released
#9Any Racketeers over here?
(wave) Some years ago though. Wrote the "style browser" stand-alone application in DrScheme. Damn! Feeling nostalgic about Scheme as I browse through some old code :) https://code.google.com/p/muvee-style-authoring/ If you're looking to dabble in Racket and are looking for pet project ideas, here is one I've had in mind for years -- Make a "browser"! By that I don't mean make something that renders HTML/CSS, runs Jav…
Re: Racket v5.3.6 released
#10Any Racketeers over here?