←2006-10-02 2006-10-03 2006-10-04→ ↑2006 ↑all
00:00:21 -!- jix has quit ("Bitte waehlen Sie eine Beerdigungnachricht").
00:29:20 -!- bsmntbombdood has left (?).
02:23:48 -!- GregorR-L has joined.
02:31:14 <GregorR-L> http://www.migniot.com/matrix/projects/jsvim < Does this work for any of you?
03:19:13 <calamari> doesn't seem to work here
04:17:06 -!- wooby has quit.
04:28:26 -!- GregorR-L has quit ("Leaving").
04:36:40 -!- RodgerTheGreat has joined.
04:46:55 -!- Sgeo has quit (Connection timed out).
04:49:23 -!- CakeProphet has quit (Read error: 113 (No route to host)).
05:18:55 -!- Eidolos has quit (Read error: 110 (Connection timed out)).
05:48:32 -!- GregorR-L has joined.
06:44:43 -!- calamari has quit ("Leaving").
07:20:01 -!- Eidolos has joined.
07:55:13 -!- GregorR-L has quit ("Leaving").
07:59:41 -!- ivan` has quit (" HydraIRC -> http://www.hydrairc.com <- The professional IRC Client").
07:59:59 -!- clog has quit (ended).
08:00:00 -!- clog has joined.
08:27:34 -!- pgimeno has quit (Read error: 104 (Connection reset by peer)).
08:42:08 -!- pgimeno has joined.
09:08:07 -!- anonfunc has joined.
09:49:46 -!- lindi- has quit (Read error: 104 (Connection reset by peer)).
09:54:49 -!- lindi- has joined.
11:00:07 -!- jix has joined.
12:01:17 -!- ihope_ has joined.
12:18:41 -!- ihope has quit (Read error: 110 (Connection timed out)).
13:45:53 -!- Asztal has joined.
13:49:39 -!- Asztal has quit (Read error: 104 (Connection reset by peer)).
13:49:41 -!- Azstal has joined.
13:49:42 -!- Azstal has changed nick to Asztal.
14:10:54 -!- Asztal has quit (Read error: 110 (Connection timed out)).
14:31:58 -!- anonfunc has quit.
14:39:02 -!- CakeProphet has joined.
14:55:47 -!- Azstal has joined.
14:55:50 -!- Azstal has changed nick to Asztal.
15:32:57 <CakeProphet> Hmmm
16:45:23 <CakeProphet> Argh
16:45:32 <CakeProphet> I hate when I get weird indention errors in Python that make absolutely no sense.
17:03:31 -!- calamari has joined.
18:09:45 -!- CakeProphet has quit ("haaaaaaaaaa").
18:17:45 -!- CakeProphet has joined.
18:47:01 -!- GregorR-L has joined.
19:00:35 -!- oerjan has joined.
19:03:38 * pikhq really, really hates the subtlety of these $#@% bugs
19:04:21 <oerjan> what bug?
19:10:05 -!- fr34k has joined.
19:10:07 <fr34k> lo
19:10:12 -!- fr34k has changed nick to boblol.
19:10:24 <oerjan> en
19:10:44 <oerjan> (hi was too obvious)
19:10:53 <boblol> ??
19:11:03 <boblol> oh
19:11:05 <boblol> i see
19:11:18 <boblol> lo = low, hi = high ??
19:11:26 <oerjan> right
19:11:36 <boblol> ah
19:11:43 <boblol> that wasnt supposed to be like that
19:11:43 <boblol> anyho
19:12:20 <boblol> still havn't solved twenty :P
19:12:57 <oerjan> well, cheat like i accidentally did
19:13:28 <oerjan> or let's restate:
19:13:42 <oerjan> if twenty -> twnt, then twentyone -> ?
19:13:45 <boblol> but i cant find anythin on google
19:14:09 <oerjan> i think i googled for twnt
19:14:45 <oerjan> (hm, maybe i cheated on purpose that time. don't remember.)
19:16:20 -!- fr34k has joined.
19:16:22 <fr34k> disconn!
19:16:52 <fr34k> could someone kick boblol? (thas me)
19:17:47 <lament> fr34k: use nickserv.
19:19:37 <fr34k> what do you mean?
19:21:09 <lament> fr34k: /msg nickserv help
19:21:14 <oerjan> do /msg nickserv ghost <nickname> <password>, i think
19:22:11 <fr34k> oki
19:22:29 -!- boblol has quit (Nick collision from services.).
19:23:06 <oerjan> btw, is there any difference between ghost and recover?
19:24:03 -!- fr34k has changed nick to boblol.
19:24:07 <boblol> i dunno
19:27:04 -!- boblol has changed nick to boblol|afk.
19:29:02 <pikhq> All I know for sure is that, somehow, *temp2=0;*temp2+=1; leaves (*temp2==0).
19:30:29 <oerjan> that sounds rather impossible.
19:31:15 <pikhq> Begin: GDB flood
19:31:19 <pikhq> (gdb) print *temp2
19:31:19 <pikhq> $16 = 0 '\0'
19:31:19 <pikhq> (gdb) set variable *temp2++
19:31:19 <pikhq> (gdb) print *temp2
19:31:19 <pikhq> $17 = 0 '\0'
19:31:21 <pikhq> (gdb)
19:31:37 <pikhq> That. . . Doesn't seem possible.
19:32:42 <oerjan> um, *temp2++ might actually increment temp2, not *temp2. not quite sure.
19:33:41 <oerjan> but i seem to recall something about pre-/postfix C operators acting from right to left.
19:33:53 <pikhq> . . . It *did*.
19:33:56 <pikhq> GAH!
19:34:06 <pikhq> ++*temp2;?
19:34:09 <oerjan> however that would not explain *temp2+=1.
19:34:20 <pikhq> The code is currentlt *temp2++.
19:35:17 <oerjan> well, move ++ or use parentheses
19:35:37 <pikhq> It's script generated code. . .
19:35:44 * pikhq curses at pointer arithmetic
19:36:01 <oerjan> BFM?
19:36:13 -!- calamari has quit ("Leaving").
19:36:14 <pikhq> Yup.
19:36:16 <pikhq> BFM2C
19:36:36 <oerjan> that's what i meant
19:37:15 <oerjan> well, have the script insert parentheses.
19:47:52 -!- GregorR-L has quit ("Leaving").
20:07:43 <boblol|afk> hey pikhq?
20:29:55 -!- boblol|afk has quit.
20:56:51 -!- tgwizard has joined.
21:29:33 -!- ihope_ has quit ("http://tunes.org/~nef/logs/esoteric/06.08.09").
21:35:42 -!- jix has quit ("Bitte waehlen Sie eine Beerdigungnachricht").
21:54:49 -!- tgwizard has quit (Remote closed the connection).
22:16:33 -!- GregorR-L has joined.
22:32:52 -!- ivan` has joined.
22:32:53 -!- oerjan has quit ("Fru Ibsens ripsbusker og andre buskvekster").
23:19:20 -!- ihope has joined.
23:19:46 <ihope> My biology teacher told me to study, and I studied.
23:19:55 <ihope> I didn't study much, of course.
23:20:33 <ihope> And my pre-calc teacher told me to study too, but I don't feel like it.
23:20:54 <ihope> And for English, there's some homework that probably isn't due tomorrow.
23:21:02 <ihope> Same for pre-calc.
23:25:39 <ihope> So I've decided I'm done with homework for today.
23:27:06 <pikhq> . . . You in HS, too?
23:27:49 -!- |wez| has joined.
23:33:39 <|wez|> what is the criteria for a language to be Turing-complete?
23:33:46 <lament> um.
23:33:52 <lament> it has to be turing-complete.
23:34:05 <pikhq> It needs to be (theoretically) capable of computing anything that can be computed.
23:34:15 <lament> it has to be equivalent in power to a turing-machine, or better.
23:34:32 <pikhq> The easiest way of proving this is proving that one can translate Brainfuck into the language. ;)
23:36:00 <|wez|> I am working on my first Esoteric language, but I guess it is not turing-complete then =)
23:36:28 <pikhq> What commands does it have?
23:36:40 <|wez|> http://nocluestudios.com/MonkeyCode/
23:37:18 <pikhq> *echm* Would it kill you to make it free software?
23:38:13 <|wez|> no, I plan to do it
23:38:13 <Asztal> all your code are ... nevermind
23:39:16 <pikhq> By "free", I do of course mean "allow all to use, study, share, and change". ;)
23:39:40 <|wez|> I know...
23:39:44 <pikhq> Without that, it might not ever run on my OS, anyways. . .
23:39:50 * pikhq is a GNU/Linux user
23:40:16 <lament> um, .exe, what's that?
23:40:25 <|wez|> but I wants to clean up the source and stuff, before I release the source
23:40:58 <pikhq> Ah.
23:41:07 <pikhq> lament: A Windows binary.
23:41:14 <pikhq> Gross, ain't it?
23:41:26 <lament> oh, those things that sometimes get sent in email attachments that my ISP marks as a virus
23:41:31 <lament> i get it now
23:42:04 <|wez|> smoke time brb
23:42:11 <pikhq> lament: Ugly stuff.
23:42:22 <pikhq> I hear that it doesn't even really do AMD64.
23:46:51 <|wez|> isn't amd mobile sempron 64 bit?
23:47:05 <pikhq> Yeah.
23:47:16 <pikhq> But the OS you're using probably isn't. ;)
23:48:34 <|wez|> I guess it isn't =P
23:50:03 <|wez|> any comments about MonkeyCode?
23:50:41 <pikhq> A) Needs a branching operation B) Needs to be free software.
23:52:51 <|wez|> a) I don't understand what you mean, since english isn't my first language b)It will be soon,GPL or public domain
23:55:30 <pikhq> A branching operation would mean something like a conditional "GOTO" statement (or something similar). . .
23:56:27 <pikhq> Brainfuck has the [], BASIC has IF, C has if() {} & while() {}, and Tcl has if {} {} & while {} {}.
23:56:56 <pikhq> Without that, you're not Turing complete.
23:57:26 <|wez|> I understand
23:57:59 <pikhq> You have nothing of that sort. . .
23:58:05 <|wez|> I know
23:58:10 <|wez|> it is on my list
23:58:14 <|wez|> of things to do
←2006-10-02 2006-10-03 2006-10-04→ ↑2006 ↑all