Re: [racket-users] Heresy 0.3.0 released

2018-04-30 Thread John Berry
Indeed they are! I had forgotten about the delay and thought perhaps it had changed. Thanks! Sent from my iPhone > On 30 Apr 2018, at 16.33, Matthew Flatt wrote: > > At Mon, 30 Apr 2018 14:14:02 +0300, Annaia Berry wrote: >> Version 0.3.0 of the Heresy programming language has been released, >

Re: [racket-users] Racket PPA updated for v6.10

2017-08-28 Thread John Berry
Disregard that, it seems to have reappeared now. On Mon, Aug 28, 2017 at 11:29 AM, John Berry wrote: > Thanks so much for the update. > > One thing I did notice though is the app icon seems to be broken for me. > > On Fri, Aug 25, 2017 at 11:23 AM, Asumu Takikawa >

Re: [racket-users] Racket PPA updated for v6.10

2017-08-28 Thread John Berry
Thanks so much for the update. One thing I did notice though is the app icon seems to be broken for me. On Fri, Aug 25, 2017 at 11:23 AM, Asumu Takikawa wrote: > Hi all, > > The Ubuntu PPA has been updated for v6.10. Sorry for the delay this time > around > and also for skipping a release! The

[racket-users] Ubuntu PPA behind versions?

2017-08-24 Thread John Berry
build submitted in 29 weeks. I don't have any strict need for 6.10 or anything, but it's nice to have the option, so I thought I'd post a heads up in case it just slipped through the cracks. Thanks, John Berry jarc...@gmail.com -- You received this message because you are subscribed

Re: [racket-users] European Racketeers and conferences

2017-08-24 Thread John Berry
I live in Finland, and will be giving a talk about Heresy, the language I built in Racket, next weekend at ClojuTRE in Tampere FI. It would be interesting to see a Racketeer meetup of some kind. As much as I love the UK though, I'm not sure I would be keen on a meetup there with the way things are

Re: [racket-users] Re: Boot To Racket

2017-07-09 Thread John Berry
I've had a wish recently to try and turn Heresy into something like this, with an RPi booting straight to a Heresy shell+editor interface akin to old 8-bit computers, complete with some kind of custom framebuffer 80-column display (as I have an RPi1 and Xorg is hella slow). It could all still be Li

Re: [racket-users] RacketCon Code of Conduct

2017-06-19 Thread John Berry
the > Racket community. > > I really love how welcoming this community is - even more than I love the > ideas you put into or expressed with Racket. It is your greatest strength. > > Kind regards > > Stephen > On Mon, 19 Jun 2017 at 18:55, Norman Gray wrote: > >> &g

Re: [racket-users] RacketCon Code of Conduct

2017-06-19 Thread John Berry
I will always 100% support the adoption of a CoC drafted by people with experience in dealing with discrimination, harassment, and toxic behaviour. It is impossible to understate just how much gets swept under the rug without one, and increasingly, the lack of one itself tends to attract toxic peop

[racket-users] Heresy v0.2.0

2017-05-20 Thread John Berry
It is my pleasure to announce that version 0.2.0 of the Heresy language has been released. The new version brings a new implementation of do notation, better inheritance for things, and other under the hood fun stuff. Check out the changelog here: https://github.com/jarcane/heresy/pull/47 I've a

Re: [racket-users] for/vector with accumulator?

2016-03-12 Thread John Berry
For Heresy, I got to thinking about all the different special for loops in Racket, and how I could generalize them into a single form, and what I realized is that all you need for that is to just build in an accumulator. Every for loop in Heresy contains the inbuilt variable "cry", which is a valu

Re: [racket-users] Try-Raket is not working

2016-02-03 Thread John Berry
uello's fork, as at this point it's much more well developed, but I think he intended another direction for it. On Mon, Feb 1, 2016 at 11:46 PM, John Berry wrote: > Argh. Someone's really hammered it this time. I'm looking into it, but it > might take a bit to figure o

Re: [racket-users] Try-Raket is not working

2016-02-01 Thread John Berry
Argh. Someone's really hammered it this time. I'm looking into it, but it might take a bit to figure out what the hell's even been done to it. On Fri, Jan 29, 2016 at 2:25 PM, Gustavo Massaccesi wrote: > From: http://try-racket.org/ > > > Exception > > The application raised an exception with t

Re: [racket-users] Try Racket is ABORTING.

2015-12-18 Thread John Berry
Kicked the server. Seems to work now. On Fri, Dec 18, 2015 at 3:57 PM, Taro Annual wrote: > over > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to racke

Re: [racket-users] about rackjure

2015-12-15 Thread John Berry
In Heresy I did something like the (pipe ...) function above: ; (:> *initial-value* *fn1* ...); The forward pipe operator. Given an initial value and a list of one-argument functions; applys functions in order from left to right and returns the result(def fn :> (initial-value . fns) (for (f in f

[racket-users] Help with a bewildering bug.

2015-12-02 Thread John Berry
I've been working on a new feature for Heresy and I've run into a bug I cannot even begin to track down the actual cause of. There's a Github issue here: https://github.com/jarcane/heresy/issues/37 I've tried a few naive solutions, but to be honest I really don't even know where to start because

Re: [racket-users] Racket v6.3

2015-11-27 Thread John Berry
Under OS X Yosemite I get some odd behavior with the menus. My view menu has missing items, and the windows menu does nothing at all. See picture below: ​ On Tue, Nov 24, 2015 at 6:34 AM, Ryan Culpepper wrote: > Racket version 6.3 is now available from > > http://racket-lang.org/ > > - Rac

Re: [racket-users] racket users fight for their right to colon keywords

2015-10-23 Thread John Berry
Yes, speaking personally, if I think about what I mean when I think about :keyword over #:keyword, what I really am after is the difference Alexis describes: of keywords as values vs. keywords as syntax. And looked at that way, it really just seems to be a question of different idioms, that of ol