Re: [racket-users] Re: gui widgets over canvas

2019-08-05 Thread Neil Van Dyke
Thank you, Alex.  I'll take another look at using `panel%` that way.  (I wasn't sure that would work well on all platforms, because its own implementation has special-cases for its stock subclasses, which conceivably might be necessary on some platforms.) Regarding scrollbars, I might end up a

Re: [racket-users] Here are many examples for learning Racket for new folks

2019-08-05 Thread Tim Meehan
SchemeWiki has SICP solutions as well , and so do many others (Eli Bendersky was another guy I had in my collection of links). I'll also give another thumbs up for Exercism.io (especially "timotheosh," a mentor there who really pushed me to write be

Re: [racket-users] finding the expander at run-time

2019-08-05 Thread Jesse Alama
On 5 Aug 2019, at 13:16, Dmitry Pavlov wrote: Your task reminds me of the one I had some time ago, and the found solution is still used to this day. You can see the old thread here: https://groups.google.com/forum/#!msg/racket-users/ATXEyp-4AJA/x0KHbeOhdFwJ I am not sure it is compatible righ

[racket-users] Re: gui widgets over canvas

2019-08-05 Thread Alex Harsanyi
I can think of two options which only use the functionality that is currently available in the racket GUI library: One option is to use a `pasteboard%` instead of the `canvas%` and use an `editor-snip%` for the text input, with the snip being moved where you need it. This solution will be limite

[racket-users] Re: DrRacket2?

2019-08-05 Thread Stephen De Gabrielle
Thanks. On Monday, August 5, 2019 at 1:14:54 PM UTC+1, tbrooke wrote: > > Martin at nextJournal was looking into it but got distracted so I will try > to post a reminder - they have Clojure and supposedly they can support any > language via bash and/or Docker > > I agree nextjournal or not note

Re: [racket-users] Re: Alternative UI toolkits

2019-08-05 Thread Stephen De Gabrielle
Sorry, I meant whatever is used to make Visual Studio Code, and whatever the Mozilla equivalent is. s. On Monday, August 5, 2019 at 6:07:34 PM UTC+1, Neil Van Dyke wrote: > > XUL itself is deprecated/dead. There might be an interesting (but > niche) Racket opportunity with WebExtensions, and y

Re: [racket-users] Scribble text included out of order

2019-08-05 Thread Sam Tobin-Hochstadt
What's happening here is that Scribble is designed around sections as the primary document organization, and it treats everything in "testmain.scrbl" as being in the initial section, and then adds an additional section for "testsect.scrbl". If you put `@section{}` on a line before "bar bar" the you

Re: [racket-users] Re: Alternative UI toolkits

2019-08-05 Thread Neil Van Dyke
XUL itself is deprecated/dead.  There might be an interesting (but niche) Racket opportunity with WebExtensions, and you might want to wait to see how they decide WASM fits into that, and what Racket's WASM story becomes. Also, bit of gut-feel speculation... There's some odd noises/rumblings

Re: [racket-users] Re: Alternative UI toolkits

2019-08-05 Thread Stephen De Gabrielle
I was wondering about XUL and Chromium but I don’t know if they count as UI toolkits S. On Mon, 5 Aug 2019 at 11:14, Neil Van Dyke wrote: > Thank you, Roman. > > For those who don't know, `gir` potentially lets people use many of the > libraries behind the Gnome GUI desktop environment that's p

[racket-users] Racket News - Issue 13

2019-08-05 Thread Paulo Matos
Here we are for another packed issue of Racket News! https://racket-news.com/2019/08/racket-news-issue-13.html Enjoy! -- Paulo Matos -- 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] Here are many examples for learning Racket for new folks

2019-08-05 Thread Brian Adkins
On Sunday, August 4, 2019 at 7:35:00 PM UTC-4, Stephen De Gabrielle wrote: > > Awesome! > > You should post this on https://www.reddit.com/r/Racket/ the facebook > page, twitter, etc. > > s. > I don't have a reddit account; if someone else wants to post it, that's fine w/ me. Does anyone have a

[racket-users] Summer BOB 2019 Final Call for Participation (Aug 21, Berlin)

2019-08-05 Thread Michael Sperber
... and, of course, BOB makes a *great* companion for Racketfest on Aug 17! Summer BOB 2019 Conference “What happens if we simply use what’s best

[racket-users] Evaluating Scribble and Pollen for prose

2019-08-05 Thread Hendrik Boom
On Thu, Aug 01, 2019 at 11:13:53AM -0400, David Storrs wrote: > tl;dr > > When writing prose, what are the 'killer features' of Scribble that make > people choose it over any other tool? (Specifically in the context of > prose -- Scribble is unbeatable when writing Racket documentation.) > > Lea

[racket-users] Re: DrRacket2?

2019-08-05 Thread tbrooke
Martin at nextJournal was looking into it but got distracted so I will try to post a reminder - they have Clojure and supposedly they can support any language via bash and/or Docker I agree nextjournal or not notebook support would be nice and it would help with newcomers since it is so easy t

[racket-users] gui widgets over canvas

2019-08-05 Thread Neil Van Dyke
For a million-rows spreadsheet GUI widget that's based on a canvas, and wants to overlay a single normal widget like a `text-field%` at a time, over the canvas, for cell value editing... what's the best way to get that overlay to happen in Racket `gui`? One idea: in the implementation of `pane

Re: [racket-users] finding the expander at run-time

2019-08-05 Thread Dmitry Pavlov
Hello, Your task reminds me of the one I had some time ago, and the found solution is still used to this day. You can see the old thread here: https://groups.google.com/forum/#!msg/racket-users/ATXEyp-4AJA/x0KHbeOhdFwJ I am not sure it is compatible right away with what you are doing: there i

Re: [racket-users] pollen?

2019-08-05 Thread bruno cuconato
hi Hendrik, you might want to try https://groups.google.com/forum/#!forum/pollenpub for pollen-related queries -- bruno cuconato (on mobile) On Mon, Aug 5, 2019, 05:12 Hendrik Boom wrote: > On Sun, Aug 04, 2019 at 02:17:33AM -0700, Simon Schlee wrote: > > I have not completely read this threa

Re: [racket-users] Re: Alternative UI toolkits

2019-08-05 Thread Neil Van Dyke
Sorry, typo: I meant "HUD/AR" as in "head-up display and augmented reality" (and also VR). -- 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

Re: [racket-users] Re: Alternative UI toolkits

2019-08-05 Thread Neil Van Dyke
Thank you, Roman. For those who don't know, `gir` potentially lets people use many of the libraries behind the Gnome GUI desktop environment that's popular on GNU/Linux and other places.  It does FFI to the GObject object system that backs those libraries, and perhaps also uses the metadata no

[racket-users] Re: Alternative UI toolkits

2019-08-05 Thread Roman Klochkov
https://github.com/Kalimehtar/gir суббота, 3 августа 2019 г., 16:42:55 UTC+5 пользователь Stephen De Gabrielle написал: > > Hi > > Has anyone done any work on using racket with other UI toolkits? > > I don’t think so but I thought it was worth asking - just in case. > > Stephen > -- > > -

Re: [racket-users] drracket notebook mode and ipython/jupyter (Was: DrRacket2?)

2019-08-05 Thread Stephen De Gabrielle
Hi Neil, I raised 'Make an RFC for Notebook mode in DrR or Jypyter. #100 ' I raised it because it seems like notebook mode support is important in any new language. I *think* this doubly true for LOP where the intent is to have multiple interopera