Re: [racket-users] Anyone successfully filtering Italian spam?

2021-12-01 Thread Aidan Gauland
I am on Fastmail, which uses SpamAssassin (their methodology is detailed here ), and after many many months of training it on this loon's spam messages, it is finally /mostly/ filtering correctly.  Very few legitimate

[racket-users] Retro 3D maze with Pict?

2020-04-19 Thread Aidan Gauland
Would it be feasible to use Pict to create a very simplistic rendering of a first-person perspective of a 2D maze, in the style of Scarab of Ra for the old B Macs? -- You received this message because you are subscribed to the Google

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

2019-08-06 Thread Aidan Gauland
That would be Electron , for which I think Racket would be a /really/ awkward fit, but if anyone has a crack at it, I'd be very interested to see the result. On 6/08/19 9:06 AM, Stephen De Gabrielle wrote: > Sorry, I meant whatever is used to make Visual Studio Code, and

Re: [racket-users] Re: SQL DB tooling

2019-03-25 Thread Aidan Gauland
eddit.com/r/Racket/comments/akob56/ann_north_database_migrations/ > > Alex. > > > On Saturday, March 23, 2019 at 12:40:48 PM UTC+8, Aidan Gauland wrote: > > I see that Racket has a couple of nice libraries for talking to SQL > databases <https://docs.racket-lang.org/d

[racket-users] SQL DB tooling

2019-03-22 Thread Aidan Gauland
r languages (see <http://sequel.jeremyevans.net/rdoc/files/doc/migration_rdoc.html> and <https://hexdocs.pm/phoenix/ecto.html>  for examples).  Is there anything like this for Racket, or even some language-agnostic, CLI tool that does the same thing? Thanks, Aidan Gauland -- You received this

Re: [racket-users] lexer-parser approach in Racket [was the list of languages made with racket [Hacker News]]

2019-03-01 Thread Aidan Gauland
On 2/03/19 3:27 AM, Matthias Felleisen wrote: >> On Mar 1, 2019, at 2:15 AM, Aidan Gauland wrote: >> >> On 24/02/19 12:08 PM, Matthias Felleisen wrote: >>> 2. The means of implementation in Racket are radically different from a >>> lexer-pars

Re: [racket-users] lexer-parser approach in Racket [was the list of languages made with racket [Hacker News]]

2019-02-28 Thread Aidan Gauland
On 24/02/19 12:08 PM, Matthias Felleisen wrote: > 2. The means of implementation in Racket are radically different from a > lexer-parser approach. Wait, does this mean that the /Beautiful Racket/ book is leading me down the wrong path?  I'm in the middle of the bf chapter

[racket-users] Re: FrTime basics

2015-08-14 Thread Aidan Gauland
On 13/08/15 22:55, Aidan Gauland wrote: Are there any non-graphical FrTime demos? I'm trying to figure out how to define your own behaviors, and just going by the manual http://docs.racket-lang.org/frtime/, it seems rather imperative in nature, which is not what I understood it to be from

[racket-users] FrTime basics

2015-08-13 Thread Aidan Gauland
I hit its limitations, still being in the early states? Or have I simply been tripped up by gaps in the documentation? Regards, Aidan Gauland -- You received this message because you are subscribed to the Google Groups Racket Users group. To unsubscribe from this group and stop receiving

[racket-users] Re: Defining contracts sanely

2015-06-27 Thread Aidan Gauland
On 23/06/15 00:00, Robby Findler wrote: On Mon, Jun 22, 2015 at 2:43 AM, Aidan Gauland: If this does what you want, it’s fine, but the define/contract is probably unnecessary, and (define fish-freshness/c (flat-named-contract ‘fish-freshness/c (lambda (x) (not (eq

[racket-users] Re: Defining contracts sanely

2015-06-22 Thread Aidan Gauland
On 22/06/15 04:26, Alexander D. Knauth wrote: On Jun 21, 2015, at 5:41 AM, Aidan Gauland wrote: Say I want to define a flat contract for the freshness field of my fish class, so I define a contract for it like so: (define/contract fish-freshness/c (- any/c boolean?) (flat-named

[racket-users] Defining contracts sanely

2015-06-21 Thread Aidan Gauland
))) Am I barking up the wrong tree here, or is this perfectly sensible? Regards, Aidan Gauland -- 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

Re: [racket-users] Inheritance problem with private methods

2015-04-23 Thread Aidan Gauland
) (displayln Hello from sub class) (another-method)) Because `another-method` is a private method, send doesn’t know about it (I think; I haven’t used private methods much). On Apr 23, 2015, at 5:41 AM, Aidan Gauland aidal...@slingshot.co.nz wrote: I get a method-lookup failure when I try