#squintcljs search results
You can play Advent of Code on the squint and cherry playgrounds this year. Provide your token (see cookies: session after logging into adventofcode.com) to get puzzle input Squint: squint-cljs.github.io/squint/?src=gz… Cherry: squint-cljs.github.io/cherry/?src=Oz… #clojure #squintcljs #cherrycljs
The most important #squintcljs updates since March: github.com/squint-cljs/sq… #clojurescript #clojure
Here are my September and October 2025 OSS highlights and updates. blog.michielborkent.nl/oss-updates-se… Thanks for supporting my work! And perhaps see you at the Conj? #clojure #clojurescript #squintcljs #cljKondo #babashka
Snake game in Idiomorph + squint #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=KH…
Idiomorph + squint reactive example (counter + text field) with regular squint atom. 5kb gzipped. #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KH…
A mashup between reagami and webcomponents. I don't know why you would do this, but you can! #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Small tweak to #squintcljs. When using ^object type hints, assoc and assoc! compile down direct object manipulation without calling into the stdlib squint-cljs.github.io/squint/?src=KG… #clojure #clojurescript
Squint = now defaults to a deep equals implementation squint-cljs.github.io/squint/?src=Wy… #clojure #clojurescript #squintcljs
Moar squint optimizations. If objects aren't shared, we are free to mutate them, even when assoc instead of assoc! is used. squint-cljs.github.io/squint/?src=KH… #clojure #clojurescript #squintcljs
The on-render hook in reagami just got more awesome. You can now pass data from mount to update to unmount, by just returning data! #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Out of band DOM updating (manually messing with DOM elements) counter example in Reagami #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Squint CLJS now emits more performant code for assoc, assoc! and get when objects can be inferred or are type hinted using ^object #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KG…
You can't make this shit up. I wanted to implement prn (for printing EDN) in #squintcljs so I created a branch named "prn". But it turns out you can't name a file prn (or prn.extension) in Windows so Windows CI failed. Unable to create remotes/origin/prn.lock': Invalid argument
pr-str, prn, etc now print EDN instead of JSON in squint, as you can see in this beautiful draggable button demo #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Reagami now has an on-render hook that you can use to mount/update/mount a 3rd party JS component. #clojure #clojurescript #squintcljs Demo: squint-cljs.github.io/squint/?src=gz…
Reagami, my copy-pastable Reagent-like lib was ported to CLJS (minimal changes needed) and now can even run in a SCI: babashka.org/sci.configs/?g… You can also run/w regular CLJS, maybe interesting with :lite. Git repo: github.com/borkdude/reaga… #clojure #clojurescript #squintcljs
A short video about Eucalypt, a Reagent-like on Squint-cljs, that compiles down to 10kb artifacts. youtube.com/watch?v=SLnCzW… by Chris McCormick #clojure #squintcljs #clojurescript
youtube.com
YouTube
Make UIs in 10kb with "ClojureScript" and "Reagent" (Squint-cljs and...
Squint + idiomorph + event listener restoration. The example uses compile time HTML generation #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KH…
Drag-and-drop example I wrote in Reagent 9 years ago, now in Eucalypt: #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=KG…
Found a pretty nice optimization for str in #squintcljs (str "Hello: " (+ 1 2 3) nil "Dude") => `Hello: ${1 + 2 + 3 ?? ""}Dude` So str -> template string + null/undefined check. This performs much better than Array.join(''). But... is it worth it? #clojure #clojurescript
You can play Advent of Code on the squint and cherry playgrounds this year. Provide your token (see cookies: session after logging into adventofcode.com) to get puzzle input Squint: squint-cljs.github.io/squint/?src=gz… Cherry: squint-cljs.github.io/cherry/?src=Oz… #clojure #squintcljs #cherrycljs
A mashup between reagami and webcomponents. I don't know why you would do this, but you can! #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
pr-str, prn, etc now print EDN instead of JSON in squint, as you can see in this beautiful draggable button demo #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
You can't make this shit up. I wanted to implement prn (for printing EDN) in #squintcljs so I created a branch named "prn". But it turns out you can't name a file prn (or prn.extension) in Windows so Windows CI failed. Unable to create remotes/origin/prn.lock': Invalid argument
Out of band DOM updating (manually messing with DOM elements) counter example in Reagami #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
The on-render hook in reagami just got more awesome. You can now pass data from mount to update to unmount, by just returning data! #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Reagami now has an on-render hook that you can use to mount/update/mount a 3rd party JS component. #clojure #clojurescript #squintcljs Demo: squint-cljs.github.io/squint/?src=gz…
Here are my September and October 2025 OSS highlights and updates. blog.michielborkent.nl/oss-updates-se… Thanks for supporting my work! And perhaps see you at the Conj? #clojure #clojurescript #squintcljs #cljKondo #babashka
Reagami, my copy-pastable Reagent-like lib was ported to CLJS (minimal changes needed) and now can even run in a SCI: babashka.org/sci.configs/?g… You can also run/w regular CLJS, maybe interesting with :lite. Git repo: github.com/borkdude/reaga… #clojure #clojurescript #squintcljs
Squint + idiomorph + event listener restoration. The example uses compile time HTML generation #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KH…
Snake game in Idiomorph + squint #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=KH…
Idiomorph + squint reactive example (counter + text field) with regular squint atom. 5kb gzipped. #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KH…
Moar squint optimizations. If objects aren't shared, we are free to mutate them, even when assoc instead of assoc! is used. squint-cljs.github.io/squint/?src=KH… #clojure #clojurescript #squintcljs
Squint CLJS now emits more performant code for assoc, assoc! and get when objects can be inferred or are type hinted using ^object #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KG…
Drag-and-drop example I wrote in Reagent 9 years ago, now in Eucalypt: #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=KG…
Small tweak to #squintcljs. When using ^object type hints, assoc and assoc! compile down direct object manipulation without calling into the stdlib squint-cljs.github.io/squint/?src=KG… #clojure #clojurescript
Found a pretty nice optimization for str in #squintcljs (str "Hello: " (+ 1 2 3) nil "Dude") => `Hello: ${1 + 2 + 3 ?? ""}Dude` So str -> template string + null/undefined check. This performs much better than Array.join(''). But... is it worth it? #clojure #clojurescript
A short video about Eucalypt, a Reagent-like on Squint-cljs, that compiles down to 10kb artifacts. youtube.com/watch?v=SLnCzW… by Chris McCormick #clojure #squintcljs #clojurescript
youtube.com
YouTube
Make UIs in 10kb with "ClojureScript" and "Reagent" (Squint-cljs and...
The most important #squintcljs updates since March: github.com/squint-cljs/sq… #clojurescript #clojure
Squint = now defaults to a deep equals implementation squint-cljs.github.io/squint/?src=Wy… #clojure #clojurescript #squintcljs
Wow, cljdoc's front-end was rewritten from TypeScript to #squintcljs #clojurescript :) github.com/cljdoc/cljdoc/… #clojure
Eucalypt Tictactoe #squintcljs Reactive front-end in < 10kb #clojure squint-cljs.github.io/squint/?src=KG…
Snake game in Idiomorph + squint #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=KH…
A mashup between reagami and webcomponents. I don't know why you would do this, but you can! #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Using Idiomorph (HTMX, same thing) with #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KH…
#adventofcode solution for day 1 by Rok Lenarcic on the #squintcljs playground squint-cljs.github.io/squint/?boiler… #clojure
Here are my September and October 2025 OSS highlights and updates. blog.michielborkent.nl/oss-updates-se… Thanks for supporting my work! And perhaps see you at the Conj? #clojure #clojurescript #squintcljs #cljKondo #babashka
Moar squint optimizations. If objects aren't shared, we are free to mutate them, even when assoc instead of assoc! is used. squint-cljs.github.io/squint/?src=KH… #clojure #clojurescript #squintcljs
Small tweak to #squintcljs. When using ^object type hints, assoc and assoc! compile down direct object manipulation without calling into the stdlib squint-cljs.github.io/squint/?src=KG… #clojure #clojurescript
Squint CLJS now emits more performant code for assoc, assoc! and get when objects can be inferred or are type hinted using ^object #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KG…
The most important #squintcljs updates since March: github.com/squint-cljs/sq… #clojurescript #clojure
Edamame, the #clojure reader used in #babashka / SCI, #squintcljs and other projects has a pretty cool option to read namespaced keywords and syntax-quote based on the ns form, so you can read an entire file in one go without much hassle. github.com/borkdude/edama…
Squint = now defaults to a deep equals implementation squint-cljs.github.io/squint/?src=Wy… #clojure #clojurescript #squintcljs
Idiomorph + squint reactive example (counter + text field) with regular squint atom. 5kb gzipped. #squintcljs #clojure #clojurescript squint-cljs.github.io/squint/?src=KH…
pr-str, prn, etc now print EDN instead of JSON in squint, as you can see in this beautiful draggable button demo #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Out of band DOM updating (manually messing with DOM elements) counter example in Reagami #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
The on-render hook in reagami just got more awesome. You can now pass data from mount to update to unmount, by just returning data! #clojure #clojurescript #squintcljs squint-cljs.github.io/squint/?src=gz…
Something went wrong.
Something went wrong.
United States Trends
- 1. #AEWDynamite 17.6K posts
- 2. Giannis 74.4K posts
- 3. Claudio 27.6K posts
- 4. #Survivor49 2,174 posts
- 5. Jamal Murray 4,061 posts
- 6. #TheChallenge41 1,487 posts
- 7. #iubb 1,103 posts
- 8. #SistasOnBET 1,776 posts
- 9. Achilles 4,820 posts
- 10. Bucks 48.7K posts
- 11. Kevin Knight 1,784 posts
- 12. Ryan Nembhard 2,108 posts
- 13. Tyler Herro 1,433 posts
- 14. Dark Order 1,557 posts
- 15. Jericho Sims N/A
- 16. Steve Cropper 3,713 posts
- 17. Wiggins 4,473 posts
- 18. Okada 5,559 posts
- 19. Isaiah Stewart N/A
- 20. Yeremi N/A