Skip to content

Instantly share code, notes, and snippets.

@LiberalArtist
LiberalArtist / $$README.md
Last active August 31, 2023 11:56
`raco dist` Demo

Inspired by .

@LiberalArtist
LiberalArtist / .gitignore
Last active February 15, 2023 12:22
Fibonacci Optimization in Racket
*~
\#*
.\#*
.DS_Store
compiled/
/doc/
@LiberalArtist
LiberalArtist / .gitignore
Last active November 6, 2022 02:31
Racket release branch diagram
*~
\#*
.\#*
.DS_Store
compiled/
/doc/
@LiberalArtist
LiberalArtist / .gitignore
Last active December 4, 2021 17:01
racket-tethered-apps-dir-demo
/workspace/
/layer/
*~
\#*
.\#*
.DS_Store
compiled/
/doc/
@LiberalArtist
LiberalArtist / README.md
Last active May 7, 2020 04:47
Breaking Cyclic Dependencies with Racket's Units

Breaking Cyclic Dependencies with Racket's Units

This is a responce to a [question] posted by James Platt to the racket-users email list.

Start with [single-file.rkt] for an example, then see how the example can be split into multiple files with the entry point [main.rkt].

@LiberalArtist
LiberalArtist / README.md
Last active February 22, 2020 19:49
application-preferences-handler-issue-demo
@LiberalArtist
LiberalArtist / kw-pass-through-lambda.rkt
Last active August 30, 2019 08:25
"Passing through" keyword arguments in Racket
#lang racket
;; License: Apache-2
(provide kw-pass-through-lambda
local-keyword-apply
local-kw-lst
local-kw-val-lst
(contract-out
[keyword-apply/filter
@LiberalArtist
LiberalArtist / default-lightbulb.png
Last active October 2, 2019 01:20
A Racket lightbulb for the Standard Fish Summer Competition 2019
default-lightbulb.png
@LiberalArtist
LiberalArtist / oxgarage.rkt
Created February 20, 2019 02:35
Simple OxGarage Query Script
#!/usr/bin/env racket
#lang racket/base
(require racket/file
racket/string
racket/port
net/url)
(module+ main
(require racket/cmdline)