[racket-users] [racket users] module question

2019-08-06 Thread Kevin Forchione
"X=~a~%" X)) Apparently, as I understand it, I’m already nesting modules within the #lang racket. But I’m not sure how to require A from within B in this situation. Kevin -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubs

[racket-users] [racket users] Macro literal "|"

2020-02-03 Thread Kevin Forchione
or less the idea of “or” or “alternate”? Thanks! Kevin -- 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

[racket-users] [racket users] Generics question

2020-03-03 Thread Kevin Forchione
B '(x y z)) Thanks, Kevin -- 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

[racket-users] [racket users] %app question

2020-08-13 Thread Kevin Forchione
oo is not a procedure then (foo 1 2 3) would redirect to (do-this foo 1 2 3) where do-this is defined? Any help is appreciated. Thanks! Kevin -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop r

[racket-users] [racket users] Naming conventions

2020-09-18 Thread Kevin Forchione
/image circle function? Or suppose I have symbols that are never bound to anything? Kevin -- 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

[racket-users] Racket users video meetup

2020-11-14 Thread Stephen De Gabrielle
Racket users video meetup 28 November 30 Minutes - 11am Pacific Time - 7pm UK time - 8pm CET https://gather.town/app/wH1EDG3McffLjrs0/racket-users (Google Chrome only) (Chosen because it allows people to break of into groups if required) Agenda - lightning talks(<5 min) - w

[racket-users] [racket users] list question

2021-02-25 Thread Kevin Forchione
pping have a formal name? Thanks! Kevin -- 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 discus

[racket-users] [racket users] Struct property question

2019-03-01 Thread Kevin Forchione
not sure how the #:property kw made this transformation, nor what it means in terms of the uses of #:property. Any insight is appreciated. Kevin -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop rec

[racket-users] [Racket-users] IMAP with racket

2017-02-11 Thread Anthony Carrico
to Racket: https://github.com/lefcha/imapfilter -- Anthony Carrico -- 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.

[racket-users] [racket users] make-posn question

2019-08-06 Thread Kevin Forchione
function didn’t like it. Apparently it wants a specific post? Kevin -- 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...@googlegrou

Re: [racket-users] [racket users] module question

2019-08-06 Thread Sorawee Porncharoenwase
dules within the > #lang racket. But I’m not sure how to require A from within B in this > situation. > > Kevin > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users" group. > To unsubscribe from this group and stop recei

[racket-users] Re: [racket users] module question

2019-08-07 Thread Luis Sanjuán
ot;X=~a~%" X)) > > Apparently, as I understand it, I’m already nesting modules within the > #lang racket. But I’m not sure how to require A from within B in this > situation. > > Kevin -- You received this message because you are subscribed to the Google Groups "

Re: [racket-users] [racket users] module question

2019-08-07 Thread Kevin Forchione
> On Aug 6, 2019, at 4:06 PM, Sorawee Porncharoenwase > wrote: > > (module B racket > (require (submod ".." A)) > (printf "X=~a~%" X)) Why doesn’t printf display anything ? Kevin -- You received this message because you are subscribed to the G

Re: [racket-users] [racket users] module question

2019-08-07 Thread Kevin Forchione
racket (require (submod ".." A)) (printf "B.X=~a~%" X)) (require ‘B) Kevin -- 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] [racket users] Macro literal "|"

2020-02-03 Thread Philip McGrath
enient literal to work with is there an alternative others have used > that represents more or less the idea of “or” or “alternate”? > > Thanks! > > Kevin > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users" group. > To un

Re: [racket-users] [racket users] Macro literal "|"

2020-02-03 Thread Stephen Chang
ers have used that > represents more or less the idea of “or” or “alternate”? > > Thanks! > > Kevin > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users" group. > To unsubscribe from this group and stop receiving

Re: [racket-users] [racket users] Generics question

2020-03-03 Thread Jon Zeppieri
r) #:transparent #:methods gen:foo [(define/generic generic-foo do-foo) (define (do-foo foo) (printf "other=~a ~a" (A-this foo) (generic-foo (A-other foo]) - Jon -- You received this message because you are subscribed to the Google Groups "

Re: [racket-users] [racket users] Generics question

