This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-07-16
Channels
- # announcements (3)
- # babashka (25)
- # beginners (71)
- # calva (18)
- # clj-kondo (52)
- # cljs-dev (94)
- # cljsrn (12)
- # clojure (33)
- # clojure-europe (52)
- # clojure-nl (2)
- # clojure-uk (27)
- # clojurescript (18)
- # clojureverse-ops (4)
- # datomic (64)
- # deps-new (27)
- # depstar (5)
- # events (5)
- # fulcro (5)
- # graalvm (12)
- # graalvm-mobile (82)
- # helix (2)
- # introduce-yourself (1)
- # juxt (5)
- # lsp (10)
- # malli (7)
- # missionary (1)
- # off-topic (41)
- # pathom (69)
- # pedestal (6)
- # re-frame (4)
- # reagent (8)
- # releases (9)
- # remote-jobs (8)
- # shadow-cljs (3)
- # sql (46)
- # tools-deps (44)
- # uncomplicate (1)
- # vim (83)
Hey here’s a new video by Rich from … 11 July 2021 https://www.youtube.com/watch?v=nD-QHbRWcoM
That's not off-topic 🙂 (but I am a bit surprised no one has posted it to #news-and-articles which is where it belongs).
Thanks Sean! I knew it was on-topic but I wasn’t sure which channel haha
(deleted the OP since it's not the official video of the talk -- it's someone's "bootleg" copy of it)
No problem. That’s so funny, I’m glad we have the real one
Hi, a buddy of mine works in social work currently. He was working from home successfully during the dark age and is now being requested to return to a windowless basement for 40 hours a week. I am wondering what sort of remote work I can help him find. Bit of a random question, but does anybody know of any remote gigs that would be suitable for a non-coder … maybe like office stuff? Kinda scratching my head here.
I’m looking at some “Tech Support” gigs at cool new companies, many of them are very happy to do full remote it seems! I’d share my findings but do not want to increase competition for my friend 😅
aside: anyone know where I can get a rubber duck in clojure colors?
I'd be careful, pragmatically speaking a lot of remote work outside of prestige / high skilled industry is more likely to be exploitative or abusive than in person work (and there are a lot of straight up scams)
by isolating people from coworkers they can get away with more abusive behavior, sadly
That’s a fair point. I would like to find him a customer support role or tech support role at a reasonably large company or well-established one…
I want to start keeping a dotfiles
repository but am unsure how you do that. How do you pull in all these random config files in your system into one git repository?
The best way I've seen it done is to have a git repo in another directory or subdirectory of $HOME, and set the worktree of that repo to $HOME: https://www.ackama.com/what-we-think/the-best-way-to-store-your-dotfiles-a-bare-git-repository-explained/
I do it by having symlinks
I have a "dotfiles" dir, and a symlink from "dotfiles/bashrc" to ".bashrc" etc.
I keep the naming consistent so I can use a shell for loop on a new machine: $ for file in $(pwd)/dotfiles/config/*; do ln -s $file .$(basename $file); done
(well actually my system isn't quite that nice but that's a simplified version and what I'll eventually get around to...)
I highly recommend making the versions in source control not start with .
, since all your tooling should treat files starting with dot specially (and usually not show / offer them)
hmm, one idea I had just now: have names like dot.bashrc
dot.vimrc
etc. and just use sed to strip the dot
off the front haha
that "feels wrong" since it flips the role of the two sides of the dot
haha, I know of the existence of sed but haven't used it. This is definitely accomplishing my true secret goal of avoiding my real work that I need to do
oh man mastering the unix CLI is such a weird deep fun painful frustrating glorious rabbit hole
perfect way to waste a month of productivity at a time
awk is the best unix cli utility. sed just seems more complicated to me.
I don't know how much awk you know, it's a much more complicated and featureful tool, you use awk to write programs, sed is for line by line processing only
(I don't mean "I don't know how much awk you know" in a condescending way - more like "you might know this already, but...")
I mean, you can write arbitrary programs in awk without abusing it, not so with sed
haha nice
😅 tbh, i really haven't use either seriously yet. Had more fun playing with awk. is what i meant.
it's a fun little language, its implicit line by line execution is almost like a gui event loop driver
(but you can do things outside that loop also)
people who got fed up with awk's limitations went on to make things like tcl and perl (proper text oriented scripting languages)
I suspect you could use @borkdude’s babashka and get clojure to be nearly as concise or moreso with the right utility lib...
which also reminds me of one of my favorite toy languages: scsh - a set of scheme functions and macros so that you can use scheme as if it was a shell, complete with pipes https://scsh.net/