This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-08-04
Channels
- # admin-announcements (33)
- # announcements (2)
- # beginners (10)
- # boot (200)
- # cider (25)
- # cljs-dev (13)
- # clojure (75)
- # clojure-canada (2)
- # clojure-czech (1)
- # clojure-dev (16)
- # clojure-japan (7)
- # clojure-russia (20)
- # clojurescript (206)
- # clr (1)
- # cursive (24)
- # datascript (1)
- # datomic (1)
- # editors (2)
- # hoplon (136)
- # ldnclj (54)
- # off-topic (9)
- # om (5)
- # onyx (8)
- # re-frame (66)
- # reagent (19)
- # yada (21)
Anyone with semantic web chops in this channel 😉? https://stackoverflow.com/questions/31809742/harmonizing-terms-in-two-different-rdf-ontologies
Would like to do something like below in circle ci — anyone an idea?
machine:
environment:
SHA: echo $CIRCLE_SHA1 | cut -c1-7
Does $CIRCLE_SHA1:1:7}
work for you?
@mikeholmesuk: should one of those :
be the opening {
?
Sorry, good spot ${CIRCLE_SHA1:1:7}
Inserting something like this also worked: $(echo $CIRCLE_SHA1 | cut -c1-7)
but will try your suggestion
@mikeholmesuk: sweet that worked. didn’t know that this ${}
thing exists
Yeah, I think I stumbled across it myself. Glad it worked for you though - happy to help 😄