←2006-02-05 2006-02-06 2006-02-07→ ↑2006 ↑all
00:15:07 -!- sp3tt has quit (Read error: 104 (Connection reset by peer)).
00:16:54 -!- CXI has quit (Connection reset by peer).
00:17:51 -!- CXI has joined.
00:17:55 -!- sp3tt has joined.
01:33:10 -!- CXI has quit (Read error: 104 (Connection reset by peer)).
01:33:42 -!- CXI has joined.
02:59:33 -!- Arrogant has joined.
03:05:17 -!- Arrogant has quit ("I AM QUIT HAVE A NICE DAY").
03:42:33 <GregorR> For those who aren't on ##brainfuck but may be interested (and to subvert the entire point of forking this channel);
03:42:39 <GregorR> C2BF has just compiled its first application.
03:45:29 -!- kipple has quit (Read error: 110 (Connection timed out)).
04:51:50 -!- Sgeo has quit.
04:56:28 -!- CXII has joined.
05:14:37 -!- CXI has quit (Read error: 110 (Connection timed out)).
06:32:20 -!- CXII has changed nick to CXI.
07:52:09 -!- calamari has quit ("Leaving").
07:59:59 -!- clog has quit (ended).
08:00:00 -!- clog has joined.
09:33:52 -!- CXI has quit (Read error: 110 (Connection timed out)).
09:35:36 -!- CXI has joined.
10:26:14 <SimonRC> hi
11:07:19 * SimonRC goes
13:55:57 -!- jix has joined.
14:34:39 -!- CXI has quit ("If you're reading this, it's probably xchat's fault.").
14:36:13 -!- CXI has joined.
15:23:30 -!- sekhmet has quit ("omg/quit").
15:24:05 -!- sekhmet has joined.
15:55:01 -!- nooga has joined.
15:55:06 <nooga> hi
15:55:42 * nooga is looking for hi-res pics of Chuck Norris xD
16:01:40 -!- variant has joined.
16:22:01 -!- calamari has joined.
16:23:17 <calamari> hi
16:41:46 -!- nooga has quit (Read error: 110 (Connection timed out)).
17:24:36 -!- StelK has joined.
17:39:51 -!- nooga has joined.
17:39:59 <nooga> re
17:45:25 <nooga> GregorR: hows c2bf/
17:59:05 <GregorR> nooga: I'm working on compiling a fibonacci sequence generator right now (first one with recursion)
17:59:15 <nooga> woh
17:59:24 <GregorR> Ironically, the problem is not in function calls or recursion, but in that I wrote a broken '<=' algorithm X-P
17:59:27 <nooga> show the program?
17:59:43 <calamari> ahh, relational operator fun
17:59:48 <GregorR> Ummm ......
17:59:52 <GregorR> As in C2BF? It's in CVS.
17:59:58 * calamari suggests a bfbasic cure
18:01:51 * GregorR uses /me to be vague about what he's actually saying.
18:02:16 <GregorR> nooga: http://cvs.sourceforge.net/viewcvs.py/brainfuck/c2bf/
18:02:31 <calamari> GregorR: http://www.rafb.net/paste/results/sm1Ehg21.html
18:02:35 <calamari> sorry bout the spacing :(
18:03:17 <calamari> oh.. <= not >= hehe
18:04:13 <GregorR> Hmmmmmmmmmmmmm, looks sort of like you subtracted one from the other and gave yourself a point if the other became 0?
18:04:34 <calamari> yep
18:04:37 <calamari> something like that
18:04:44 <calamari> been a LONG time since I wrote these
18:04:51 <calamari> even before bfbasic existed
18:05:02 <GregorR> Heh
18:05:21 <GregorR> Looks like in my attempt to get fibo working I broke function calls in general X-P
18:05:57 <calamari> http://www.rafb.net/paste/results/LttdAA66.html
18:06:05 <calamari> that's <=
18:06:58 -!- kipple has joined.
18:07:03 <calamari> I'm sure there's probably a better dbc-elegant solution, but this gets the job done at least :)
18:07:26 <calamari> hi kipple
18:08:23 <kipple> hi
18:08:57 <calamari> hmm, looks likethat's not exactly a drop-in solution, since I think you'd want 0 / 1 not 0 /255
18:09:16 <calamari> but it's easily fixed, // @V1- V1=255
18:09:23 <calamari> changes to @V1+
18:10:06 <nooga> you're genious gregor
18:10:52 <GregorR> See, just a little shameless flattery, that's all I need to keep me going X-P
18:12:33 <calamari> hrm.. something about that code smells
18:12:35 <calamari> / @V1[@T4+@V1-]- T4=V1:V1=255
18:12:49 * calamari cheks out the cvs
18:13:05 <GregorR> It should compile up to test3.
18:13:21 <GregorR> test4 is borked because I broke function calling .... I'll fix that tonight (can't fix it now, time to go to schoo.
18:13:22 <GregorR> *school).
18:14:37 <calamari> do you mind using bfbasic routines? if not, I can get some of that done easily
18:15:14 <GregorR> Of course I don't, but I actually have a function calling convention set up, just broken. For other stuff, feel free to toss 'em in.
18:15:18 <GregorR> Just keep in mind the layout:
18:15:38 <calamari> well, you already have + done, so I can use that as an example
18:15:52 <GregorR> {S}{H}{ST}{W}{C} - you can use walk and carry as temps, if you want more, grab the next walk and carry. And make sure to zero them when you're done.
18:15:56 <GregorR> Yeah.
18:16:09 <GregorR> Basically, you do to generate_expression calls of some sort, then you combine them in some way ^^
18:16:24 <GregorR> If you want to fix the genbf_relational_expr's, that'd be awesome too ;)
18:16:48 <calamari> well, I have code for > < = != <= >= && || not neg
18:17:00 <calamari> * /
18:17:35 <GregorR> Err, one last thing.
18:17:40 <GregorR> No offense, but please submit patches.
18:17:43 <GregorR> Rather than committing to CVS.
18:17:50 <GregorR> So I can make sure everything is 100% compliant ^^
18:18:05 <GregorR> (Except for function calls ;) )
18:18:25 <calamari> not sure how to do that, but if something is wrong, isn't cvs good for that?
18:18:38 <calamari> I won't be messing with anything except operators
18:18:56 <GregorR> Well, tell me exactly what files you edited then.
18:18:59 <calamari> sure
18:18:59 <GregorR> I just want to make sure I can review it.
18:19:02 <calamari> np
18:19:09 <GregorR> I guess asking for patches is a bit ridiculous, isn't it :-P
18:19:17 <GregorR> Oh, and make sure to put your copyright notice on them, too!
18:19:25 <GregorR> Hate having contributors not having copyright lines :P
18:19:36 <calamari> ok
18:21:58 <kipple> wow, you got a working c2bf already? nice work!
18:25:23 <nooga> will be funny to write bflibc :>
18:25:37 <nooga> and then... we'll write unix-like OS in c2bf :D
18:26:59 <calamari> unfortunately not
18:27:16 <calamari> bf has a nasty lack of file ability
18:27:52 <calamari> although you could interpret an os inside bf, with a file capable version of bf included
18:28:06 <calamari> eeew hehe
18:30:21 <calamari> I suppose it could be made to work if the program knew exactly which files it'd be using in advance (and only those files).. then they'd be fed as input in a certain format, then re-output .. the os would then save the output as the new files
18:31:52 <nooga> i konw
18:31:56 <nooga> that was a joke ;p
18:37:09 -!- StelK has quit (Read error: 110 (Connection timed out)).
18:56:18 -!- GregorR-L has joined.
18:56:40 <GregorR-L> Well, here I am in Renaissance Studies.
18:59:51 <GregorR-L> NOT writing C2BF :'(
18:59:55 <GregorR-L> Hmm, why not.
18:59:59 <GregorR-L> I hvae network access.
19:00:02 <GregorR-L> I have CVS and compilers.
19:00:08 <GregorR-L> *have
19:18:11 <calamari> thou slacker!
19:27:35 <kipple> he has the means, motive and opportunity. I say he's guilty
20:14:51 <GregorR-L> lol
20:14:59 -!- GregorR-L has quit (Remote closed the connection).
20:15:00 -!- GregorR-L has joined.
20:15:09 <GregorR-L> Heh
20:15:14 <GregorR-L> I am indeed guilty, muaha.
20:18:22 <GregorR-L> Bah, don't have egobfi on this compy.
20:22:32 -!- Sgeo has joined.
20:40:58 -!- nooga has quit (Read error: 110 (Connection timed out)).
21:32:11 -!- jix has quit ("Bitte waehlen Sie eine Beerdigungnachricht").
21:49:53 -!- GregorR-L has quit.
23:57:09 <kipple> does anyone know if there are available archives of the mailing list prior to 2001?
←2006-02-05 2006-02-06 2006-02-07→ ↑2006 ↑all