This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-29
Channels
- # asami (1)
- # babashka (20)
- # beginners (3)
- # biff (1)
- # calva (5)
- # clj-kondo (68)
- # clojure (6)
- # clojure-europe (70)
- # clojure-losangeles (4)
- # clojurescript (1)
- # cursive (6)
- # exercism (1)
- # fulcro (3)
- # hyperfiddle (23)
- # introduce-yourself (1)
- # kaocha (1)
- # lambdaisland (8)
- # lsp (6)
- # off-topic (24)
- # pathom (24)
- # specter (1)
- # tools-deps (4)
- # xtdb (4)
Looking forward to watching the recordings after the conj. Please someone ping me when they go live š
Up now! š @port19 Edit: This applies to the raw recording of the stream available to streaming ticket holders. The talks are not yet available on YouTube. Sorry for the confusion!
Ah, my fault. I was waiting for the recording of yesterdays stream to become available on the conference streaming platform.
However, they said that they will hopefully be done chopping up and editing the videos within a week or so. I believe they will be uploaded to the ClojureTV YouTube channel. Sorry for tricking you all :face_with_spiral_eyes:
@U3X7174KS @UK0810AQ2 @U013YN3T4DA @U042NRFKHQE @U0DJ4T5U1 https://www.youtube.com/playlist?list=PLZdCLR02grLpIQQkyGLgIyt0eHE56aJqd
Yeah, I'm down for watching some of these on discord and discussing them. Like voice to voice discussions. Is there a single word for that?
I'll just define it and write it down here. Then we can all use it moving forward. I'll call it vhat or vhatting.
https://youtu.be/MNiqDZz-lp4 This is my favorite so far. It gave me hope i can learn more math. Reminds me of wolfram alpha only with more emphasis on the computer.
Up now! š @port19 Edit: This applies to the raw recording of the stream available to streaming ticket holders. The talks are not yet available on YouTube. Sorry for the confusion!
Is there some sort of generalized program such that when I type clojure -S
shows me:
-Sdeps EDN Deps data to use as the last deps file to be merged
-Spath Compute classpath and echo to stdout only
-Spom Generate (or update) pom.xml with deps and paths
-Stree Print dependency tree
-Scp CP Do NOT compute or cache classpath, use this one instead
-Srepro Ignore the ~/.clojure/deps.edn config file
-Sforce Force recomputation of the classpath (don't use the cache)
-Sverbose Print important path info to console
-Sdescribe Print environment and command parsing info as data
-Sthreads Set specific number of download threads
-Strace Write a trace.edn file that traces deps expansion
for tab-completion?Tab completion depends solely on your shell. You can manually define completions for your particular shell. Or you can look up tools for automatic generation of tab completions - but again, only for your particular shell.
Nice! I see it as well :) should I run that command in my zsh init file? Or should I cache it better
What do you mean by "cache"?
I just put it into my .zshrc
, doesn't seem like it takes any noticeable amount of time.
What could work for bash?
> complete -F _longopt clojure BUT (and no, single dash completes into double dash):
clojure --
--eval --help --init --main --repl --report --version
Basically it doesn't care about single-dash functions because they should be single-letter ones.
It turns out it's not standard when people do -Ssomething
instead of --Ssomething
.
For instance pacman
uses -S
like this: pacman -S cowsay
.It's not really a standard but rather a convention. You can still add tab completion to bash but seems like it'll be a bit more involved and perhaps static.
@U028ART884X I did some stuff for bash for completing aliases: https://github.com/ivarref/clj-bash-completion if you are interested in that