This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-02-25
Channels
- # announcements (9)
- # aws (50)
- # babashka (7)
- # beginners (95)
- # calva (10)
- # chlorine-clover (17)
- # cljdoc (11)
- # cljs-dev (4)
- # cljsrn (6)
- # clojars (25)
- # clojure (74)
- # clojure-belgium (4)
- # clojure-dev (17)
- # clojure-europe (3)
- # clojure-italy (23)
- # clojure-nl (3)
- # clojure-norway (5)
- # clojure-sanfrancisco (30)
- # clojure-spec (46)
- # clojure-uk (27)
- # clojured (3)
- # clojurescript (91)
- # core-async (61)
- # cursive (3)
- # data-science (4)
- # datascript (7)
- # datomic (67)
- # emacs (15)
- # events (1)
- # figwheel-main (13)
- # fulcro (31)
- # graalvm (1)
- # graphql (3)
- # hoplon (2)
- # jobs (3)
- # jobs-rus (1)
- # kaocha (4)
- # lambdaisland (34)
- # luminus (4)
- # off-topic (62)
- # om (4)
- # other-languages (9)
- # re-frame (14)
- # reitit (1)
- # ring-swagger (1)
- # shadow-cljs (51)
- # sql (5)
- # xtdb (8)
Quick question: bit-and cljs gives different result than clj. How to solve this?
cljs.user=> (apply bit-and ' 3232236032 3232236288 3232236544))
-1062731776
user> (apply bit-and ' 3232236032 3232236288 3232236544))
3232235520
Cljs and clj are not the same, for example here clj has a number of numeric types, in this case longs, while cljs just has js doubles.
In this case though the different numeric interpretation may not even matter, using bit-and implies caring about the bit pattern and maybe not caring about the numeric interpretation, in which case, you should check the bit patterns for sameness
Turns out to be a js issue according to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators as the result is treated as 32bit signed. Thanks.
Can anyone suggest modern (2020) beginner friendly resources to get started with web dev in Clojure? I have previously used Django/Flask in Python.
try luminus web as a beginning web stack. It will be fairly familiar from a django/flask background. There are other more powerful alternatives, but they may be a little too "alien spaceship" for beginners. https://luminusweb.com/
Clojure for the Brave and True (online, also a book). Getting Clojure and Living Clojure (books).
Those aren't specific to web dev but you'll need a grounding in the language before trying to build web apps.
Web Development with Clojure (Dmitri Sotnikov) is a web dev specific book but I wouldn't say it was "beginner friendly" -- @yogthos would you agree or disagree?
^ @reachtarunhere does that help?
Thanks! I am already working through Brave and True. I was looking for resources more specific to the webdev ecosystem in Clojure.
@reachtarunhere I had the exact same question a few months back. There are not many resources specific to WebDev. But you can pick a web framework first and go through its guides. There is an excellent comparison here: https://purelyfunctional.tv/mini-guide/clojure-web-servers/
Just to be clear: that article is about web servers not web frameworks.
But my advice when learning web dev in Clojure is to start with the basics: Ring, then maybe Compojure, then maybe Selmer for HTML pages. Luminus (from the Web Dev book) is a template made up of a lot of libraries and it's a lot to learn -- and very hard to figure out if anything goes wrong.
The bottom line is that Clojure does not have web "frameworks" and it really expects you to learn the "nuts and bolts" of how "The Web" works and to learn how to assemble a web application from various component libraries. Using web frameworks in other languages doesn't help you with Clojure as there are no similarities really.
Selmer is an HTML templating library for Clojure that is like a very small subset of what Django provides. Ring is like a small subset of Flask.
Yes, the article is mainly about servers but there is a section that talks about Pedestal and Yada, apart from Ring.
I have since used Pedestal to build a small REST API. The experience was good. For purely frontend work though, I don't know.
In terms of "standard" and "popular", I don't think I would recommend either Pedestal or Yada as first steps.
But, sure, learn them once you've figured out Ring and Compojure and maybe Bidi and maybe a few other things.
Hi I'm trying to choose my build tools and I'm stuck What's the difference between figwheel auto reload and shadow-cljs auto reload? Which one is better for development?
sorted-set
and sorted-set-by
both do not accept a keyfn
. What would be the idiomatic approach to build a sorted set with a keyfn
?
EDIT: It seems possible to build a comparator that applies the keyfn
and then compares. But will it call keyfn
multiple times for the same element?
I'm guessing this is not very different than using comparators for Java sorted collections. The comparator (and your keyfn) will be called more than once per element, as needed to place items in sorted position.
You want to dereference it, the atom just points to some immutable data.
So, (count @atom)
technically you aren't counting the atom, you are counting whatever value it points too right now. It could change at any time
Hi clojurians,
This started by a typo but it evaluated. Now I'm wondering:
(def foo (conj [] foo))
foo returns an object like this:
[#object[clojure.lang.Var$Unbound 0x3e3119 "Unbound: #'data.ruler/foo"]]
vars that exist, but don't have a set value yet return an Unbound object when deref'ed
As an exercise to learn more about Clojure, I have set myself the goal of refactoring and updating https://github.com/ilmotta/clojure-ants-simulation (the refactoring of Rich's ant simulation) to reflect current best practices. However, I was hoping the community here could point me in the right direction. So for my questions:
1. When I run lein test
the tests are run, however, when I run the tests using M-x cider-test-run-project-tests
, it can't find any tests? Cider already has the test directory on the classpath.
2. I want to add spec
. Having never used it, which areas would you recommend targeting? Functions? Records?
3. What other improvements would you add to this?
Thanks! 🙂
user=> (declare x)
#'user/x
user=> x
#object[clojure.lang.Var$Unbound 0xae7950d "Unbound: #'user/x"]
user=>
cool thanks good to know. Guess because I never modify x I never thought to declare var before I bind them to a value
the different between that and a recursive function is a function won't deref the var until it is invoked, by which time the definition has happened
Which fn would you write to turn [4 :d :f :g 8 :c 16 :a :b :c :d 1 :f]
into [[4 :d :f :g] [8 :c] [16 :a :b :c :d] [1 :f]]
? I started with partition-by number?
but now I’m sort of stuck … the thing is, in my application the source coll could also end with a number, or have two numbers in succession
And (mapv (comp vec flatten) (partition 2 (partition-by number? coll)))
feels somewhat clumsy...
I think someone else would likely have a simpler solution, but I think a stateful transducer could solve this
I tried with reduce
first, and it was easy to start a new vector in the accumulator, but I found it difficult to conj an item to an already existing last vector in coll.
If you want to try out the transducer route, this article could be of some use https://labs.uswitch.com/transducers-from-the-ground-up-the-practice/
(defn custom
[coll]
(let [[num & rest] coll]
(when (number? num)
(cons (cons num (take-while keyword? rest))
(lazy-seq
(custom (drop-while keyword? rest)))))))
I just had another idea using transient - conj! - persistent!
but not sure if this will work
@U082WFGJJ when you want to do something outside of the normal lazy collection functions, you need to understand how to create a custom lazy-seq
which.... doesn't seem to have a http://clojure.org official guide
There is a mention of cons and lazy-seq here: https://clojure.org/reference/lazy but yeah, not exactly a guide.
I also have beginner level knowledge, but I deal with ProjectEuler puzzles a lot which are mathematical in nature and hence I deal with infinite sequences a lot, which has to be lazy. I will try to explain this. Let's say, we want a sequence of all the powers of a number.
(defn powers
([x] (powers x x))
([x p]
(cons p (powers x (* x p)))))
(powers 2)
;; => integer overflow
This throws an error because we cannot really calculate an infinite sequence.
Let's try to read only the first two elements,
(take 2 (powers 2))
;; => integer overflow
This still throws because before returning the first two elements, it is still trying to calculate the whole sequence!
Let's make this lazy,
(defn powers
([x] (powers x x))
([x p]
(lazy-seq
(cons p (powers x (* x p))))))
(take 2 (powers 2))
;; => (2 4)
Notice that we have only added lazy-seq in a strategic place. What this actually does is it delays the evaluation of the thing wrapped in lazy-seq till it's actually requested. So, if we request two elements, only the first two cells of the logically infinite sequence is evaluated.
Hope this helps.Is there a reason someone would send HTML with hidden elements to be used as a data store?
If I've learned one thing over my years of software development, it's that someone will come up with a reason to do just about anything

True but Ive had those situations where I see something odd and can't think of a reason why it was done that way and refactor. Only for it to bite me in the behind a few weeks later when the issue becomes apparent.
I am trying to re-factor a front-end code base. I want to know whether I can get rid of this weird HTML hidden-element data store thing and just get the data back as plain JSON
hidden fields were a big thing about 20 years ago or so - I fear only you can answer the question - whether they can be removed - in the end it's all just data travelling back and forth - if said data is no longer needed - it can be removed
You won't find a definitive answer here - that can only be known by knowing how your system is used.
I mean we happily discuss such things under the channel #off-topic and you are more than welcome to post there. #beginners channel is for Clojure(Script) questions.
Hi again. I have a beginner ClojureScript question but it deals with core.async which is similar in both languages so I figure it's safe to post here. I'm using cljs-http to make a GET request, and ultimately get the response body. This is within Reagent where I am providing a table component which should display the data. This is my function to get the data:
(defn the-data []
(go (let [response (<! (http/get " "
{:with-credentials? false
:query-params {}}))]
(println (:body response))
(:body response))))
Now, the part where I get confused is this. I know that the (http/get)
returns a channel and I know that <!
gets the response from that channel. In this case, (println (:body response))
works as expected and spits out the response as a PersistentVector which I confirmed using type
.
However, when I try to call the-data
to make the data available to display in the table, I get:
Error: [object Object] is not ISeqable
(There is a list comprehension in the component, which I've tested successfully with static data that should look the same.)
Which causes an error rendering the table component. I thought for a while that the issue was that the function was returning the channel, not the response. But the response seems fine when it's being printed.
There's probably a good reason for all of this, but it's beyond me at the moment. If anyone can help clear this up I would appreciate it.I ask because go
itself returns a core.async
channel that will emit whatever the last expression in the go
evaluates to.
No, my start
function which renders a reagent component includes a function that calls (the-data)
to get the data for the table. I'm guessing this might be a problem.
so to use your function as it is now you’d need to do something like
(let [data (reagent.core/atom nil)]
(a/go (reset! data (a/<! (the-data))))
Like this:
(defn start []
(reagent/render-component [table]
(. js/document (getElementById "app"))))
Ahh ok
of course how you actually do it depends on how you’re managing the state of your components
My table component is like this following your example, but I am still getting the same error Error: [object Object] is not ISeqable
. (State management is something that is really new to me). Possibly the atom and go block should go outside the component?
(defn table []
(let [data (atom nil)]
(go (reset! data (<! (the-data))))
[:table {:class "table table-condensed"}
[:thead {:align "left"}
[:tr
[:th "Field1"]
[:th "Field2"]]]
[:tbody
(for [row data]
^{:key row}
[:tr
[:td (:field1 row)]
[:td (:field2 row)]])]]))
Ok, I've got the state part figured out. Now the only problem is another error:
Error: Objects are not valid as a React child
But I think that has a different cause. Thank you!I've got it working now. Thanks again
@UTHL3A325 sorry didn’t see this till now. Glad you got it working. You might want to look at some of the different ways to create components and why, specifically https://github.com/reagent-project/reagent/blob/master/doc/CreatingReagentComponents.md#form-2--a-function-returning-a-function and https://github.com/reagent-project/reagent/blob/master/doc/CreatingReagentComponents.md#appendix-b---with-let-macro
Thank you!
Hi there, folks… I’m attempting to create a score-word
function for a personal project that works like a binary code for 5-letter words. If a letter is in the first half of the alphabet, it scores. If the letter is in the first position, it scores 16, second position 8, third position 4, fourth position 2, and the last letter 1.
So for example: (score-word "apple") => 17
. (16 points for the first position “a”, and 1 point for the last position “e”.)
Trying to figure this out, I started out with making a check-letter?
function:
(defn check-letter? [letter]
(re-find #"[a-m]" letter)
)
(check-letter? "a") => "a"
(check-letter? "n") => nil
However, I’m having problems taking the nth letter of the word, and passing it to this function. (My check-letter? function is probably unnecessary, but it’s the path I was taking to figure this out.)
Just trying to poke at the first letter, I’m having problems:
(defn score-word
[word]
(check-letter? (str (first word))))
(score-word "hello")
ClassCastException java.lang.Character cannot be cast to java.lang.CharSequence clojure.core/re-matcher (core.clj:4667)
Does anyone have ideas to nudge me in the right direction? Thanks in advance!@scotto I get
(defn check-letter? [letter]
(re-find #"[a-m]" letter)
)
=> #'user/check-letter?
(defn score-word
[word]
(check-letter? (str (first word))))
=> #'user/score-word
(score-word "hello")
=> "h"
Maybe you have some stale code hanging around?
Hmmm… Maybe!
That was it. [head desk]