2020-03-03 Thread Kevin Forchione
n docs pulls up only the multimethod docs and the examples don’t work from racket/generic. Kevin -- 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 rac

Re: [racket-users] [racket users] Generics question

2020-03-03 Thread Jon Zeppieri
ference/struct-generics.html?q=define%2Fgeneric#%28form._%28%28lib._racket%2Fgeneric..rkt%29._define%2Fgeneric%29%29 - Jon -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails f

Re: [racket-users] [racket users] Generics question

2020-03-03 Thread Kevin Forchione
e-generic” instead of “define/generic”! Well, that explains my confusion and opens up more options as well. :) Kevin -- 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

[racket-users] [racket users] struct #:methods question

2020-04-20 Thread Kevin Forchione
Hi guys, How do you return an instance of the structure type from the struct’s #:methods? This is would seem to be a common situation, but it has me stumped. Kevin -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from

Re: [racket-users] [racket users] %app question

2020-08-13 Thread Jens Axel Søgaard
ot; (postpones) the evaluation of its arguments. This can simply we be removed, if you don't need it. More details here: https://github.com/soegaard/bracket/blob/master/bracket/bracket.rkt#L80 /Jens Axel https://racket-stories.com -- You received this message because you are subscribed to

[racket-users] Re: [racket users] %app question

2020-08-13 Thread gfb
t; In other words, if foo is not a procedure then (foo 1 2 3) would redirect > to (do-this foo 1 2 3) where do-this is defined? > > Any help is appreciated. > > Thanks! > > Kevin -- You received this message because you are subscribed to the Google Groups "R

Re: [racket-users] [racket users] %app question

2020-08-14 Thread Kevin Forchione
r/bracket/bracket.rkt#L80> Thanks! With a little modification that does the trick! Kevin -- 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

[racket-users] [racket users] describe variant issue?

2020-09-15 Thread Kevin Forchione
t; fixnum-integer But when I run it under Dr Racket 7.8 [cs] it returns ‘simple for this, as well as for 10.3 as well as pi, 2/3, and 0+1i. Any ideas why this is happening? Thanks! Kevin -- You received this message because you are subscribed to the Google Groups "Racket Users" gr

[racket-users] [racket users] Macros sharing data?

2020-10-21 Thread Kevin Forchione
"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/5425EC92-110D-47B4-BCFB-D2B6C09BBF32%40gmail.com.

[racket-users] [racket users] Pollen tag question

2020-10-29 Thread Kevin Forchione
before A is preserved. Kevin -- 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

Re: [racket-users] Racket users video meetup

2020-11-15 Thread Stephen De Gabrielle
tainly appears to work fine with Firefox. Apologies if I’m > misunderstanding something about your message. > > John > > > On Nov 14, 2020, at 15:57, Stephen De Gabrielle > wrote: > > > > Racket users video meetup > > > > 28 November > > 30 Minutes

[racket-users] Racket users video meetup NOW!

2021-02-06 Thread Stephen De Gabrielle
https://gather.town/app/wH1EDG3McffLjrs0/racket-users Racket users video meetup brought to you by Stephen De Gabrielle and Sam Phillips - Feb. 6, 2021 at 8pm CET, via Gather Town <https://tools.us18.list-manage.com/track/click?u=2d4bcd7724e2a351c8e594233&id=b05d9f50cb&e=94512116cc&

Re: [racket-users] [racket users] list question

2021-02-25 Thread Norman Gray
UK -- 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.googl

Re: [racket-users] [racket users] list question

2021-02-25 Thread Kevin Forchione
(sub1 cnt)) (loop n (cons (map (λ (lst) (list-ref lst (modulo n (length lst lsts) acc))])) (loop (cond [(procedure? len) (apply len (map length lsts))] [else len]))) Kevin -- You received this message because you are subscribed to the Google Groups

[racket-users]

2016-12-19 Thread Shu-Hung You
u 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. For more options, visit https://groups.google.com/d/optout.

[racket-users] ?

2017-07-16 Thread Masto Fine
de definitions , j'essaye de probgramme une strucure a plusieur champs ( une serie de lignes ) et le logiciel me repond toujours expected nothing after the field name but found one extra part , quel est le probleme ? -- You received this message because you are subscribed to the Google G

