[racket-users] [ANN] fast-sequence

2020-10-15 Thread Anna Bolotina
Hi,

I'm pleased to announce fast-sequence, a package providing a set of 
efficient and expressive macros for fast sequences.

The provided macros have high performance when used in a for (or its 
variants) clause. The best performance is provided when the macros are 
applied to fast sequences, such as applications of in-list, in-range, etc. 
The aim of the package is to make it easier to define new fast sequence 
forms.

Here is the documentation:

https://docs.racket-lang.org/fast-sequence/index.html

Please write to me if operations from this package are useful for your 
work. Feedback is welcome!

Anna

-- 
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 racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/4664e66c-9163-4a62-936d-ad076cfefc86n%40googlegroups.com.


Re: [racket-users] Racket PPA also updated to v7.8

2020-10-15 Thread Stephen De Gabrielle
Thanks Asumu
Much appreciated!

S.


On Thu, 15 Oct 2020 at 20:56, Asumu Takikawa  wrote:

> On 2020-08-03 09:35:16 -0400, 'John Clements' via Racket Users wrote:
> > Racket version 7.8 is now available from
> >
> > https://racket-lang.org/
>
> This is quite delayed, but the Ubuntu PPA has been updated to 7.8 as
> well. Ubuntu version 20.10 (Groovy) is newly supported while 19.10
> (Eoan) is phased out (will remain on Racket 7.7).
>
> Sorry for the delay this time. As usual please report any issues on
> github:
>
>   https://github.com/takikawa/racket-ppa
>
> Cheers,
> Asumu
>
> --
> 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 racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/racket-users/20201015195644.7hjphtup6xuup35n%40nixos
> .
>
-- 


-- 
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 racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/CAGHj7-JL7C5XtuTX7rvhDCdhQPQoNoxvVTTLLE4WOM17FQWoYg%40mail.gmail.com.


[racket-users] Racket PPA also updated to v7.8

2020-10-15 Thread Asumu Takikawa
On 2020-08-03 09:35:16 -0400, 'John Clements' via Racket Users wrote:
> Racket version 7.8 is now available from
> 
> https://racket-lang.org/

This is quite delayed, but the Ubuntu PPA has been updated to 7.8 as
well. Ubuntu version 20.10 (Groovy) is newly supported while 19.10
(Eoan) is phased out (will remain on Racket 7.7).

Sorry for the delay this time. As usual please report any issues on
github:

  https://github.com/takikawa/racket-ppa

Cheers,
Asumu

-- 
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 racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/20201015195644.7hjphtup6xuup35n%40nixos.


Re: [racket-users] How hard is it to add @-exp support to racket:text%?

2020-10-15 Thread Robby Findler
If the buffer contains #"lang scribble/base" at the start, then it should
"just work", no?

Robby

On Thu, Oct 15, 2020 at 8:19 AM Christopher Lemmer Webber <
cweb...@dustycloud.org> wrote:

> This isn't super high priority... but Morgan and I are working on the
> first mini virtual worlds demo for Spritely, and I've put the extremely
> nice racket:text% to use for code editing:
>
>   https://dustycloud.org/gfx/goodies/fairy-forest-ui-mockup2.png
>
> Since there's so much text, it would be even better if I could enable
> at-exp support.  It doesn't look like the defaults for the racket:text%
> editor support it nicely though.
>
> Just out of curiousity, has anyone already done the work of figuring out
> how to add such functionality to make the scribble-style at-exp
> highlighting/indentation/etc look nice with racket:text%?  If not I can
> just put this off and not provide that feature, but it would be nicer
> with it I think.
>
>  - Chris
>
> --
> 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 racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/racket-users/875z7b4oi3.fsf%40dustycloud.org
> .
>

-- 
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 racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/CAL3TdOO_KX5UuceaW6akox8kW_21yxdTfpw84A2TU4Gb%2BBKa%3Dg%40mail.gmail.com.


[racket-users] How hard is it to add @-exp support to racket:text%?

2020-10-15 Thread Christopher Lemmer Webber
This isn't super high priority... but Morgan and I are working on the
first mini virtual worlds demo for Spritely, and I've put the extremely
nice racket:text% to use for code editing:

  https://dustycloud.org/gfx/goodies/fairy-forest-ui-mockup2.png

Since there's so much text, it would be even better if I could enable
at-exp support.  It doesn't look like the defaults for the racket:text%
editor support it nicely though.

Just out of curiousity, has anyone already done the work of figuring out
how to add such functionality to make the scribble-style at-exp
highlighting/indentation/etc look nice with racket:text%?  If not I can
just put this off and not provide that feature, but it would be nicer
with it I think.

 - Chris

-- 
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 racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/875z7b4oi3.fsf%40dustycloud.org.