Re: [JOB] Looking a Clojure programmer

2016-01-02 Thread Marcus Holst
I suppose this is the correct domain: http://karriarforetagen.se/ On Thursday, December 31, 2015 at 2:04:39 PM UTC+1, Timo Sulg wrote: > > Hi, > > i'm a Clojure programmer in *‘Skillable’* - a Stockholm, Sweden based > startup building a tripadvisor.com > > for employers: employees rate own

A few fresh Clojure libs: authorization, multi-requests and more

2013-12-05 Thread Marcus Holst
After lurking around the Clojure community for well over a year now I thought it might be time for me to share some hacks I’ve made while working on a hobby project, so I pushed a few repos tonight. https://github.com/molst/annagreta - simplistic authorization https://github.com/molst/treq

Re: Minimizing the download of js code in Multipage ClojureScript webapp

2013-01-28 Thread Marcus Holst
init function which is shared by each source cljs files by passing it the parameters you need to setup each html page differently. (A kind of abstraction to apply the DRY principle). Mimmo On Jan 27, 2013, at 10:03 PM, Marcus Holst holst@gmail.comjavascript: wrote: Thanks Evan! I

Minimizing the download of js code in Multipage ClojureScript webapp

2013-01-27 Thread Marcus Holst
Building a traditional multipage webapp and using only some cljs code on the pages requires me to put all the cljs overhead output in one single file that can be cached by the browser (in order to not have to load the same 130+ k cljs overhead for each page). I've tried creating an empty

Re: Minimizing the download of js code in Multipage ClojureScript webapp

2013-01-27 Thread Marcus Holst
, if your app is very large (several tens of thousands of lines of code), and you really need to get the initial JS size down, you will have to do something more sophisticated. On Sunday, January 27, 2013 4:54:59 AM UTC-8, Marcus Holst wrote: Building a traditional multipage webapp and using