pugscode.org/ | Brave souls needed to fix 'make Install'! Non-brave souls should avoid it for now Set by moritz on 1 June 2007. |
|||
00:05
ahmadz_ joined
00:06
mjk joined
00:07
ahmadz_ joined
00:11
srbot joined
00:12
srbot joined
00:20
ahmadz joined
00:27
mjk joined
00:29
|newbie| joined
|
|||
Aankhen`` stealth-mooses gaal. | 00:32 | ||
00:43
REPLeffect joined
00:45
lambdabot joined
01:22
beppu_ is now known as beppu
01:25
Monie joined
01:26
mako132_ joined
01:49
silug joined
|
|||
svnbot6 | r16621 | Darren_Duncan++ | ext/QDRDBMS/ : in AST.pm, added some convenience methods to several collection-type nodes | 03:03 | |
03:04
Southen joined,
Southen_ joined,
jmlin joined
03:07
awwaiid joined
03:25
daxim_ joined
03:43
justatheory joined
03:57
srbot joined
04:00
mako132_ joined
|
|||
gaal | Aankhen``: moose! | 04:07 | |
ingy | gaal: elk | 04:08 | |
gaal | ingy: caribou | ||
waking up is hard, let's go sleeping | |||
ingy is a sucky C hacker :( | 04:09 | ||
gaal wanted to say some thing like, "X is your friend". But then I realied what a truly antagonistic ballroom C programming is | 04:10 | ||
04:11
srbot joined
|
|||
ingy | reading code is your friend | 04:11 | |
ahmadz | good morning * | 04:12 | |
gaal | yeah, that's true. | 04:15 | |
hi ahmadz | |||
ahmadz | hi gaal | ||
TimToady | ?eval ?eval ?eval ?eval True | 04:16 | |
04:16
evalbot_r16619 is now known as evalbot_r16621
|
|||
evalbot_r16621 | Bool::True | 04:16 | |
TimToady | upgrading, bbl & | 04:17 | |
ahmadz | is evalbot working in safe mode? | ||
TimToady | ?eval system "ls" | ||
evalbot_r16621 | Error: Unsafe function 'system' called under safe mode | ||
TimToady | & | ||
ahmadz | what about for "1..Inf" ? ;-) | 04:18 | |
gaal | try it :) | ||
there's a ulimit | 04:19 | ||
ahmadz | hmmm true | ||
ingy | hopefully set to 3 | ||
ahmadz | let me check runpugs ulimit | 04:20 | |
installed opensolaris b64 yesterday only to find out it had perl 5.8.4 | 04:21 | ||
runpugs ulimit="ulimit -m 640000; ulimit -v 64000;" | 04:22 | ||
04:49
dduncan joined
|
|||
lumi | ello | 04:53 | |
gaal: Did you see my suggestion? | 04:54 | ||
05:06
BooK_ joined
05:08
r0bby joined,
r0bby left,
r0bby joined,
r0bby left,
r0bby joined,
r0bby left,
r0bby joined,
r0bby left,
r0bby joined
05:10
justatheory joined
05:23
r0bby_ joined
05:31
trunix joined
05:33
ahmadz left
05:44
dragonheart joined,
drupek1267 joined
05:52
drupek1267 left
|
|||
gaal | lumi: suggestion? | 06:01 | |
06:01
dragonheart left
|
|||
lumi | If it's possible to cut envEval out of env | 06:02 | |
Do you know why it is in Env? | 06:04 | ||
gaal | the envoronment closes on an evaluator function | 06:05 | |
there's only one place where this is modified though, in evaluate itself where it's rewired to evaluate' | 06:07 | ||
I don't understand that very well | |||
like, you only _don't_ replace the evaluator when you have a debug thing set up | 06:08 | ||
this sounds slow if it's recursive | |||
lumi | Yeah, iswym, it seems wonky | 06:09 | |
gaal | ah actually it isn't; because you rewire the evaluator with local and from then on you don't worry abou tit | ||
brb coffee | |||
lumi | Would you ever need the envCaller's envEval? I'm still not seeing what it's up to | 06:11 | |
gaal | I don't think so | 06:20 | |
lumi | In that case, it can probably be cut out of there | 06:21 | |
It should be possible (but not necessarily a good idea) to have it in a seperate ReaderT | |||
gaal | audreyt had a trick to tease apart circularity with newtypes, but I can't remember what it was | 06:23 | |
lumi | Got any leads? | ||
gaal | early pugs.val revisions | ||
lumi | If it doesn't actually belong in the frame, it probably *should* be removed | ||
gaal | there are only three concrete evaluators present | 06:24 | |
the debugging one, the const (return VUndef) one, and the real one | |||
gotta get back to work though | 06:25 | ||
06:25
Averell joined
|
|||
lumi | So maybe it can be replaced with a small sh^W data type (DebugEval|FakeEval|RealEval) | 06:25 | |
I need to go too | 06:26 | ||
gaal | unless the colsure effect is important | ||
moose, then. | 06:27 | ||
lumi | If it's important, it's only in the Debug case, sec | ||
It isn't, afaict | 06:28 | ||
It's not closing over anything | |||
Looks to me like it's just a trick to give up the debug evaluator as soon as possible | 06:29 | ||
Haskell code is easy to reason about | 06:30 | ||
gaal | so the problem is just with having the Eval type visible in Env.hs | 06:32 | |
or rather, the Env -> Eval Val type :) | 06:33 | ||
lumi | What problem? | 06:35 | |
I think it can live in Pugs.AST now? | |||
06:36
devogon joined
|
|||
lumi | I could be very wrong, but there's an evalExp there that just asks envEval and then uses it | 06:36 | |
Unless there's another circularity problem | |||
gaal | what are you refering to that can live in Pugs.AST? my starting point is that I want to move over Env to a separate module | 06:37 | |
it's in P.A.Internals now | |||
lumi | Why does (Env -> Eval Val) need to be visible in Pugs.*.Env? | 06:39 | |
gaal | er sorry, Exp -> Eval Val. That's the type of envEval | ||
lumi | Right, but still | 06:40 | |
Why does it need to be visible in P.A.Env? | |||
gaal | the alternative is to make envEval a datatype marking which to use, like you suggested | ||
but that's a runtime hit every call to evaluate | |||
um i want to put the Env type there, and it's a member... | 06:41 | ||
lumi | I wonder what the newtype trickery is | ||
gaal | svk log Pugs.Val then and moose around | ||
as you can tell, I'm not here | |||
lumi | I'll try to look later, I'm seriously ue to be gone | 06:42 | |
s/ue/due/ | |||
& | |||
06:55
sunnavy joined
07:10
dduncan left
07:25
takanori joined
07:31
devogon joined
08:04
iblechbot joined
08:12
rff joined
08:15
drupek12 joined
08:24
ludan joined
08:32
ahmadz joined
08:49
larsen_ joined
08:56
jerrylee joined
09:04
rho joined
09:28
polettix joined
09:32
rindolf joined,
the_dormant joined
09:35
franck__ joined
09:38
franck___ joined
09:49
ahmadz joined
09:51
_bernhard joined
|
|||
moritz | good morning ;) | 10:46 | |
10:56
kcwu joined
|
|||
rff | mornin' | 10:58 | |
11:19
buetow joined
11:34
cognominal_ joined
11:42
andara joined
11:59
REPLeffect joined
12:20
obvio171 joined
|
|||
offby1 | mrgn stnly | 12:57 | |
13:00
daxim joined
|
|||
gaal | IM IN UR BETAGAMS / RSN UR VWLS | 13:07 | |
13:11
the_dormant_ joined
13:30
ahmadz joined
13:46
rff joined
13:58
ruoso joined
14:06
deq` joined
14:07
BooK joined
14:16
elmex joined
14:25
ofer joined
14:45
lisppaste3 joined
15:18
mncharity joined
15:48
[particle] joined
15:59
ahmadz joined
|
|||
svnbot6 | r16622 | moritz++ | [irclog] removed warning about false range in regex | 16:05 | |
16:14
bonesss joined
16:18
Psyche^ joined
16:22
penk joined
16:34
Psyche^ is now known as Patterner
16:41
jedai joined
16:58
Psyche^ joined,
Psyche^ is now known as Patterner
17:05
Limbic_Region joined,
asksh joined
17:21
Psyche^ joined
17:22
offby1` joined
17:24
offby1` is now known as offby1
17:28
the_dormant joined
17:35
Psyche^ is now known as Patterner
17:42
SamB joined
17:49
mncharity joined
17:56
kanru joined
17:58
rindolf joined
18:21
jisom joined
18:28
awwaiid joined
18:33
jisom_ joined
18:35
tabris is now known as tabris|away
|
|||
svnbot6 | r16623 | gaal++ | * a few more ignore props | 18:35 | |
18:38
jisom joined,
kanru joined,
mncharity joined,
Patterner joined,
[particle] joined,
deq` joined,
polettix joined,
takanori joined,
evalbot_r16621 joined,
revdiablo joined,
mr_ank joined,
irclogbot joined,
wolverian joined,
Juerd joined,
PerlJam joined,
zamolxes joined,
f0rth_ joined,
orevdiabl joined,
f0rth joined
18:39
zamolxes_ joined,
Juerd_ joined
18:40
[particle1 joined,
franck__ joined
18:41
wolv joined,
Psyche^ joined
18:42
PerlPilot joined
18:44
Psyche^ is now known as Patterner,
wolv is now known as wolverian,
jisom joined,
kanru joined,
mncharity joined,
[particle] joined,
deq` joined,
polettix joined,
takanori joined,
evalbot_r16621 joined,
mr_ank joined,
irclogbot joined,
zamolxes joined
18:48
deq` joined
18:50
polettix joined,
Eidolos joined,
kanru joined,
jisom joined
18:56
dok joined
19:01
takanori joined
19:02
mncharity joined
|
|||
svnbot6 | r16624 | azawawi++ | README missing module update + proper use lib for bin/termserv.pl | 19:02 | |
r16625 | gaal++ | * separate internals functions for loading yaml strings and files | 19:23 | ||
mncharity | gaal! :) | 19:28 | |
gaal | moose! | 19:29 | |
I ran into your name just a few days ago, putter | |||
saw an ooooold comment you made on some website | 19:30 | ||
mncharity | I'm scattered far and wide. :) How goes? | 19:32 | |
gaal | not bad at all! | ||
except perhaps for the oppressive heat. i'm trying to work up the concentration to revisit compilation cache, and resist aping my cat, who is incessantly napping. that would not do, I prefer cats to apes. | 19:34 | ||
mncharity | lol | ||
I've been in python land lately. Creates cravings for p6. | 19:35 | ||
gaal | doesn't python has some metaclass stuff too? | ||
mncharity | air conditioning? | 19:36 | |
gaal | I don't know very much python but I've a feeling I'm about to pick up some soon | ||
only in the other room. actually the ambient temp isn't bad, it's this laptop that's frying me. I remember seeing some metal frame thingie that was supposed to support laptops in many positions (incl. the audrety one, I think). but I can't find it now | 19:37 | ||
mncharity | re py metaclass stuff, indeed. and there are some sub-communities which believe in dsl's. but it's far from say ruby's cultural embrace. lots of java-like 'the language is the language and why would you use anything else? that would just cause confusion'. | 19:40 | |
gaal | nod | 19:42 | |
mncharity pictures tube made of garbage bags used to feed cold air to a minicomputer, being moved from one room to another, while continuing to do orbital calcs for a satellite. :) | 19:43 | ||
(whenever someone has cooling issues, I think, well, you take some garbage bags and duct tape, and....) | 19:44 | ||
gaal | lol | 19:45 | |
Tene | I have a friend who did something like that... | 19:47 | |
Tene finds pictures. | |||
mncharity | :) | ||
clkao | w/in 38 | 19:48 | |
gaal | found the laptop thing I was looking for, it's called lapdawg, but apparently they're working on a new version. heh, sounds familiar. | ||
ahmadz | finally got runpugs working on mod_perl2 ;-) | 19:50 | |
Tene | pictures.qbfreak.net/v/computers/fa...?g2_page=3 | 19:51 | |
lambdabot | Title: Cooling System | ||
gaal | hee! | 19:53 | |
mncharity | lol. but what if it snows... | 19:54 | |
gaal looks for a lake ontario to pull out cold from | |||
ahmadz | interesting cooling system ;-) | ||
gaal | en.wikipedia.org/wiki/Deep_lake_water_cooling | 19:56 | |
lambdabot | Title: Deep lake water cooling - Wikipedia, the free encyclopedia | ||
gaal | also interesting cooling system :) | ||
mncharity | vinge had a sf story where people could teleport swap bits of matter with places they had been to. so you might visit a cool mountain so you could later provide air conditioning services. | 19:57 | |
gaal | I think Larry Niven had a vignette about Maxwell's demon | ||
allbery_b | one of his "unfinished stories" | 19:58 | |
gaal | this guy was living in a cave, and his demon was keeping out all the molecules moving too quickly | ||
allbery_b | it was the Warlock :) | ||
gaal | ah :) | ||
allbery_b | (from the _The Magic Goes Away_ series/world) | 19:59 | |
mncharity | re mod_perl2, nice. document, document, etc | 20:00 | |
gaal | going afk now... nice to moose 'ya again mncharity! | 20:01 | |
allbery_b | "Unfinished Story #1" from _All the Myriad Ways_ | ||
mncharity | gaal: indeed. happy moosing! | ||
gaal | }:) | ||
& | |||
20:06
|Jedai| joined
20:12
isaacd joined
20:17
felipe joined
20:31
PerlJam joined
20:36
irclogbot joined
|
|||
moritz wonders what happened to his irclogbot | 20:38 | ||
the last few lines where missing :( | |||
Tene | :( | ||
moritz | maybe I can import them from irssi's log | 20:39 | |
Tene | my irclogbot is missing the past few days. Internet connection has been down at my office since thursday. | ||
20:39
weinigLap joined
|
|||
moritz | Tene: you should do a svn up (in case you haven't already), the regex that searches for URLs+anchors previously produced warnings | 20:45 | |
fixed in r16622 | |||
20:52
jisom_ joined
|
|||
moritz | ok, I restored the missing lines in the irclog | 21:15 | |
joins and leaves are lost because I don't log them in irssi | |||
21:16
mako132_ joined
|
|||
polettix | moritz: may I help you? I have xchat logs on when I'm online, I can see if I have what you need | 21:21 | |
moritz | polettix: I don't think that's worth the effort... just a few hours joins and leaves that don't appear in the logs... | 21:23 | |
but thanks for your offer anyway, polettix++ | |||
polettix | ok :) | 21:24 | |
21:32
drupek12 joined
21:52
stevan_ joined
22:10
REPLeffect joined
22:32
SamB joined
22:37
orevdiabl is now known as revdiablo
22:40
meppl joined
22:47
bonesss joined
22:52
prism joined
22:55
thoughtpolice joined
22:59
weinigLap_ joined
23:16
demq joined
23:17
bsb joined
23:18
weinigLap_ joined
23:22
mr_ank joined
23:37
weinigLap joined
23:45
weinigLap_ joined
23:53
r0bby joined,
BooK_ joined
|