This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-09-27
Channels
- # beginners (86)
- # calva (1)
- # cider (21)
- # clj-kondo (2)
- # clojure (31)
- # clojure-europe (3)
- # clojure-italy (7)
- # clojure-nl (7)
- # clojure-spec (15)
- # clojure-uk (70)
- # clojurescript (4)
- # clojutre (31)
- # code-reviews (6)
- # cursive (10)
- # datomic (8)
- # duct (3)
- # emacs (2)
- # fulcro (34)
- # funcool (3)
- # jackdaw (2)
- # jobs (10)
- # jvm (2)
- # kaocha (1)
- # off-topic (21)
- # pathom (11)
- # re-frame (10)
- # reagent (4)
- # schema (1)
- # shadow-cljs (72)
- # sql (1)
- # tools-deps (3)
- # vim (9)
- # xtdb (4)
It's Friday... time to prepare content for another study group on Saturday!
morning.
I don't suppose anyone know if a way to exclude just one specific version of a dependency from being upgraded?
context: we auto-bump our dependencies daily with lein ancient
and test against them in CI, but [com.fasterxml.jackson.core/jackson-databind "2.10.0"]
seems to be broken
@peterwestmacott Is it this https://github.com/xsc/lein-ancient#exclusionselection-of-artifacts
:upgrade false
as part of the dependency definition and then set your CI server to skip auto update those tagged dependencies
Never tried this myself
thanks for the docs link. I've got :upgrade false
set on it - but it's only the current version I want to exclude - when there's a new one I'd like it to resume as normal.
I've settled for a manual downgrade, :upgrade false
and a TODO for now
Hey folks… just to let you all know we’re hiring again! https://medium.swirrl.com/swirrl-is-hiring-ed456c08b78b
Also if you’re curious what it’s like to work at Swirrl: https://medium.swirrl.com/whats-it-like-working-at-swirrl-b9972a703778
more than 1/2 our team is remote
I wish I could have more time remote than I get, and that I was in a position to hire remote...
it is its own perfect creation
Nice!
Growing the team for a new project?
haha there are always new projects 🙂 we’re growing the team because the business is growing; in terms of both existing clients/projects and new ones.
cool stuff!
we should go to OG panchos sometime. I messaged ric about it but then got busy and forgot to bug him haha
Yeah sounds good :thumbsup: Incidentally on mcr food; I’ve had some fantastic curry at the indian tiffin rooms.
where's that? is that the one over in spinningfields?
Yeah near home. Mainly south indian, dosa’s etc. Though I can also confirm their saag paneer was one of the best I’ve had for a long time.
I used to live in Manchester and one of the best curries I had was downstairs in a room near piccadilly that seemed to cater exclusively to indians! (I was introduced to it by a friend). The curry mile imho caters more for the "western" tastes in curry.
yeah that’s the only place I can think of that’s downstairs… though I’m not sure it fits the indian clientele description
NQ “greasy spoon” curry houses are much better than curry mile though. Of that we can all be sure.
hey @U79NZHC6A - sorry, i forgot about this too. Such busy
yeah marhaba is the best in town and sanskruti is the best out of town
haha, that’s okay @U09NZV6R3 everybody’s been busy
Thanks alex :thumbsup:
if you don’t get it, did I mention we’re hiring? 😉
you don't need any luck
just enjoy it
Even for those interviews I don't succeed in (which have been many) I always (after a period of reflection) value them in terms of what I've learnt, what I have still to learn and more insight about companies.
@jr0cket what do you use during your practicalli casts to display key presses as you type (in the top right hand corner)? A colleague of mine is trying to improve their vim movements and it’d be useful to have that visible while pairing.
screen-key
https://www.omgubuntu.co.uk/2010/10/screenkey-desktop-recording-tool-displays-key-presses-on-screen
I think thats it...
Its screenflick on MacOSX...
I had to hack the JSON manually on Ubuntu, as the gui didnt work. My JSON config for dual screens is here if needed - I mainly just tweak around with geometry https://gist.github.com/jr0cket/dddd4671a74ada9c2d71a62d9630eba0
my day job is essentially to just create mappings from our internal APIs to various external APIs
but the APIs we work with rarely comes with documentation. We usually just get an example file. So If I could just type out our data structure, and then the target data structure, and infer a transformation
I do the same, I consume either from external APIs or internal kafka topics and have to rejiggle the data into the format that I need.