Fork me on GitHub
#off-topic
<
2023-04-29
>
hifumi12302:04:13

Clojure surpassed 10k stars on GitHub!

ā­ 52
port1910:04:30

Looking forward to watching the recordings after the conj. Please someone ping me when they go live šŸ˜„

šŸ‘€ 4
āž• 10
Andreas Edvardsson11:04:04

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!

port1912:04:12

It doesn't show up on youtube search for me, could you share a link?

Stuart14:04:47

Can't find them either

Andreas Edvardsson14:04:54

Ah, my fault. I was waiting for the recording of yesterdays stream to become available on the conference streaming platform.

Andreas Edvardsson14:04:50

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:

Drew Verlee18:05:59

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?

Drew Verlee18:05:13

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.

šŸ˜„ 1
port1905:05:40

Sounds like you're looking for "watch party"

Drew Verlee07:05:40

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.

ā¤ļø 2
Andreas Edvardsson11:04:04

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!

vemv20:04:41

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?

p-himik20:04:56

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.

p-himik20:04:20

compdef _gnu_generic clj seems to work perfectly in zsh.

vemv20:04:56

Nice! I see it as well :) should I run that command in my zsh init file? Or should I cache it better

p-himik20:04:49

What do you mean by "cache"? I just put it into my .zshrc, doesn't seem like it takes any noticeable amount of time.

šŸ‘ 2
Martynas Maciulevičius20:04:21

What could work for bash?

p-himik20:04:02

Easy enough to look up on the web. ;)

p-himik20:04:16

Don't remember, but at a glance it was a very similar command.

Martynas Maciulevičius21:04:36

> 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.

p-himik21:04:09

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.

Ivar Refsdal18:05:04

@U028ART884X I did some stuff for bash for completing aliases: https://github.com/ivarref/clj-bash-completion if you are interested in that