0:10 AM
hayohayo1 has quit
0:17 AM
johann joined the channel
0:35 AM
noprompt has quit
0:37 AM
noprompt joined the channel
0:45 AM
mynomoto joined the channel
1:15 AM
noprompt has quit
1:16 AM
johnmendonca has quit
1:19 AM
noprompt joined the channel
1:20 AM
TheAncientGoat joined the channel
1:28 AM
noprompt has quit
1:28 AM
noprompt joined the channel
1:29 AM
hayohayo joined the channel
1:43 AM
hayohayo has quit
1:44 AM
noprompt has quit
1:46 AM
noprompt joined the channel
2:12 AM
jjttjj has quit
2:13 AM
hayohayo joined the channel
2:35 AM
hayohayo has quit
2:37 AM
hayohayo joined the channel
2:52 AM
hayohayo has quit
3:02 AM
hayohayo joined the channel
3:34 AM
noprompt has quit
3:34 AM
noprompt joined the channel
4:04 AM
hayohayo has quit
4:26 AM
hayohayo joined the channel
5:03 AM
badyl joined the channel
5:16 AM
badyl has quit
5:23 AM
johann has quit
5:32 AM
badyl joined the channel
5:35 AM
noprompt has quit
5:48 AM
badyl has quit
5:55 AM
hayohayo has quit
6:16 AM
noprompt joined the channel
6:23 AM
johann joined the channel
6:31 AM
noprompt has quit
6:34 AM
noprompt joined the channel
6:40 AM
johann has quit
7:06 AM
piranha joined the channel
7:06 AM
noprompt has quit
7:10 AM
noprompt joined the channel
7:35 AM
noprompt_ joined the channel
7:35 AM
badyl joined the channel
7:35 AM
vmarcinko joined the channel
7:36 AM
noprompt has quit
7:41 AM
vmarcinko has quit
7:52 AM
noprompt_ has quit
8:17 AM
schmir joined the channel
8:23 AM
daemian has quit
8:23 AM
daemian joined the channel
8:25 AM
johann joined the channel
8:29 AM
piranha1 joined the channel
8:29 AM
piranha has quit
8:29 AM
johann has quit
8:53 AM
chpill joined the channel
9:02 AM
raywillig has quit
9:04 AM
raywillig joined the channel
9:34 AM
ayato_p joined the channel
9:34 AM
ayato_p has quit
9:49 AM
piranha joined the channel
11:15 AM
early has quit
11:17 AM
johann joined the channel
11:18 AM
early joined the channel
11:21 AM
johann has quit
11:26 AM
johann joined the channel
12:04 PM
dm3 joined the channel
12:12 PM
tcrawley-away is now known as tcrawley
12:21 PM
lance|afk is now known as lanceball
12:27 PM
dm3 joined the channel
12:28 PM
chpill has quit
12:31 PM
dm3 has quit
12:34 PM
chpill joined the channel
12:40 PM
cldwalker joined the channel
12:44 PM
alandipert
chpill, hey, welcome!
12:45 PM
chpill
alandipert: hi :)
13:11 PM
daemian has quit
13:12 PM
daemian joined the channel
13:17 PM
tcrawley is now known as tcrawley-away
13:19 PM
tcrawley-away is now known as tcrawley
13:33 PM
rbolkey has quit
14:05 PM
rbolkey joined the channel
14:06 PM
TheAncientGoat has quit
14:09 PM
jjttjj joined the channel
14:35 PM
hayohayo joined the channel
14:42 PM
chpill has quit
15:05 PM
hayohayo has quit
15:21 PM
piranha has quit
15:21 PM
sundbp joined the channel
15:38 PM
badyl has quit
16:17 PM
hayohayo joined the channel
16:20 PM
schmir has quit
16:41 PM
robink has quit
16:43 PM
robink_ joined the channel
16:47 PM
piranha joined the channel
16:48 PM
piranha has quit
17:05 PM
noprompt joined the channel
17:06 PM
badyl joined the channel
17:12 PM
lanceball is now known as lance|afk
17:13 PM
danielszmulewicz
has tmppath been deprecated in favor tmp-path?
17:15 PM
alandipert
danielszmulewicz, in master and soon in rc, but we'll never actually remove tmppath
17:16 PM
just update docs and show a warning
17:16 PM
17:16 PM
danielszmulewicz
alandipert: OK, thanks. I like syntactic refactorings. The dash is an improvement. Seriously.
17:17 PM
:-)
17:18 PM
Smiling because I recognize myself in that attention for detail.
17:18 PM
alandipert
hehe glad you like :-)
17:19 PM
yeah considering our emphasis on programmability the public API is something we can't afford to skimp on
17:19 PM
danielszmulewicz
Absolutely.
17:21 PM
alandipert
oh btw re: `boot run`
17:22 PM
for 2.0 i think we may just reserve the task name so we can get 2.0 but have more time to see what exactly we want it to mean
17:22 PM
*get 2.0 out
17:22 PM
we were considering reserving a few juicy names that seem like boot should support but we're not sure exactly how they'd work
17:23 PM
with the idea that by reserving them we'd save people from upgrading and then their own tasks not working anymore
17:24 PM
danielszmulewicz
alandipert: Sure. Sounds good;
17:24 PM
dm3 joined the channel
17:26 PM
Btw, does task name conflicts in Boot follow Clojure's semantics when vars clash?
17:27 PM
alandipert
not exactly because we don't control 'refer'
17:27 PM
danielszmulewicz
If I define a task called run, when I require it, it will say that I'm overwriting a built-in task?
17:27 PM
alandipert
but the idea is to dehave similarly
17:28 PM
hayohayo has quit
17:28 PM
so if you do like (deftask jar []) in a REPL it will explode
17:28 PM
i guess because by the time you can add tasks we've already referred the builtins
17:29 PM
danielszmulewicz
So tasks never get "overwritten"
17:29 PM
?
17:30 PM
alandipert
well, if you write (deftask foo []) (deftask foo []) in your build.boot you'll see the "foo overridden" warning that we made
17:30 PM
so you can overwrite your own stuff, this seemed helpful when working with profile.boot
17:30 PM
danielszmulewicz
alandipert: Ah, OK, now I see. Makes sense.
17:31 PM
alandipert
but yeah if we reserve 'run' nobody will be able to make their own run task
17:31 PM
at least, they won't be able to define it in a build.boot - they might be able to refer it from another ns, i haven't tested
17:31 PM
minimally in that 2nd case they'd see the clojure warning about a refer clash
17:32 PM
the idea is that they'd get all this feedback before running boot -u some day and afterward their build.boot not running at al
17:33 PM
danielszmulewicz
alandipert: Right. Should I rename my (your) run task in system already to be on the safe side?
17:34 PM
17:35 PM
badyl has quit
17:35 PM
alandipert
danielszmulewicz, at your discretion, the way you have it in a .clj file i think means that worst-case is a warning for the user who refers it into build.boot
17:39 PM
tcrawley
michaniskin: there may be something like irony in me asking this, but how do you debug issues when running code in a pod?
17:40 PM
I have code that works out of a pod, but inside, I get: java.lang.ClassNotFoundException: org.clojure
17:40 PM
17:40 PM
and have no idea what would be trying to load a class called "org.clojure"
17:40 PM
have you seen that before?
17:56 PM
jjttjj has quit
17:58 PM
jjttjj joined the channel
18:09 PM
piranha joined the channel
18:25 PM
danielszmulewicz
Good news! system-0.1.8-SNAPSHOT adds file-based granularity for hot-reloading a system. This means that if you works on a web app, for example, you can configure the build pipeline to automatically restart the system when certain files are being edited. Isn't that cool?
18:25 PM
For example, handler.clj
18:26 PM
lance|afk is now known as lanceball
18:34 PM
danielszmulewicz has quit
18:47 PM
alandipert
tcrawley, that's an intense stack trace
18:48 PM
tcrawley, i can imagine some things, are you splicing code from the parent environment into the pod?
18:49 PM
tcrawley, because it looks like maybe a case where you're expecting a var sym when it's actually a class or something
18:49 PM
err "class symbol"