Hi folks
mรฅnmรฅn
Good Morning!
moin moin
morning
I have started greeting also in #clojure-czech (country of my origin) and as the channel is basically dead, one folk told me today if thatโs some kind of experiment to greet daily when thereโs nothing else going on. ๐
someone did some crunching on the slack history a while back @jiriknesl, which seemed to show that the location-specific channels where regular greetings were exchanged were by far the most active - uk and i think nl @thomas?
yes, the #clojure-nl one was quiet for a while and then I started saying hello each morning and other people joined. And occasionally we get a bit more traffic now. It feels a bit more as a community now IMHO.
and we started doing that on the Europe one as well a few(?) years ago and that gets more traffic as well now a days
Saying hello is nice ๐
Morn'
Bristol's online meetup in half an hour: https://www.meetup.com/Bristol-Clojurians/events/ndhzsrybcmbfc/ (zoom will be posted in comments shortly before)
@sfyire Is it just a group coding meetup or is there usually a talk?
Usually it's a semi structured tutorial through Fulcro, show and tell + general chat last week it was a talk for reasons that are hard to explain
What's the consensus here, when requir
ing a namespace containing functions you need, do you refer
to the functions you will use, or just do :as
then use the namespace alias. If doing refer
is there a limit before you switch to doing :as
?
I go for my daily repose now. will check on this tomorrow ๐
I nearly always just :as
and use an alias. I only :refer
in things where the syntax looks weird with an alias, so that's def*
things and syntax-like functions/macros (`->long`, condp->
).
Even in tests I pretty much always :refer sut
for the namespace that is being tested (System Under Test) although I do :refer [deftest testing is]
from clojure.test
because (test/deftest ... (test/is ...))
is weird-looking ๐
never even considered using sut
as an alias ๐
I ran across it decades ago in OOP docs about unit testing where they would often do the equivalent of sut = new whatever.class.is.BeingTested();
and then do all the tests against this sut
object.
same as @seancorfield here... mostly :as
with very common syntax-like things :refer
red