[racket-users]

2015-05-01 Thread Leif Andersen
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. For more options, visit https://groups.google.com/d/optout.

[racket-users] ..

2021-06-25 Thread Don Green
.. -- 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 vi

[racket-users]

2019-09-11 Thread Stephen De Gabrielle
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-KxKuKjrqZUqT%2Bbn9hLibD

[racket-users] [Racket Users] Macros and literals question

2018-09-15 Thread Kevin Forchione
"Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.

[racket-users] [meta] Tags for racket-users posts?

2019-01-16 Thread David Storrs
mated) easy. I don't know that it's critical for racket-users, but I thought I'd mention it in case other people like the idea. Some useful tags might be things like: [meta] Here's an idea that relates to the racket-users list itself [racketcon] RacketCon 8 videos release

Re: [racket-users] [racket users] Struct property question

2019-03-01 Thread Ben Greenman
ived 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. For more options, visit https://groups.google.com/d/optout.

Re: [racket-users] [Racket-users] IMAP with racket

2017-02-11 Thread Huang, Ying
et to filter the email in client side. Because I don't familiar with lua, so Racket is a better tool for me to customize at this level. Best Regards, Huang, Ying -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscri

Re: [racket-users] [Racket-users] IMAP with racket

2017-02-11 Thread Tim Hanson
Bravo! This parallels my motivation. I'm kind of a beginner in Racket, but it is powerful, portable, elegant, well-documented, and well-supported, so I keep dabbling ... -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubs

Re: [racket-users] [Racket-users] IMAP with racket

2017-02-11 Thread Tim Hanson
u 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. For more options, visit https://groups.google.com/d/optout.

Re: [racket-users] [racket users] make-posn question

2019-08-06 Thread Nadeem Abdul Hamid
tion. What’s the best library to > require for these? I tried making my own struct and was surprised that the > function didn’t like it. Apparently it wants a specific post? > > Kevin > > -- > You received this message because you are subscribed to the Google Groups > "R

Re: [racket-users] [racket users] struct #:methods question

2020-04-20 Thread Jon Zeppieri
an instance of the structure type from the struct’s > #:methods? This is would seem to be a common situation, but it has me stumped. > > Kevin > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users" group. > To unsubscrib

Re: [racket-users] [racket users] struct #:methods question

2020-04-21 Thread David Storrs
ta, and allows for contracts on individual fields and enforcement of relationships between fields. > > > -- > > You received this message because you are subscribed to the Google > Groups "Racket Users" group. > > To unsubscribe from this group and stop receiving

Re: [racket-users] [racket users] describe variant issue?

2020-09-15 Thread Sam Tobin-Hochstadt
t; > -- > 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

Re: [racket-users] [racket users] describe variant issue?

2020-09-17 Thread Kevin Forchione
s this still a work in progress? Will it be left up to the code to determine types through predicate checking? Thanks! Kevin -- 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

Re: [racket-users] [racket users] describe variant issue?

2020-09-17 Thread Sam Tobin-Hochstadt
>> (struct->vector 5) > > '#(struct:simple …) > > > Is this going to be the go-forward stance for Racket? Or is this still a work > in progress? Will it be left up to the code to determine types through > predicate checking? > > Thanks! > > Kevin

Re: [racket-users] [racket users] describe variant issue?

2020-09-17 Thread Matthew Flatt
s still a > work in progress? Will it be left up to the code to determine types through > predicate checking? > > > > Thanks! > > > > Kevin > > > > -- > > You received this message because you are subscribed to the Google Groups > "Rac

[racket-users] [racket users] raise-user-error question

2020-09-19 Thread Kevin Forchione
eption-handler loop call-in-empty-metacontinuation-frame call-with-values call-in-empty-metacontinuation-frame body of "/Users/lysseus/Library/Mobile Documents/com~apple~CloudDocs/Racket/utils/conspiracy/error-test.rkt" temp35_0 run-module-instance! > Is thi

[racket-users] [racket users] scribble using @ as text?

2020-09-24 Thread Kevin Forchione
. Any help is appreciated! Kevin -- 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

Re: [racket-users] [racket users] Macros sharing data?

2020-10-21 Thread Ben Greenman
ibed 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/

