🦜 ClojureVerse - Latest posts
@clojureverse.org@rss-parrot.net
I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline!
Brought to you by the RSS Parrot.
---
Latest posts
Your feed and you don't want it here? Just
e-mail the birb.
How do I develop intuitions for where to performance optimize?
https://clojureverse.org/t/how-do-i-develop-intuitions-for-where-to-performance-optimize/11243#post_4
Published: March 10, 2025 21:49
The performance issues clearly come from the algorithm. You can try to tweak it with multithreading or with optimised data structures or search with the profiler the most time consuming parts. But all this will not change the situation that the algorithm…
How do I develop intuitions for where to performance optimize?
https://clojureverse.org/t/how-do-i-develop-intuitions-for-where-to-performance-optimize/11243#post_3
Published: March 10, 2025 08:58
It might sound weird, but what helps me is saying what the code does out loud. Not in code, just describing the rough steps. No tools. Even better when someone else listens and asks questions. You’d be surprised how often code doesn’t actually do what you…
How do I develop intuitions for where to performance optimize?
https://clojureverse.org/t/how-do-i-develop-intuitions-for-where-to-performance-optimize/11243#post_2
Published: March 9, 2025 19:08
When it comes to performance and memory usage, you have three main friends: knowledge of algorithmic complexity, profiling, and tracing.
You preliminarily match every user to every user, twice. That’s O(n^2), it doesn’t scale.
It’s not my domain but I…
How do I develop intuitions for where to performance optimize?
https://clojureverse.org/t/how-do-i-develop-intuitions-for-where-to-performance-optimize/11243#post_1
Published: March 9, 2025 18:14
I’m working on a small social networking site. I need to match people to other people, based on their similarities. I’ve initially taken a naive approach, using a background process to create a match-preliminary between every user, then using other…
I really appreciate the Clojurians Zulip chat
https://clojureverse.org/t/i-really-appreciate-the-clojurians-zulip-chat/11242#post_1
Published: March 9, 2025 12:49
I really appreciate the Clojurians Zulip Chat.
Recently, we discussed a new tooling feature created by @whatacold and @timothypratley. We had to stabilize it relatively quickly for upcoming workshops by @kiramclean and others. Before stabilizing, we had to…
What is a Clojure or Java library for breaking text into semantic chunks?
https://clojureverse.org/t/what-is-a-clojure-or-java-library-for-breaking-text-into-semantic-chunks/11233#post_6
Published: March 7, 2025 18:21
You can try this: NLP support with Huggingface tokenizers | djl it can use some of the HugginFace models, like BERT tokenizer.
How to remove potentially troublesome invisible characters before generating JSON?
https://clojureverse.org/t/how-to-remove-potentially-troublesome-invisible-characters-before-generating-json/11237#post_5
Published: March 7, 2025 11:34
Thank you for this. I should have tried this.
How to properly create a single generator from two or more generators
https://clojureverse.org/t/how-to-properly-create-a-single-generator-from-two-or-more-generators/11238#post_3
Published: March 7, 2025 01:48
Thank you. I wish I had thought of format.
What is a Clojure or Java library for breaking text into semantic chunks?
https://clojureverse.org/t/what-is-a-clojure-or-java-library-for-breaking-text-into-semantic-chunks/11233#post_5
Published: March 6, 2025 09:15
+1 for the CoreNLP wrapper
The Workflows Demos series continues -- will you tell your story?
https://clojureverse.org/t/the-workflows-demos-series-continues-will-you-tell-your-story/11231#post_7
Published: March 5, 2025 17:10
@adi this is great!
I’ll continue on a private message to try scheduling something.
The Workflows Demos series continues -- will you tell your story?
https://clojureverse.org/t/the-workflows-demos-series-continues-will-you-tell-your-story/11231#post_6
Published: March 5, 2025 16:58
@daslu I just saw your email on the mailing and figured I’ll drop my keyboard in the ring… I don’t have a particularly whizbang setup [1] but I could show one or two tricks like live-coded presentations.
This last Conj featured a bunch of people using…
SciNoj Light 1st conference
https://clojureverse.org/t/scinoj-light-1st-conference/11155#post_2
Published: March 5, 2025 11:27
We just added a proposal form link to the page of the Upcoming conference: SciNoj Light.
London Clojurians Talk: Lazytest: Standalone BDD testing (by Noah Bogart)
https://clojureverse.org/t/london-clojurians-talk-lazytest-standalone-bdd-testing-by-noah-bogart/11203#post_2
Published: March 5, 2025 10:55
hi all,
the recording of this event is now available on YouTube at:
Lazytest: Standalone BDD testing (by Noah Bogart)
What is a Clojure or Java library for breaking text into semantic chunks?
https://clojureverse.org/t/what-is-a-clojure-or-java-library-for-breaking-text-into-semantic-chunks/11233#post_4
Published: March 5, 2025 08:57
Does the Java Stanford CoreNLP do what you need?
How to properly create a single generator from two or more generators
https://clojureverse.org/t/how-to-properly-create-a-single-generator-from-two-or-more-generators/11238#post_2
Published: March 5, 2025 05:49
This function will return one string:
(defn- gen-date [start end]
(let [months (tgen/choose 1 12)
days (tgen/choose 1 31)
years (tgen/choose start end)
padding (fn [num-to-pad]
(if (<= 1 num-to-pad 9)
…
How to properly create a single generator from two or more generators
https://clojureverse.org/t/how-to-properly-create-a-single-generator-from-two-or-more-generators/11238#post_1
Published: March 5, 2025 04:18
Hello I’m trying to use test.check to generate a string that is formatted as MM/dd/yyyy.
I have the following function
(defn- gen-date [start end]
(tgen/let [months (tgen/choose 1 12)
days (tgen/choose 1 31)
years (tgen/choose…