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 emp

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

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 namesp

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

2013-01-27 Thread Marcus Holst
library. In that case, the whole JS file > will not be much bigger than just the standard library itself. Of course, > 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 mor

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

2013-01-28 Thread Marcus Holst
you can also define a single 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 &g