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
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