This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-02-27
Channels
- # bangalore-clj (1)
- # beginners (11)
- # boot (23)
- # business (2)
- # cider (43)
- # cljs-dev (65)
- # cljsjs (17)
- # cljsrn (4)
- # clojure (144)
- # clojure-austin (4)
- # clojure-berlin (3)
- # clojure-finland (4)
- # clojure-nl (2)
- # clojure-russia (13)
- # clojure-spec (73)
- # clojure-uk (42)
- # clojured (2)
- # clojurescript (166)
- # core-matrix (4)
- # cursive (24)
- # datomic (39)
- # dirac (8)
- # hoplon (97)
- # jobs (2)
- # jobs-rus (11)
- # juxt (16)
- # lein-figwheel (8)
- # leiningen (1)
- # luminus (5)
- # lumo (46)
- # off-topic (1)
- # om (39)
- # onyx (43)
- # overtone (1)
- # pedestal (3)
- # perun (6)
- # play-clj (3)
- # protorepl (14)
- # re-frame (21)
- # reagent (25)
- # remote-jobs (1)
- # ring (1)
- # robots (4)
- # rum (13)
- # specter (5)
- # untangled (72)
- # yada (62)
Bore da
How often do you see the sun up Norf?
@paulspencerwilliams What Newcastle Central? Only once every four years when the fog on the Tyne lifts..... š
morning
saw some cloud-based discussion earlier - if anyone's interested thereās a graph about 2/3rds of the way down this article: https://www.theregister.co.uk/2017/02/07/cloud_price_wars_resume_as_microsoft_cuts_by_up_to_51_per_cent/
@paulspencerwilliams @jasonbell Well as you know, if the fog on the Tyne does lift we get to see the sun for six months at a time...but obviously have to suffer the other six months in Stygian darkness.
@agile_geek have you actually ever seen the sun over the Tyne? Or is that some mythical event that only a friend of a friend has heard of once? š
fog on the Tyne? Isnāt that a songā¦?
āFive Bridgesā¦ā š
google reverse image search shows that picture was actually taken last night in Sweden
Ok...You got me...It's all CGI!
Alternative facts, Newcastle is a pleasant city with a mixture of modern innovative and fine Georgian architecture located in ... Sweden
And the funny accents
( i probably violated all the policies š¬ )
(good luck with google translate š )
Just asked my boss if he'd pay for a ClojureX ticket for me. Fingers crossed
@yogidevbear if you need any "help" convincing your boss... just let us know... š
I might take you up on that offer š
I'm waiting for the other MD to come online in the states and then they're going to chat about it
It might be tricky as we don't use Clojure at work (... yet) and it's a new term to them
But I'm hopeful that they'll look at it as a vested interest in their staff and keeping up to date with current trends
learning clojure is really a lesson in noticing mutable state and training yourself to avoid it
There's lots of mutable state in ColdFusion š
Kind of unavoidable
So there's a lesson there.... how to avoid it and why it matters.
does anyone here know if mixed clojure/clojurescript projects are a good/bad idea?
Iām just starting out on some ClojureScript, and Iām not sure if I want to be mixing it into the same project (and serving it from the existing Clojure server), or keeping it separate and deploying it to some static file hosting (like S3?)
the server runs an incremental build and serves up the latest client code, but when deployed itās served statically
do you mean that youāre auto-rebuilding and serving through the server in dev, but deploying elsewhere for prod?
@peterwestmacott if you find a template you like it's easy to get started with a mixed project - and it's not hard to split later. if you make your cljs and api work with file: urls (mostly CORS) then you have options - my current project gets served from file: urls inside a cordova wrapper, and s3/cloudfront, and during dev also from clojure
okay, thanks