Re: [racket-users] [racket users] Macros sharing data?

2020-10-21 Thread Kevin Forchione
yntax-parameter mval 1) (define-syntax (foo stx) (syntax-parse stx [(_ m:number n:number) #'(syntax-parameterize ([mval m]) (bar n))])) (define-syntax (bar stx) (syntax-parse stx [(_ n) #'(* (syntax-parameter-value mval) n)])) (foo 3 5) Kevin -- You received th

Re: [racket-users] [racket users] Macros sharing data?

2020-10-21 Thread Kevin Forchione
(foo 3 5) It dawned on me that since both computations take place at runtime I can simply use a parameter! Kevin -- 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 a

Re: [racket-users] [racket users] Pollen tag question

2020-10-29 Thread Sorawee Porncharoenwase
tag elements will only > return a single space, although it preserves the spacing between C and D. > > Is that the expected result? It seems counter intuitive, as the spacing > before A is preserved. > > Kevin > > -- > You received this message because you are subscribed

Re: [racket-users] [racket users] Pollen tag question

2020-10-29 Thread Sorawee Porncharoenwase
.Is thes intentional? >> >> For example: Racket 7.8 [cs], latest pollen version: >> >> ◊vb{ A B >> C D} >> >> Regardless of how many spaces are before the C, the tag elements will >> only return a single space, although it preserves th

Re: [racket-users] [racket users] Pollen tag question

2020-10-30 Thread Kevin Forchione
ot;C D") Now if I add the vb as you’ve done, but don’t use the tag: #lang pollen ◊(define (vb . s) s) A B C D I get this: '(root "A B" (br) " " "C D") Kevin -- 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/2202E524-AAC0-44D3-9B4B-C49216733900%40gmail.com.

Re: [racket-users] [racket users] Pollen tag question

2020-10-30 Thread Kevin Forchione
uot; " "A B" "\n" " " "C D") Ievin -- 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, sen

Re: [racket-users] [racket users] Pollen tag question

2020-10-30 Thread Matthew Butterick
first string came from the opening { line, it is not prepended with an indentation" https://docs.racket-lang.org/scribble/reader.html?q=spaces%20newlines#%28part._.Spaces__.Newlines__and_.Indentation%29 -- You received this message because you are subscribed to the Google Groups "Ra

Re: [racket-users] [racket users] Pollen tag question

2020-10-30 Thread Kevin Forchione
sier than I’d thought! Is this mentioned anywhere in the pollen tutorials? I must have missed it. Kevin T -- 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

Re: [racket-users] [racket users] Pollen tag question

2020-10-30 Thread Matthew Butterick
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/D63442C4-6339-420A-903D-1547BD013E19%40mbtype.com.

[racket-users] Re: Racket users video meetup NOW!

2021-02-06 Thread Stephen De Gabrielle
https://www2.ccs.neu.edu/racket/pubs/scheme04-bo.pdf On Sat, Feb 6, 2021 at 7:07 PM Stephen De Gabrielle wrote: > https://gather.town/app/wH1EDG3McffLjrs0/racket-users > > Racket users video meetup brought to you by Stephen De Gabrielle and Sam > Phillips - Feb. 6, 2021 at 8pm CET

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-15 Thread Philip McGrath
> > Kevin > > -- > 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. > For more optio

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-16 Thread Kevin Forchione
ed symbol has an associated procedure? Kevin > > -- > 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...@googleg

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-16 Thread Matthew Butterick
'not-bound-to-proc)) -- 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. For more options, visit https://groups.google.com/d/optout.

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-17 Thread Kevin Forchione
s, and I’m not sure what the solution to that paradox is, apart from perhaps building a symbol/function hash table as part of a define. Presumably Racke does something like that for eva & namespaces, but I’m surprised there isn’t a symbol->procedure function. Kevin -- You re

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-17 Thread Philip McGrath
; table as part of a define. Presumably Racke does something like that for > eva & namespaces, but I’m surprised there isn’t a symbol->procedure > function. > > Kevin > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-17 Thread Matthew Butterick
and thus certain aspects seem more complicated than they need to. -- 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...@goo

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-17 Thread Alexis King
ce/Locationsvariable-reference.html#%28form._%28%28quote._~23~25kernel%29._~23~25variable-reference%29%29 [5]: http://docs.racket-lang.org/reference/Namespaces.html#%28def._%28%28quote._~23~25kernel%29._variable-reference-~3enamespace%29%29 -- You received this message because you are subscribed to

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-17 Thread Kevin Forchione
mbols for functions and decided to use some macros when working with the tables. Probably more than curiosity as I can foresee a need to retrieve a value from a table and either apply it, which means somehow getting at the binding. Kevin -- You received this message because you are subscribed

Re: [racket-users] [Racket Users] Macros and literals question

2018-09-17 Thread Matthew Butterick
more notational convenience, you might also look at the `read-cdot` parameter and `#%dot` identifier, which can expand `table.key` to something like `(hash-ref table 'key)`. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To uns

Re: [racket-users] [meta] Tags for racket-users posts?

2019-01-16 Thread Neil Van Dyke
nouncements? IMHO, announcements of new packages on "racket-users"  are great! And also announcements of noteworthy new versions of packages previously announced (e.g., you added major new functionality since last announced), or maybe it's simply been a long time since a noteworthy packa

Re: [racket-users] [meta] Tags for racket-users posts?

2019-01-16 Thread Stephen De Gabrielle
fic conventions, and they don't know > what that's about, and they might be afraid of doing it wrong, and they > might not want to stop and learn those conventions. (Not everyone is > like this, but many are.) > > > Incidentally, is it okay to post module announcements?

Re: [racket-users] [meta] Tags for racket-users posts?

2019-01-16 Thread David Storrs
nd wants to post, and then >> they see apparent extra list-specific conventions, and they don't know >> what that's about, and they might be afraid of doing it wrong, and they >> might not want to stop and learn those conventions. (Not everyone is >> like this,

[racket-users] [racket users] make-keyword-procedure follow-up

2019-08-29 Thread Kevin Forchione
4 5 #:a 42 #:c 52) ;=> application: procedure does not expect an argument with given keyword ; procedure: h ; given keyword: #:z ; arguments...: (f 2 3 4 5 #:z 42 #:c 52) Kevin -- You received this message because you are subscribed to the Google Groups "Racket Users" group.

[racket-users] racket users] make-keyword-procedure follow-up

2019-08-29 Thread Kevin Forchione
t c (keyword-apply/filter h kw kv args))) (def (f ((a 0)(b 0)) n p . ns) (list kw kv a b n p ns (keyword-apply/filter g kw kv ns))) Kevin -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receivin

[racket-users] Test message sent to racket-users@googlegroups.com

2020-03-20 Thread 'John Clements&#x27; via Racket Users
Please ignore, thanks. -- 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

Re: [racket-users] [racket users] raise-user-error question

2020-09-19 Thread Robby Findler
exn-source-locs >.../private/arrow-val-first.rkt:486:18 >.../private/debug.rkt:362:2: error-display-handler/stacktrace >.../private/debug.rkt:341:4: debug-error-display-handler >default-uncaught-exception-handler >loop >call-in-empty-metacontinuation-frame &

Re: [racket-users] [racket users] scribble using @ as text?

2020-09-24 Thread Sorawee Porncharoenwase
ribed 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/81

Re: [racket-users] [racket users] scribble using @ as text?

2020-09-24 Thread Jay McCarthy
ssage 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.co

Re: [racket-users] [racket users] scribble using @ as text?

2020-09-24 Thread Jay McCarthy
d a sentence like: The @ >> is used in a scribble command. I’m sure I’m overlooking something very >> basic, since the @ is referenced all over scribble documentation. >> >> Any help is appreciated! >> >> Kevin >> >> -- >> You received this message

Re: [racket-users] [racket users] scribble using @ as text?

2020-09-24 Thread Sorawee Porncharoenwase
re I’m overlooking something very >> basic, since the @ is referenced all over scribble documentation. >> >> Any help is appreciated! >> >> Kevin >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Racke

[racket-users] [ANNOUNCE] Racket Users Video Meetup ☎️ 📺

2020-12-28 Thread Sam Phillips
*Racket Users Video Meetup ☎️ 📺* Saturday 2021/01/09 :: 8pm CET / 7pm UK / 11am Pacific https://gather.town/app/wH1EDG3McffLjrs0/racket-users *Agenda* - What have you been working on? - Paper for discussion: >Macros for Domain-Specific Languages by MICHAEL BALLANTYNE, ALE

[racket-users] stumped

2017-12-13 Thread Stephen De Gabrielle
they can be passed via a callback. I'd appreciate any suggestions! * https://www.jetbrains.com/help/clion/navigation-bar.html Kind regards, Stephen ​ -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group

[racket-users] racket

2018-01-02 Thread Sanjeeb Sinkhada
ived 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. For more options, visit https://groups.google.com/d/optout.

[racket-users] racket2nix

2018-02-11 Thread stewart mackenzie
se 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. For more options, visit https://groups.google.com/d/optout.

[racket-users] bookmarks?

2018-03-31 Thread Geoffrey Knauth
marks ever considered for DrRacket? -- 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. For more options, visit https:/

[racket-users] sxml:document

2018-05-13 Thread N. Raghavendra
andra Research Institute, http://www.hri.res.in/ -- 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. For more options, visit https://groups.google.com/d/optout.

[racket-users] Microworlds

2018-12-06 Thread Matt Jadud
re and within reach. I thought I'd float it to this list, however, so that if there's any "we tried that," or "you might look at" type suggestions, I could get those before I start sinking time into this exploration. Cheers, Matt -- You received this message because y

[racket-users] hackernews

2018-12-13 Thread Neil Van Dyke
e also other strategic targets for the RACKET EVANGELISM STRIKE FORCE operator or cell, and I recall Eli Barzilay and others active on a lot of them years ago, but HN might be first priority right now.) -- You received this message because you are subscribed to the Google Groups "Racket Use

[racket-users] Haskell

2019-05-14 Thread Josh Rubin
o 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/d2961559-f8af-c6d0-15

[racket-users] R7RS

2019-05-24 Thread Neil Van Dyke
d 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/4a206754-e6f8-b44d-e40f-544fc

[racket-users] nannou

2019-06-10 Thread Neil Van Dyke
A platform for multimedia artist programmers is using Rust.  I think it'd be interesting to see how what has been and could be done in Racket (including DSLs) could compare.  https://nannou.cc/ -- You received this message because you are subscribed to the Google Groups "Racket Us

[racket-users] leetcode

2019-06-16 Thread Neil Van Dyke
, I micro-optimized a bit more than I had to (e.g., avoiding redundant branching in imagined target code), and I didn't assume allocations/GC were free. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from

[racket-users] datatypes

2019-07-16 Thread Kevin Forchione
e I may be overlooking something :) Kevin -- 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 disc

