This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-08-26
Channels
- # admin-announcements (33)
- # beginners (41)
- # boot (97)
- # clojure (220)
- # clojure-berlin (3)
- # clojure-russia (31)
- # clojure-sg (3)
- # clojurebridge (2)
- # clojurescript (137)
- # clojutre (13)
- # core-matrix (10)
- # core-typed (1)
- # cursive (18)
- # datascript (1)
- # datomic (93)
- # devops (6)
- # editors (18)
- # emacs (1)
- # funcool (43)
- # hoplon (4)
- # immutant (6)
- # instaparse (3)
- # jobs (25)
- # ldnclj (14)
- # ldnproclodo (4)
- # off-topic (20)
- # om (21)
- # rdf (79)
- # re-frame (14)
- # reagent (12)
- # ring-swagger (18)
- # yada (52)
I have numerous issues with boot on windows. I had this weird error that I discussed here 2 days ago saying character to be escaped missing
with an IllegalArgumentException
. The same thing works on an archlinux box but not on the win7 one. So I went ahead and tried to strip the code down in the files which resulted in another set of errors stating boot cannot delete some temp files.
I created a minimal example here - https://github.com/xificurC/boot-windows
And running boot cljs
results in this - https://www.refheap.com/108755
Any tips welcome and @micha let me know if I should file an issue on GH
the problem is that windows won't allow a file to be deleted if any process has an open filehandle to it
and it's common for java programmers to open InputStreams and not close them, because they get closed automatically when they go out of scope and the garbge collector runs their finalization code
more setup, sigh. Also, I'm running into a dangerous area, we have restrictions on what we can install on our machines here. Although for dev purposes I think I'm fine
silly question: if I create an app with this setup and uberjar it will it run on windows?
boot needs to be able to create files and hard links and move them around as it needs to
since I already have VirtualBox I can just setup my own linux VM and work from there
this weekend i hope to work on the transition to the new organization and reorg the repos
basically setting things up for everyone to contribute to the wiki and docs as they wish
@alandipert said a couple days ago he thinks hoplon is better and will outlive react. Those are strong words
@micha: by the way I'd suggest changing the README
on github for windows. If it's broken I'd rather see a statement like you just did, use docker or a VM. I myself lost a day trying to figure out what's causing the issues
@micha: Been a while since I looked at latest hoplon/boot2 — is there a story around load time for use in hybrid mobile apps?
hey everyone. is anyone using circleci?
i've yet to be able to get dependency caching to work
and it would massively speed up my builds and make me super happy
oh i think i might have figured it out
CircleCI should cache ~/.m2 by default
i just noticed that the cache is saved before the test command is run
so i added a call to boot show -d
in the dependencies section
which i think should fix things
@pleasetrythisathome: you might need to list manually in cache_dirs
will let you know it works, running now
@martinklepsch: Nope, m2 is automatically in cache_dirs