[racket-users] Ping

2016-01-29 Thread Michael E. Burke
I haven't received mail since late November. Is this still an active mailing list? Mike Burke -- 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

[racket-users] ispell

2016-02-25 Thread Jos Koot
Hi, Trying to check spelling in DrRacket for a scrbl document, I get the message that aspell or ispell cannot be found. Where can I find it? How to install it? I work with Windows 7. Thanks, Jos -- You received this message because you are subscribed to the Google Groups "Racket Users&q

[racket-users] Segfault

2016-02-29 Thread Felipe Oliveira Carvalho
147 frame #10: 0x0001000d824a Racket`scheme_main_stack_setup + 330 frame #11: 0x0001000d80f3 Racket`scheme_main_setup + 35 frame #12: 0x00010e2b a.out`main(argc=1, argv=0x7fff5fbff8e8) + 59 at minimal.c:18 frame #13: 0x7fff96bbd5ad libdyld.dylib`start + 1 f

[racket-users] Hello

2016-04-14 Thread Rusi Mody
. I am interested in creating environments such as python's numpy, ipython etc. Is it possible/easy to build on (steal!) DrRacket environment to make - new REPLs - new environments -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To u

[racket-users] WurstfagottCon

2016-06-22 Thread 'John Clements&#x27; via Racket Users
approximately like someone blowing through a comb. It’s also nicknamed the Sausage Basoon, or “Wurstfagott”. Can we rename our conference to WurstfagottCon? John -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this grou

  1   2   3   4   5   6   7   8   9   10   >