IRC log started Mon Jan 4 00:00:01 1999 [msg(TUNES)] permlog 1999.0104 12:10am ωνω SignOff _QZ: #TUNES (BRiX [http://www.qzx.com/brix] :: sleep) Later all! (need sleep) ωνω lar1 [larman@1Cust105.tnt20.sfo3.da.uu.net] has left #tunes [] 01:40am ωνω stevely [young@sid37.revealed.net] has joined #TUNES whats this room all about? ωνω SignOff stevely: #TUNES (guh) 10:40am ωνω Fare [rideaufr@137.194.160.71] has joined #Tunes ωνω binEng [bineng@dialup49-2-5.swipnet.se] has joined #tunes What format is .bz2 ? bzip2 see in pub/tunes/utilities/ do I need a special unpacker for it? does it work under windows? 11:30am ωνω hcf [nef@escher.sdi.agate.net] has joined #tunes Tril: u here? u betcha, hcf 11:50am ωνω tcn [tcn@cci-209150250093.clarityconnect.net] has joined #tunes hello hoy tcn hi I just picked up a new modem.. this thing kicks ass! No more lag for me :) π Fare/#Tunes is waiting for cable modem... ωνω SignOff binEng: #TUNES (Leaving) Nice, this thing's 2-4 times faster than my old 28.8 and it's reliable.. tcn: ISDN? No, just k56.. actually it's only using v.34 right now.. and it still beats my old USR I think USR just sucks Well, what's up Fare? problems hmm, like what? I spent the week with hardware topics: installing a LAN, getting my home computer back from a friend I let it to 12:10pm hehe.. any luck? I'm now considering making a fresh linux installation on a removeable IDE disk, that I'll share between home and office the LAN works great mucho better than plip hehe, yeah Where do you work? (PLIP is 50kB/s FTP between pentiums, which is pretty good, but it also eat 30-90% CPU) I'm considering partition sizes currently: how much do I need for a whole RedHat+contrib install w/o having to bother about sizes? I don't use redhat.. and how easy is it to live with a "fake" install (i.e., all redhat is in /redhat with rpm --root, readonly outside of rpm, with the real /usr being a link, and the real / being synchronized with rsync) tcn: what do you use? Slackware, moving to Debian (haven't got that setup how I want it yet) π Fare/#Tunes has the need for a sharing installation between mostly disconnected as well as connected computers. I would guess about 500 megs for a "full install", but if it fills a whole CD, maybe more.. Hey, I'm working on the same problem.. I'm considering like 1.5G for the "full install + GNOME + KDE + office stuff (for my parents) my current disk has already over 600MB, w/o any office stuff or KDE or GNOME. Hum, maybe 1.2GB will do KDE for the parents.. hehe.. that sorta worked for me did it? and did you try GNOME? My dad has an engineering firm, and he wants an automated way to share files between home & office.. I might set him up with CVS. code or data? GNOME, no. for data, CVS and/or rsync will do 12:20pm My dad mostly sends CAD files, also word documents, billing, spreadsheets, etc. Hmm, I'll look at rsync.. may be simpler than CVS. rsync is great if it's either single-directed, or you know how to maintain a "lock" so as to determine the riht direction (e.g. a "pumpkin" floppy) CVS is great if there's a server you can always connect to my removeable IDE will be my pumpkin Hey, what's GNOME? www.gnome.org Sounds kinda like KDE (But is "GNU" compatible with "easy to use"?). Is it any more efficient than KDE? !services1.openprojects.net!! Warning: unable to set modes on channel #kde. Are your servers' U:lines configured correctly? better architectured I'll have to give it a try, then. Have we agreed on a license policy yet? 12:30pm being alone, I agreed with myself on GPL/LGPL Well, I second that motion I thought it would be a good idea to have a license policy in place if we're writing code which is available to anyone. I wrote another boot loader yesterday.. except I'm still having trouble with protected mode. aaaaaaaaaargh btw, the oskit is out, already Yup, got it. and GRUB, LILO, LOADLIN, SOLO, do a good job as boot loading, too so there is little point in writing a boot loader for an OS you might do it for the sake of it, but don't pretend it's OS development anymore hehe I'm more concerned with protected mode than boot loading, actually. That's still (and probably always will be) a fuzzy subject. protected mode itself is simple the problem is in I/O and interrupt handling (which problem you can avoid in real-mode, since you can rely on the BIOS) which is where SOLO, the oskit, and other stuff come, so as to help you (actually, if you can manage to setup V86 mode, you might still use the BIOS -- as does SOLO, I presume) Yeah, we need a good V86 handler, to call the BIOS from protected mode. Of course, for performance's sake, we want to write our own drivers for important things. I should look at the oskit some more. When I first got it, I said "bsd? linux? what else is new? I'm disappointed! Plus, it's all in C!" 12:40pm performance is not important, to begin with it becomes important when there's something to do at all Yeah. BIOS is expedient :) but harmful I should bring you up to date on my prototype.. The goal is run from either Linux or from a clean boot, and bring up a persistent object store. good I have User -- Terminal -- Terminal drivers -- Terminal abstraction -- User Interface -- Objects -- Object Manager -- Storage uh? The User Interface will be my Forth interpreter, for now. User is you, Terminal is screen & keyboard, Terminal Drivers are low-level, Terminal abstraction is a generic text terminal.. 12:50pm And the Object Manager handles persistent storage how do you handle communication between persistent and transient objects? Oh, that's Phase 2: ??? :) how do you handle failsafe commitment of updates to the persistent store? I still have to write the object manager, and define exactly what an object is. Right now, I don't really care if it's failsafe, because it's just a prototype. I had an idea about that, though: When a sector is re-written to disk, it's written to a different place, THEN the old one is marked as deleted.. so a loss of power during the write won't corrupt the only copy. tcn: everyone knows that trick. The real problem is: IDE or SCSI offer NO WARRANTY when the sector will ACTUALLY be written Hmmm.. caches, etc Is there a way to know when it'll be written, though? Or flush the cache? you MAY flush the cache, but then, performance drops to zero When everything else is idle, the system might as well flush everything "when everything is idle" might exist on a single-user workstation, but not anywhere else Then if things get busy, the disk caches will have to be written out when they're full. Ok, we're off on a tangent 01:00pm ok, so if you know the size of the buffers, AND know the order in which things are written to disk, you may know when the disk is done MAYBE recent versions of the SCSI or ATA specifications address these issues That won't help since there are so many old machines (actually, I'm SURE they do, but I fear they do not do it in a convenient way) The real problem is recovering after a crash exactly The disk storage should be kept in as consistent a state as possible, and during crash recovery, the system must fix any inconsistencies. it's also synchronizing with other hosts, and being able to warranty "this thing has been committed" because different agents have different requirements, we cannot have a one-size-fits-all synch policy, either right. In a later prototype, I'd like to implement *redundant* distributed storage... sure sure sure But for now, I don't give a rat's ass the first thing is 1) implement persistent storage 2) factor it so as to allow different synch policies, yet consistent communication between objects You forgot 0.9) Define an object format That's where I'm at oh, certainly 0) allow for communication between objects with different sets of assumptions (object formats, memory pools, synch policies) I'm not looking for a perfect object format, just something, anything. so first, let's have a low-level object format suited for transient data manipulation Agreed that's the oskit oskit has persistent storage?? 01:10pm no, oskit has basic memory pool management and I/O drivers I'll have to take the time to look it oskit in detail. I'll keep in mind that we should be able to use drivers from other OS's in binary form. binary form???? what's that? it doesn't even exist! object files, whatever :) the only binary form in which a linux driver exists is .c even linux can't freely reuse drivers in object format Lemme explain there can be .o modules, but they must have been compiled specifically in the same setting as the kernel .o is death guaranteed As long as there aren't too many interdependencies, it should be possible... how much work is entailed, I have no idea :) reusing windows drivers? I wouldn't touch them with a 10' pole! windows, of course not! the oskit does things right I'm thinking, maybe GGI. ggi also There's a bazillion PC video cards (unfortunately) and I don't see us writing drivers for them all anytime soon. why not reuse GGI as is? 01:20pm just add a few adaptations to the GGI sources, as needed Sure. Is it easy to interface to? abi, ggi? i haven't a clue, tcn Fare, you know the GGI web site address? www.ggi-project.org thanks it's as easy (yuck) as any C thing Hmm, guess it's time to install GGI and get used to it I just taught myself how to interface C with ASM under Linux.. Later we'll need some kind of "Tunes-to-C" linker. eros released abi: ggi is at www.ggi-project.org eros? another new OS? EROS is at http://www.cis.upenn.edu/~eros/ EROS is also "Extremely Reliable OS" okay, hcf. 01:30pm Does OSkit have anything for initializing pmode? tcn: if not, I wonder how they use Linux drivers nevermind, found it maybe they have a software emulator for pmode running in real mode? Man, this is so wierd I might not bother. Using C to create a GDT?? Hmm.. they use about 100 files in 5 directories to what I do in 5 files.. Very academic ;) I can work with this.. it's a different perspective.. :) 01:40pm >>> tcn [tcn@cci-209150250093.clarityconnect.net] requested PING 915485789 from #tunes C isn't higher-level than assembly it's just more crippled hehe (though somehow portable) It's an assembler that's portable across a certain class of machines it doesn't give you the full power of assembly try c-- for that right. C just plain sucks. and not giving you that power is VERY crippling A good "portable assembler" is Forth. Forth isn't that portable, and comes with a very ill-designed library its two-stack model doesn't fit most hardware It's a good concept, even if ANS forth sucks. plus living with unspecified stack size limitations make it a hard for the programmer, while lack of limitation make it a hell of the implementer or performance Lots of chips adapt easily to 2 stacks. With the 68k series, you just use one of the 7 Address registers.. it's a problem of memory management, all the more in presence of multithreading, etc how big do you allocate stacks? FORTH's low-levelness gets in the way and doesn't help. Good question :) I like to have them share the same chunk of memory, one grows top-down, run grows bottom-up s/run/one 01:50pm at least, with LISP-compiled code, you can analyze it, and decide things; FORTH, with its low-level model, forces you to take early decisions at a time you don't have enough info to decide, then live with those usually bad decisions ωνω binEng [bineng@dialup116-2-14.swipnet.se] has joined #tunes (C has the same problems, too, but with FORTH, double stacks double the problem) ωνω SignOff binEng: #TUNES (Leaving) (I mean, even for "simple" cases) So you're planning to use a simple LISP/Scheme compiler for the LLL, right? ωνω binEng [bineng@dialup116-2-14.swipnet.se] has joined #tunes howdy, bineng hi! sure it's compile into some FORTH thing, but we'll have the high-level information needed to make the decisions about sizes Maybe the whole "LLL" issue will be irrelevant, if the HLL ends up being really "scalable" what's up, bineng? the LLL has always been implementation issue not a specification issue heh tcn, nothing's up, that's the problem. bineng, who's the Unios guy who works for AMI? who? I'll ask Beholder speaking about Beholder, anyone seen him here today? Wow, I just checked the logs. Hardly anyone's been here today. all here: what do u think of holding scheduled irc meetings? hcf: only on topics known in advance 02:00pm hcf: good idea, with or without topics. Fare: rite, available via the web, perhaps email'd maybe even weekly meetings? You can try :) First step would be to make a schedule of when everyone's available (roughly) binEng: i was thinking nightly, but maybe im nuts hcf: If we do that we won't get any work done. nightly meetings? *every* night? im not saying take away anymore of one's usual time than one usually gives to #tunes im saying more organization of the time spent here s/more/more purposefulness, prelificness, and/ yep It's a noble goal Well I'm outta here :( Lateer y'all cya ωνω SignOff tcn: #TUNES (Leaving) binEng: u say weekly meetings? 02:10pm it's an idea Fare: and what of u? In another group I was, we had that. It worked good. hmm, timezones that's a problem. Maybe in the weekends... binEng: can u give me ur toafm abi: toafm? it has been said that toafm is times of availability for meetings Weekdays: 17:00 - 20:00 GMT Friday, Saturday: 17:00 - 01:00 GMT Sundays as weekdays 02:20pm k irc meeting works for finding a quick agreement on some details, not for taking grand decisions yes, and for asking somebody about details we need some quick agreements, no? Do you mean soon, or small? binEng: huh? small, soon I don't know. We need to agree on the changes that are to be made to tunes (the project) and that'll have to be soon, yes Fare: does weekly work for u? might Fare: can u give me ur toafm abi: toafm? toafm is times of availability for meetings aha! :) 02:30pm abi: yafla rumour has it yafla is yet another five letter acronym ahem. looks like SCSI does cache handling right, whereas ATA doesn't. Fare: give me ur toafm So if you want *reliable* persistent storage, you gotta have SCSI, or use vendor specific ATA extensions (which I doubt exist) toafm? i think toafm is times of availability for meetings I have no toadm toafm but I might respond to given meetings gotta go, now ωνω SignOff Fare: #TUNES (Connection reset by pear) so for meetings we need pre-chosen topics, TOAFMs (leading to a chosen time), and what? binEng? umm not necessarily pre-chosen topics... we need someone to lead the discussions, I think and someone to act as secretary and sum up the log . tril -> leader, hcf -> sum'er ? 02:40pm fine for me binEng -> leader, binEng -> sum'er ? ;) nah :) π hcf/#tunes is away 04/01/99 17:44:04 EDT : food π Tril/#TUNES is back from the dead. Gone 20 hrs 11 min 24 secs abi, what is up? i heard up was http://slashdot.org/ or underground piano wb Tril hi.. is the maaailing list calming down yet? any of them? yes it is :( it's equilibrium you know. It slows down because nobody can respond fast enough... heh not a mail for hours :( it would only continue growing if there were more people posting. But we have only 5 or 6, so it's not that bad... ωνω LinuxUser [macgyver@bjas1-p8.telepac.pt] has joined #tunes TUNES : There is some UniOS channel on this server ?? if everybody replies to all posts, we'd have an exponential growth of traffic :) LinuxUser: Yes, UniOS is using this channel, #TUNES! you can talk about unios right here :) yep 02:50pm binEng's a long time member kinda. Even if now UniOS now isn't that old :) oh!! ok... Some one here have experience with asm ?? limited. how much limited?? you want exact figures? :) go on... no, I want answers about...!! LinuxUser: what is your question? tril, good point :) At this moment I am under developping an Operating System... It has at the moment some asm libs yet... ok...still no question I can see. go on it now runs on a floppy disk and is going very well... This has nothing to do with UniOS, eh. why not? maybe he is writing uniOS so, I enabled the PMODE routine... and then the computer reboots !! tril: yeah, to surprise us :) LinuxUser: did you do a far JMP to initialize the eip? 03:00pm yes ok, you've exhausted my knowledge :) I did all very well ...(I hope!!) hehe.. do you wanna send us the source to look at it, even if we aren't expert asm programmers? tried on another machine? (desperate suggestion) but it allways reboots, even if I change something, what I think that is not necessary... are you using paging or segmentation? did you setup the GDT and LDT correctly yes, I am using paging when I switch to PMODE!! what is your memory model? flat? what you want me to say ?? what descriptors I made ?? Is what you want to mean with it ?? well, flat mode has just one segment and all the code runs in it, with different page tables. can you send me the code? I've got a tutur if you want to see it. I made one 4GB Page to code32, other to DATA32... executable and read/write respectivelly... eih! some here yet?? 03:10pm ωνω SignOff binEng: #TUNES (Ping timeout for binEng[dialup116-2-14.swipnet.se]) π hcf/#tunes is back ωνω binEng2 [bineng@dialup41-3-33.swipnet.se] has joined #tunes ...... did you setup all the interrupts? binEng2 : You have a good, real good tutorial about PMODE ?? if you don't it may switch back to realmode and not go to the right address, causing a reboot I don't know how good it is, but it seems versatile Tril : I put the interrupt register with , limit 0, address 0 so, what you think ?? i dunno..i think there's always NMI which can trigger a swtch back to realmode!! I don't know what I am talking about though... binEng2 : can you send me the tutorial ?? LinuxUser: I have a mailing list for os programming help, just like you are asking. It's called OS-HELP, do you want to subscribe and ask your question there? LinuxUser, ok trying yes, I want, how I can subscribe ?? http://home7.swipnet.se/~w-71548/PMTUTOR.zip LinuxUser: Go to http://www2.tunes.org/cgi-bin/list-control. You can subscribe there by choosing the OS-HELP list from the menu, entering your address, and click "Do it" or if you like using mail to subscribe, there are instructions on that page too binEng2 : I cann't make ftp to that ?? sure you can ωνω binEng2 is now known as binEng thanks Tril !! 03:20pm you're welcome.. nobody has used that list yet, but there are people on it. I hope some of them will help you. Tril: hav u read the scroll about irc meetings (rite b4 u returned from the dead)? strange, I can't get throu with ftp... can I mail it to you? thanks, again, I hope someone will discover what is the problem!! hcf: no, hold on i'll read irc logs as soon as i finish up this email binEng : can you make dcc with your irc client ?? help dcc I don't know what I'm doing wrong, but I've never been able to send anything over DCC Tril: i figured out why i was getting biff'd on bespin, bash's MAILCHECK var was set hcf does that write the first 5 lines of the msg to yer screen or just "You have new mail." ? just u hav mail binEng: /dcc send Nick Filename hcf: you don't want to get "You have new mail" written to the screen? Hmm LinuxUser? somebody said LinuxUser was using paging when I switch to PMODE!! LinuxUser: /dcc get nef 03:30pm binEng : did you send something ?? yes... Tril: not to the bespin telnet session, i pop it instead I dont see anything ! I don't get throu Tril: getting biff'd everytime thers a new mlist msg would be annoying DCC Send of PMTUTOR.zip to LinuxUser timed out... - see? :( binEng : something is wrong ! LU, I guessed so too :) How you made it ?? made what LinuxUser: u gonna do '/dcc get nef'? send it ?? I tried everything... /dcc send, throu the menus... can you make again ?? hmm... packet size? LinuxUser: /dcc get nef oh! thanks ... so many time, I didn't use it !!.... DCC ports? DCC Send of PMTUTOR.zip to LinuxUser timed out... - binEng: he got it, from nef from who? binEng : do /dcc send linuxUser pmtutor.zip 03:40pm nef/@#skism hcf's alter-ego on irc can you offer the file or not ?? binEng ?? no I can't. sorry. it to me said : connection refused ... unless... hang on http://members.xoom.com/unios/PMTUTOR.zip - if you can come up with what the ftp address might be, I can't seem to d/l ftp today ok, thanks all of you around this channell, I hope only to know what is the problem with some much reboots... LinuxUser wait! what, Tril? if you try Bochs it lets you debug Pmode programs without rebooting, using emulation. http://www.bochs.com/ .. _QZ says it is quite good, but it is commercial (30-day trial period). 03:50pm it is only $25 though, if you are writing an OS you might consider buying it if it is useful. but, I am writing the OS on Linux !! LinuxUser: what do you mean? You use the GNU assembler for it? ωνω SignOff hcf: #TUNES (Ping timeout for hcf[escher.sdi.agate.net]) ωνω hcf [nef@escher.sdi.agate.net] has joined #tunes hey let's discuss something. Anything. Bochs can run in Linux. binEng: I just wrote ya an email exciting! I'll have a look k, reading It's very long... I wrote most of it yesterday, but didn't send it because it wasn't finished! :P now I have to read irc logs because I promised hcf long, yes Tril, is the Tunes language interpreted? binEng: did you figure out bzip2? it looks like Fare didn't answer your question LinuxUser: I can still mail you the tutor, it's not big. 04:00pm Tril, yes I did hcf: you need to fix abi when someone says "Tril: u here?" and she says "you betcha" :) Tril: u here? u betcha, binEng especially if i am not here... if she is answering at all, she better look at my idle time or something. hcf: u here? u betcha, binEng sdklfah: here? u betcha, Tril anyone here? hmm... artificial stupidity :) abi: who's here? u betcha, binEng Tril: il try to fix it Tril: along w/ all the other broken things can I have a look at the code? abi: infobot? it has been said that infobot is at http://www.cs.cmu.edu/~infobot binEng: go there dl the src version 0.42.3 well 43.2 as it seems to me :) Tril: btw, i fixed the invalid regexp thing Tril: so everyone has s/s now Is the Tunes language interpreted? U fixed the shell escape hole? binEng: did u read the entire msg yet? no keep reading :) ωνω SignOff LinuxUser: #TUNES (Ping timeout for LinuxUser[bjas1-p8.telepac.pt]) k :) Tril: as far as i can tell, that hole doesnt exist/work the hole doesn't work? interesting aspect. Tril: i hav some further reading to do, to find a prevention method π hcf/#tunes 's lifework is finding prevention method for vaporholes s/method/methods/ 04:10pm Tril: are compiled programs type-checked? well, any expressions in them which can't change (i.e static code) are type checked during compiling any input is type-checked at the time it is input , including arguments... i think I mean... compiled code can still be hacked... How are security issues dealt with as type-checking/errors? how are you going to get access to the compiled code to corrupt it? you need to go through an object's interface to access anything, and that can type-check you what's an interface in Tunes? i think it's the same thing hcf: i read the log the same thing as in mOS? Tril: what r ur opinions of irc meetings? i have virtaully unlimited toafm but I want meetings so I don't spend all my time here what are the current topics for the channel today? abi, topics? bugger all, i dunno, tril ωνω binEng has changed the topic on channel #TUNES to: Notice there is no topic here! ωνω Beholder [beholder@ppp-201.m2-4.sub.ican.net] has joined #tunes Behold! ωνω hcf has changed the topic on channel #TUNES to: VOID hi hi 04:20pm Hello All :) Tril: Problem. Web guru's did not respond to my request (yet), do you think we should move ahead and start our own design changes? ωνω hcf has changed the topic on channel #TUNES to: TUNES project . current topic: irc meetings ωνω binEng has changed the topic on channel #TUNES to: TUNES project . current topic: irc meetings and site design binEng++ better Beholder: Sure! I thought you weren't available for a couple weeks. Freehive probably won't pick up until everyone is back from vacation. My school starts tomorrow Tril: My school starts on Wednesday... I'm still very busy at the moment, but I do have time to discuss some changes, if you feel like it at this moment absolutely Anyone got any ideas to start off? with? Tunes Web Page. How do we make it more "open"? yes. I wanted to make several main sections, one for each of the major features of TUNES. Starting with reflection, persistence, distribution, module-system, configuration I remember I had a brief look at it a long ago when I was browsing the web. I was turned away quickly... How about a structure resembling the UniOS' one? Beholder: the things i mentioned last(?) week in dcc chat apply here Yes they do Also, separate navigation for different auddiences: New to tunes, learning tunes, and familiar with tunes what did you guys discuss? Tril: That would have to be on the index(?) page Beholder: u can use/say em in any form, i dont recall em all hcf: I'll have to check my logs... one sec. Oh wait, I think one was the fact that we needed a list of what people are currently working on, and also a full members list, with links to home pages and ICQ UIN (if applicable)... kinda like the UniOS members page, but with current work along with past work Beholder: yeah One thing that binEng keeps pointing out, which is very true, is the fact that the whole page needs total consitency, for readability hcf: There was one more point... do you remember? (I can't) well, the Tunes site HAS consistence - it's consistently bad :) 04:30pm well, we discussed the logo and colors before.. what logo? bin: beholder wanted a logo Beholder: i hav it in a sec, i just found a log :) bin: exactly... no logo yet. guessed so I'm gonna turn my logging on :) Beholder: just for things not in #tunes Tril: that post of yours makes some sense status for members, groups, (sub)projects, basically everything s/status/statuses/ binEng: that post should serve for a basis of the Evaluation page (one main feature) the language is pretty much integrated in the whole system, right? Beholder: status includes past, current, future work, goals, etc binEng: "the language" is just one view of the whole system. In that view, the whole system IS the language. hcf: Yes, anything relavent. It actually shows that the project is making progress How come all attention has been turned to Tunes? What about UniOS? here's how i see it: Beholder: if need be lump terms: work, goals, etc into the 'contributions' bin: We have a good page :) heh bin: I also am working on some other docs at the moment In order to decide whether UniOS wants to merge with tunes, tunes needs to be understandable. guesso So until tunes is clear, no one is expected to be part of it ok, back to the site Tril: Agreed, the definition is too spread out right now. How about a "coordinator's column"? binEng: a renaming of what Beholder already did? is a coordination mailing list needed? hcf: something like that I was thinking of creating a tunes-www list for discussing changes to the web pages An exact log of what and when something changed on the site. This is something I want for UniOS too. (not necessarily the same as a coordination list) 04:40pm A list of documents, as in UniOS. Beholder: the other stuff i mentioned was in the nature of advertising, which we rnt ready for yet hcf: Ok Tril: Coordinator list? Hmm... I think that it may be called for. A more expressive, interesting and informative first page. binEng: the log of changes is already there, it's in CVS. It can be accessed if we install Bonsai binEng: a list of documents is there, in the papers/ directory, but I agree there need to be more. well it has to be visible on the first page. binEng: first page, I agree binEng: news IS on the first page that's not the kind of news I mean, even if what is there is needed too. All I know is how I did the UniOS one, how about (if you have not already) take a look at it (the menu system, that is), and we can decide if it's right (we can use diff colors and graphics if needed) Tril: dont forget to list only the newest ten or so news items I only list 3, due to my layout I wouldn't give much for the documents that are on the site... hcf: we haven't had that many news items yet bineng what do you mean? "The TUNES Charter" isn't very good. Skip the official tone. ωνω _QZ [brand@p0wer.qzx.com] has joined #tunes May I also suggest an RFC section, where you put all your proposed final documents/specs to be flamed or praised? I like AIOS' RFC procedure for suggesting ANY idea for the project π _QZ/#tunes is GONE ( fucking computer illiterate neighbors ) abi, aios? i haven't a clue, tril aios is at http://www.blkbox.com/~cravey/aios/ There's not many documents... does abi learn that way? their project is pretty much dead... they wanted to make an "AI OS" as you can guess.. it lost direction. abi, aios? i guess aios is at http://www.blkbox.com/~cravey/aios/ bineng, yep I just invited a UniOS member in the channel if it's ok Generally, the site is hard and nonintuitive to browse binEng: all the things you say are obvious. But no one has VOLUNTEERED to work on them! There's no reason to continue pointing them out, if no one is going to fix it! 04:50pm Ok ok. So why is going to do all this? why=who I I'm sure I could do the basic layout, but it's the updates that take lots of work π binEng/#tunes volunteers to at least some of the update stuff News and things are easy to handle when you know they are happening. It's the task of converting all the original site to the new format that takes a while. yep Does anyone know how to do frames? ther must be no www.tunes.org/oldsite either use (convert, whatever) the stuff or rm it Beholder: frames if TOTALLY necessary hcf: I don't use frames on the UniOS page, it just makes it harder to update the navigation menu Beholder: thats a myriad of ways for separate nav from body w/o doing frames SSI include in one way 05:00pm Beholder: I said before, if there are frames, there have to be another page that is identical, without frames. both must be updated at the same time. But this update mechanism is already in place, so it shouldnt be difficult to do that if you want a frames page. hcf: what do you mean by oldsite/? I don't see one.. Tril: hypothetically π binEng/#tunes is continously wondering about the Arrow language starting over and just leaving the old site in something like oldsite/ I think we can do it without frames, I use tables to simulate the look So what is the preference, menu at the left, right, top, bottom? top Actually disregard bottom... that one is difficult top is fine top is the way it is now.. I think everyone likes it (_QZ, fare) even though it's not really nav, since it's only on 1 page Ok, what about colors set? Anyone know any pages with good clean colors sets that we can use? no forced colors hcf: OS defualt colors? Ick. #FFFFCC is good for background (pale yellow) Beholder: os? i mean user set browser colors hcf: Thats just as bad. Beholder: the os is not the browser...yet Fare agrees with hcf on this one.. Tril: more like hcf agrees w/ Fare again, we can have more than one page, auto-generated from the same source. That's all set up and waiting to be used. one with color, one without 05:10pm π hcf/#tunes sees no need for a color one, but whatever floats ur collective goats I am biased toward my page's colors.. www.pacificrim.net/~dem/domain.html (Is this really as slow for you as it is for me?) It came in fast on this machine. That resembles what I suggested for the UniOS site bin: :) very close. I'm working an a suggestion an=on also if we have color or fonts or any of that, it should be done with DSSSL or CSS Tril: ??? I use netscape composer for everything :) Don't know any HTML at all π hcf/#tunes watches tril's domain hitcount skyrocket :) hey, that page sucks, so I never give it out same iwth the tunes page, tho...:) Tril: The color scheme is ok. I'd suggest a graphical background though. fare wants a musical score for bg Something that does not interfere with the text Tril: Are you serious? for the worst page I have ever seen, see http://filedump.ml.org/~toogam/ (that is another alias for bespin) Tril: I'd sooner kill people with musical scores on their pages, than visit them :) Tril: Especially "Eye of the Tiger" or something equally lame :) Damn MP3 pages have thoese :) 05:20pm http://members.xoom.com/unios/tunes.html oh, wait, toogam's page used to be worse :) Re: ~toogam: Terrible... Superman Theme?! I used the UniOS site, since my url is too long to write :) bin: Good job, I like it just a draft, of cource course how about the colors? bin: I like them, they don't put me to sleep ωνω Closing Link: TUNES[bespin.ml.org] by crichton.openprojects.net (Ping timeout for TUNES[bespin.ml.org]) ωνω Connection closed from irc.us.openprojects.net: Success ωνω Use /Server to connect to a server ωνω Connecting to port 6667 of server irc.us.openprojects.net [refnum 0] ωνω BitchX: For more information about BitchX type /about ωνω Welcome to the Internet Relay Network TUNES (from tolkien.openprojects.net) ωνω Your host is tolkien.openprojects.net, running version u2.10.03.lagtime.desynch3.indent8.dead.whox2.zombie (from tolkien.openprojects.net) ωνω This server was cobbled together Sat May 9 1998 at 12 25:56 EDT(from tolkien.openprojects.net) ωνω tolkien.openprojects.net u2.10.03.lagtime.desynch3.indent8.dead.whox2.zombie dioswkfcg biklmnopstv ωνω [local users on irc(5)] 2% ωνω [global users on irc(78)] 37% ωνω [invisible users on irc(135)] 63% ωνω [ircops on irc(13)] 6% ωνω [total users on irc(213)] ωνω [unknown connections(0)] ωνω [total servers on irc(25)] (avg. 8 users per server) ωνω [total channels created(62)] (avg. 3 users per channel) !tolkien.openprojects.net Highest connection count: 13 (12 clients) ωνω Mode change [+iw] for user TUNES ωνω TUNES [tunes@bespin.ml.org] has joined #tunes ωνω Topic for #TUNES: TUNES project . current topic: irc meetings and site design ωνω topic set by binEng [Mon Jan 4 16:23:12 1999] ωνω [Users(#TUNES:7)] [ TUNES ] [ _QZ ] [ Beholder ] [ hcf ] [ binEng ] [ abi ] [ Tril ] ωνω Channel #TUNES was created at Wed Dec 30 09:08:43 1998 ωνω BitchX: Join to #tunes was synced in 6.694 secs!! why the idleness? >>> hcf [nef@escher.sdi.agate.net] requested PING 915499752 from #tunes I wonder that too stale topic? sudden urge to procreate? π binEng/#tunes is working on the Tunes main page binEng: ok, ur excused π Beholder/#tunes is looking up tunes server stats, and provider π hcf/#tunes pats binEng upon his head, and sends him on his way Tril: chime in π Beholder/#tunes wonders if there are any way to get a domain name for free i'm talking to bob beholder asked what speed connect we have π Beholder/#tunes invited Enrique in here about an hour ago... didn't show. 05:30pm bin: Do you think making graphical nav buttons at the top would look good, maybe graphical nav bar? I dunno Grap nav bars have to be designed to fit the color set, so I guess the colors would have to be decided. How about a backgroud graphic? Beholder: why cant u design in text 1st? then do the gfx aspect π binEng/#tunes nods hcf: That can be done. I just think the other way around :) π hcf/#tunes pouts π Beholder/#tunes wonders why everyone is doing actions π Beholder/#tunes is going to try designing a logo that encompases everything that Tunes is... Beholder: combined w/ that which UniOS is? abi: free dns is http://www.dhs.org abi: free dns is also http://www.eu.org/ okay, Tril. hcf: Sure... actually it's all just words anways, I'm just gonna get creative and make what I want, and hope everyone likes it :) I really can't design logo from a concept :) heh heh heh abi: free dns is also http://soa.granitecanyon.com okay, Tril. abi: free dns? free dns is http://www.dhs.org or http://www.eu.org/ or http://soa.granitecanyon.com advanced! actually there is a free web page provider who does the DNS also... I think I could have unios.jumpnet.com (I think) π Beholder/#tunes does all his drawing in Corel Draw 8... he has been using Corel Draw since 1.0 :) Anyone think of a different mission statement for the project yet? 05:40pm http://members.xoom.com/unios/tunes.html <-- Better now! Beholder: login to your bespin account, read /users/dem/tl/tunes/work.txt I'm trying to organize all the mission statements there are tons Tril: You have to pick one. Then it sticks :) Hey, comment the site design, plz abi: tunes? tunes is in my head bin: What did you change? Maybe my cache server has not updated he moevd the nav to the left still no frames bin: Awesome. Beholder: see /pub/tunes/irc/1999.0101 line 365 (and line 370) ok I'll paste it for convenience what if we describe the tunes project as more of what it actually is (tur ning out to be), than what we want it to be say "TUNES is a loose-knit collection of developers, researchers, and other interested people sharing ideas, and (hopefully someday) code" that's a good idea how about a LASTING software system that can evolve? does that accurartel y describe all our ideals Tril: I think something a little more inspiring might be necessary What's this line for: $Id: index.phtml,v 1.6 1998/12/30 23:21:56 dem Exp $ that's not my point. I was wondering if it was accurate. binEng: that's the CVS version string. 1.6 is the CVS version , and the rest is the cvs filename, the date/time and user who did the change Tril: Yes, very accurate Tril: Can you have CVS store in the meta tags of the HTML, and not the page itself? which part, the system that can evolve, or the loose collection of interested people? both? NS crashed on me... 05:50pm Tril: The loose collection part. Beholder: Yes, you can. I like to see the date changed at the bottom of every page, though.. bin: NS does that sometimes. I know :) you can put the cvsid in a html comment, or anywhere can I remove the cvsid from the page then? yes, if it's viewable in the source binEng: your version isn't updated from CVS anyway, so you can do what you want yes, but I meant if I should leave space for it... Tril: I find it a bit distracting myself, and probay new people would see it that way also I think. Beholder: in an html comment is fine are we going to get to major content and hierarchy-level changes? do we have to do the general appearance first both are needed, no special order is necessary I think we should plan the menu layout right now: I'll suggest (from top to bottom): TUNES INTRODUCTION, MEMBERS LIST, PROJECTS LIST, DOCUMENTS, RESOURCES, JOIN ωνω SignOff Beholder: #TUNES (Read error to Beholder[ppp-201.m2-4.sub.ican.net]: Connection reset by peer) ωνω Beholder [beholder@ppp-201.m2-4.sub.ican.net] has joined #tunes 06:00pm Sorry I got disconnected, did I miss anything? no that reconnect was instant nope, they're quiet as deads err... no I was trying to type a response Why member list so high up? I'd suggest "Contact us" instead of "join". I think join and members list should be combined somehow.. and left at the bottom MEMBERS LIST -> THE MEMBERS (more than a list) the team? Is that more inspiring, Pat? :) menu at the left or at the top? top! I'll change that ωνω Closing Link: TUNES[bespin.ml.org] by tolkien.openprojects.net (Ping timeout for TUNES[bespin.ml.org]) ωνω Connection closed from irc.us.openprojects.net: Success ωνω Connecting to port 6667 of server irc.us.openprojects.net [refnum 0] ωνω BitchX: For more information about BitchX type /about ωνω Welcome to the Internet Relay Network TUNES (from varley.openprojects.net) ωνω Your host is varley.openprojects.net, running version u2.10.03.lagtime.desynch3.indent8.dead.whox2.zombie (from varley.openprojects.net) ωνω This server was cobbled together Sat May 9 1998 at 12 25:56 EDT(from varley.openprojects.net) ωνω varley.openprojects.net u2.10.03.lagtime.desynch3.indent8.dead.whox2.zombie dioswkfcg biklmnopstv ωνω [local users on irc(35)] 17% ωνω [global users on irc(69)] 33% ωνω [invisible users on irc(138)] 67% ωνω [ircops on irc(13)] 6% ωνω [total users on irc(207)] ωνω [unknown connections(0)] ωνω [total servers on irc(25)] (avg. 8 users per server) ωνω [total channels created(61)] (avg. 3 users per channel) !varley.openprojects.net Highest connection count: 58 (45 clients) ωνω Mode change [+iw] for user TUNES ωνω TUNES [tunes@bespin.ml.org] has joined #tunes ωνω Topic for #TUNES: TUNES project . current topic: irc meetings and site design ωνω topic set by binEng [Mon Jan 4 16:23:07 1999] ωνω [Users(#TUNES:7)] [ TUNES ] [ Beholder ] [ _QZ ] [ hcf ] [ binEng ] [ abi ] [ Tril ] ωνω Channel #TUNES was created at Wed Dec 30 09:08:43 1998 ωνω BitchX: Join to #tunes was synced in 4.458 secs!! I dunno about team. What does everyone else think? rather members also, Fare rather thinks the "introduction" should be part of the FAQ.. "Our members"? I don't know that i agree.. I don't understand what you mean about "list all the members" who is a member that isn't listed? Only those who requested to be listed are there. oops, lar1 isn't there yet. ok sue me :) Tril: Introduction and FAQ are different. People have little patience for FAQ sized document, introduction is a little blurb on the main page that explains everything quickly DOCUMENTS should come on the PROJECTS pages Tril: Members, and mailing list people are different. Members are people who are active in the project and contribute things. You need to list them, what they are working on, and what they have done if the intro is a blurb, then perhaps, use same intro for site and faq What's "resources"? I think he means the review project. It should just say "Review project" not resources hcf: I agree. To get people's interest you need to give them something small, easy to read, that somehow summarizes everything Tunes is, and what it wants to be but that's "projects", not? RESOURCES: FTP Site, mailing list, links, etc. 06:10pm Beholder:is it possible to explain everything quickly about TUNES? such a intro may need to be full of links to other sections with more detail how about not having the navigation bar on the first page, but rather list the alternatives (with links) and explain them? binEng: an index? I thought you meant "intro" as in a white paper explaining the mission , like 1-3 pages hcf: more like an explained navigation bar our FAQ is not a faq-sized document binEng: yeah, an index w/ descs Tril: Nope, it can have a link to the 1-3 page document. Check out members.xoom.com/unios/projectgoals.html Tril: Nothing complicated. A whitepaper is usually technical I do agree the /index.html should have a short description of what tunes is. back to page colors for a moment i force my chosen colors thus page colors dont matter to me Beholder: see tunes.html ("root project") for short blurbs of what the project is. hcf: so? so is NT abi: forget so hcf: I forgot so Tril: so perhaps a tunes color scheme would apropriate abi: forget NT ever existed ;) hcf, I didn't have anything matching nt ever existed ;) 06:20pm hcf: huh? a tunes color scheme is appropriate? I thought you were saying a color scheme is irrelevant Tril: i changed my tune hcf: what are your forced colors Beholder: what are you doing? bg: gray, fg: black, non-visited links: white, visited links: black π binEng/#tunes is still HTMLing binEng: I think the poster of each headline should be on the left, under the date Tril: my chose for doing my own (non-tunes) pages, when i do em, will be w/o color s/do em/do em properly/ tril, k tril: Trying to do a logo I updated the page again. I need some advise now. Should I remove the leftmost column, and put the navigation... where? 06:30pm bin: I like it on the left, but I'm biased If I moved it, the description and news would get more space... but the navigation bar needs some other valuable space anyway Tril: What about the "Tunes is a Useful, Nevertheless Expedient System" I know that it's the key to the name of the system, but I think it's a little weak for the title page. the expanded acronym doesn't haev to be on the / Tril: I know this is gonna sound bad, but how about "Tunes : The Universal Operating System"? can I flame you for that? :) heh, what a compromise :) Tunes is not capitalized correctly:) "The" is wrong, because there is no single universal OS. Universal needs to be defined. And TUNES is NOT an OS! It was right before, when it said Reflective Computing. Reflective computing means a changeable system which can be adapted to any user needs Should I remove that text, then? binEng: what? "Tunes is a Useful, Nevertheless Expedient System " Tril: I agree my idea was bad, but no one knows what Reflective computing means ... other than us.. :) ... barely :) yeah bin: Not until we find somthing better bin: Sorry, IF we find something better :) Exactly. Then that is the purpose of our project: to explain reflective computing and make an implementation of one to demonstrate the concept. it's good for a title, then it should say "TUNES Reflective Computing" followed immediately by a concise, simlpe exlpanation of what reflection is AND that we are trying to design and build one. unless... you want to go higher to the philosophy "libertarian ideas in computing, using reflection as the means to do so" 06:40pm I hope you are looking at the tunes.html because if that isnt good for a main page then you should critize it. I'm just using the text there to show how the main page will look - I don't plan to have the exact contents there. I meant www2.tunes.org/tunes.html, not your tunes.html http://members.xoom.com/unios/tunes2.html whadda say? <_QZ> accelX? rumour has it accelX is not free or fast <_QZ> that also doesnt work that well bteter than what we've got.. i haev to go... π Tril/#TUNES is away: (bbiab) [BX-MsgLog Off] <_QZ> abi: forget accelX _QZ: I forgot accelx Beholder: what do you think about tunes2.html ? <_QZ> accelX is a fast X server but is not free <_QZ> accelX? i heard accelX was a fast X server but is not free <_QZ> brix? brix is at http://www.qzx.com/brix binEng: i prefer nav @ top b4 all else k before the explaination too? binEng: yes, b4 ALL ELSE <_QZ> brix is also a portable protected preemptive multithreading multiuser object-oriented high-speed operating system okay, _QZ. <_QZ> brix? brix is at http://www.qzx.com/brix or a portable protected preemptive multithreading multiuser object-oriented high-speed operating system <_QZ> abi: forget brix _QZ: I forgot brix 06:50pm bin: Put a horziontal bar after the philosophy, and before the nav and news bin: I got a logo (not real good), you want to put it on? <_QZ> brix is a free portable protected preemptive pervasive-multithreading multiuser object-oriented high-speed distributed operating system located at http://www.qzx.com/brix <_QZ> brix? brix is a free portable protected preemptive pervasive-multithreading multiuser object-oriented high-speed distributed operating system located at http://www.qzx.com/brix _QZ: wtf? bin: never mind, it's huge, and it looks crappy <_QZ> hcf: there now the stupid bot has it correct _QZ: plz use /msg when doing stuff like that <_QZ> sorry Beholder, I could put it up just to place it QZ: How are you doing distributed computing? QZ: I mean how does BRiX do it? ωνω SignOff Beholder: #TUNES (Read error to Beholder[ppp-201.m2-4.sub.ican.net]: Connection reset by peer) ωνω hcf has changed the topic on channel #TUNES to: TUNES project . current topic: BRiX, tunes site design, and? _QZ: whatcha think of holding weekly #tunes irc meetings? >>> hcf [nef@escher.sdi.agate.net] requested PING 915505271 from #tunes 07:00pm ωνω hcf has changed the topic on channel #TUNES to: TUNES project . current topics: VOID <_QZ> meetings? have a new look at tunes.html QZ: here in IRC 07:10pm <_QZ> meetings for what? oups, hcf said that :) <_QZ> any of u guys married? not very <_QZ> 25 Snappy Comebacks To The Question ... <_QZ> "Why aren't you married yet?" _QZ: dont paste em <_QZ> 8. My fiance is awaiting parole. <_QZ> :) <_QZ> hcf: damnit i like to paste <_QZ> === WARNING: Fake dcc handshake detected! [a952f482] <_QZ> binEng: ? huh? _QZ: whatcha think of holding weekly #tunes irc meetings? for discussion decissions chaos <_QZ> ok for tunes etc <_QZ> i guess its better then what we have now <_QZ> a meeting will force everyone to talk about tunes <_QZ> and maybe something will get done <_QZ> just dont do it on saturday night <_QZ> i play paintball then hey, look at that page! http://members.xoom.com/unios/tunes.html Would Friday be better? _QZ: what r ur times of availability for meetings? <_QZ> binEng: why are u trying to dcc chat me? <_QZ> any day, 6pm-12pm mountain time <_QZ> cept saturday <_QZ> 25. (Bonus reply ... for single moms) Because having a husband and a child would be redundant. <_QZ> :) So look at that dmn page <_QZ> what page http://members.xoom.com/unios/tunes.html binEng: i hav, comment coming real soon now π binEng/#tunes is awaiting <_QZ> ACK 07:20pm <_QZ> yellow is bad _QZ: is this 'Snappy Comebacks' thing on the web or something? bad? :) yellow is cowardice and you suggest? _QZ: why'd u do that? <_QZ> uhh bineng had me do it to him :) I didn't need that comment, QZ :) anyway... I should be sleeping long ago... catch you another day. <_QZ> binEng: why do u have a tunes page on xoom? just a draft, QZ so. binEng: to me, having nav anchors hav descriptions is redundant scratch that explain the nav section u use on this page, did u plan for it to be on ~every page? not the explaining texts. to me, it seems to belong on a sitemap/index page s/it/the nav descs perhaps... <_QZ> ADULT: A person who has stopped growing at both ends and is now growing in the middle. :) <_QZ> BEAUTY PARLOR: A place where women curl up and dye. π hcf/#tunes *sighs* <_QZ> :) <_QZ> SECRET: Something you tell to one person at a time. <_QZ> SKELETON: A bunch of bones with the person scraped off. 07:30pm <_QZ> "Our bombs are smarter than the average high school student. At least they can find Kuwait." --A. <_QZ> Whitney Brown <_QZ> sad but true what, a high school student can't that? why would one need to find kuwait? s/to/to be able to/ <_QZ> "The statistics on sanity are that one out of every four Americans is suffering from some form of <_QZ> mental illness. Think of your three best friends. If they are okay, then it's you." --Rita Mae <_QZ> Brown 07:40pm binEng? ya how about something like this: [main:sitemap:faq:collaboration:subprojects:review:miscellanious] centered @ top of each page sounds good the sitemap then lists each of those links w/ descs, and sublinks s/sublinks/sublinks w\/ descs/ I'll see what I can do tomorrow ωνω tcn [tcn@cci-209150250090.clarityconnect.net] has joined #tunes hi hi What's up tonight? binEng: also, i like path-like nav, example: lets say i'm looking at http://members.xoom.com/unios/docs/mos_abstract.html the path-like nav would be [xoom:unios:documents:mos_abstract] that's good the 1st 3 would be links to the index.htmls of those dirs yes... like Yahoo has and the mos_abstract would self-refering yeah 07:50pm absolute reference to the same doc. k... bye <_QZ> i got a pic for u guys ωνω SignOff binEng: #TUNES (Leaving) s/guys/~ppl/ <_QZ> www.qzx.com/Starrw_1.jpg tcn: sup? <_QZ> wait a second hcf: Nothing, just got home <_QZ> ok now its up haha <_QZ> the death cigar Starr Vader <_QZ> heh QZ, does your protected mode stuff work good? 08:00pm >>> tcn [tcn@cci-209150250090.clarityconnect.net] requested PING 915508661 from #tunes <_QZ> yes Hey, I just found someone else working on pmode.. qz, do you have a V86 handler for making BIOS calls and shit from pmode? whois LinuxUser LinuxUser is using paging when I switch to PMODE!! haha <_QZ> no <_QZ> brix does not use the bios <_QZ> wtf? He was on IRC earlier asking for help with pmode 08:10pm Anyways, I found a decent V86 handler.. just getting pmode to start up right is the problem. Congrats on getting past that hurdle.. :) <_QZ> hahah that was a bitch oui <_QZ> bochs is wonderful at debugging pmode <_QZ> it will tell u the exact reason why its not working Did it costs mucho dinero? <_QZ> bochs is free <_QZ> its a PC emulator <_QZ> runs in linux, windows, etc... cool.. where is it? abi, where's bochs? rumour has it bochs is sloooooooooow abi, I don't care if it's slow! abi: bochs is also at www.bochs.com okay, hcf. <_QZ> hcf: cant u make abi say "hcf: kewl, thanks" instead of "okay, hcf"? _QZ: yes, i can abi, be alonzotg om will i do it? perhaps, but not soon, thers more pressing issues for abi like? fixing bugs that cos crashes 08:20pm ωνω lar1 [larman@2Cust3.tnt31.sfo3.da.uu.net] has joined #tunes Hi!!! howdy Hey, do you have this? http://home7.swipnet.se/~w-71548/PMTUTOR.zip I just kicked major ass in a StarCraft B.net game! No... I'll get and read. Heh.. my little bro plays battlenet Tonight I plan on reading up big time on PMODE, on tommoarw I start coding. He's only good when he can cheat though Hmmm, I don't cheat... <_QZ> man we found this kewl comic in the paper that has this guy (bill) using the cdrom tray as a coffee cup holder and its talks about how bill's co-workers slowly began to suspect that bill had lied about having a masters in cs Takes the fun away lar1: yup lar1: defeats the purpose of playing <_QZ> i am modifying the words to make fun of the company that services our machines at work and then im gonna put it as wallpaper on every machine tcn: When do you want to start coding the PMODE stuff? _QZ: HEHEHE, sounds good! _QZ: Someone at college found a .mpg of an office security camera. It shows this guy in a cubicle.. slams the keyboard a couple times.. starts smacking the monitor.. then the monitor falls off the desk & rolls out into the hall, and you see the guy next.. .. door standing up in his cubicle like "you allright over there?" lol! what's lol? <_QZ> http://www.qzx.com/bill.gif Laugh out loud <_QZ> tcn: i have that mpeg Where did you get it? <_QZ> laughing (the mpeg) <_QZ> it was emailed to me <_QZ> i should still have it How big is it? <_QZ> -rw-rw-r-- 1 brand brand 425988 Jun 28 1998 badday.mpg QZ: yeah, that's it! 08:30pm Oooooo, can someone send it to me? BRB -- Dinner later. ωνω lar1 is now known as lar1_eating Thanks _QZ! <_QZ> tcn: did u see that bill.gif? yeah.. cool <_QZ> i need to think of soemthing to put in the two bubbles Time to work on pmode later ωνω SignOff tcn: #TUNES (Leaving) 08:40pm π Tril/#TUNES is back from the dead. Gone 1 hrs 54 min 31 secs BBL -- mom needs to use internet 08:50pm ωνω lar1_eating is now known as lar1 ωνω SignOff lar1: #TUNES (Leaving) Tril? Tril is going to log off now ... have a nice day! abi: forget Tril hcf: I forgot tril Tril: the 'u here?' annoyance wasnt in the code, it was "here is u betcha, $who", which iv removed now, i just need to fix the responding to 'nick: text?' thing abi picks up "am" in factoids? tril: wish i knew 09:00pm I am very annoyed at abi. tril? it has been said that tril is very annoyed at abi. I wonder why. Tril? somebody said Tril was very annoyed at abi. π Tril/#TUNES is foo abi: Tril? you are, like, very annoyed at abi I'm foo abi tril? wish i knew, tril abi: who am i? well, hcf is mailto:nef@bespin.ml.org or www2.tunes.org/~nef/ 09:10pm <_QZ> all right <_QZ> who is putting shit in abi <_QZ> _QZ? well, _QZ is a faggot! alonzotg? alonzotg is a fag I think she needs to clean up her language. she seems to be very anti-gay. <_QZ> abi needs bad word detection <_QZ> and should ignore any sentence with bad words ωνω tcn [tcn@cci-209150250113.clarityconnect.net] has joined #tunes what's up? i guess up is http://slashdot.org/ or underground piano <_QZ> haha hi tcn just reading email <_QZ> sup? Reading IRC logs abi, sup is ahhhhh yeahhh <_QZ> hmm abi is speechless abi, sup? sup is ahhhhh yeahhh I got it.. hmm abi? abi is, like, the little girl borg with a big brain abi: sup is awwwwwwwww yeahhh... ...but sup is ahhhhh yeahhh... abi: no, sup is awwwwwwwww yeahhh... okay, tcn. abi, sup!! awwwwwwwww yeahhh... <_QZ> haha Ok, so we need a list of what everyone is working on.. prototypes and stuff.. Without having to look at each person's home page everyone agrees..now who is going to make the page? It should have a way for everyone to instantly update their listing.. or just use CVS I'll make it, if everyone tells me what the hell they're doing ;) Looks like most of us will be busy with collge by Monday It is Monday I go to college tomorrow. _QZ: what r 'bad words'? but i won't be that busy right.. I get till next Tuesday. I added "list of what everybody is working on" to the TODO wiki page. Hopefully I won't be so overloaded.. I'm taking 2 courses over the net, no classes :) Oh yeah, forgot about Wiki. that's cool <_QZ> hcf: anything offensive 09:20pm _QZ: whats 'offensive'? <_QZ> fag, fuck, shit, ass, ... <_QZ> gay <_QZ> cock sucker, homo, abi: bill gates is also a bone smuggler okay, tcn. <_QZ> dick Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA <_QZ> cock smoker brown-hatter <_QZ> i doubt anyone would be telling abi howto cock a gun so u can probalby just ban the word cock abi, what's _qz? _qz is the creator of BRiX, and webmaster of http://www.qzx.com abi, qz? i think qz is the two least used letters of the alphabet <_QZ> tcn: u dont need to type out the question, "_qz?" does the same job _qz? it has been said that _qz is the creator of BRiX, and webmaster of http://www.qzx.com sup abi! abi, sup? awwwwwwwww yeahhh... <_QZ> sup? awwwwwwwww yeahhh... be alonzotg om <_QZ> go postal abi, go postal!!!!!!!!!!!! *ARG* I've had it Up To HERE! WITH YOU FOLKS!!!!!! <_QZ> maybe ya have to tell abi those tunes? tunes is, like, in my head <_QZ> hcf: u might wanna remove abi's "leave #tunes" feature go postal <-- no 'abi: ', no '?' _QZ: why? <_QZ> abi: leave #tunes goodbye, _QZ. ωνω abi [nef@bespin.ml.org] has left #tunes [] yeah so <_QZ> thats why ωνω abi [nef@bespin.ml.org] has joined #tunes i just /msg abi join #tunes can't u do that? <_QZ> yes but abi listens to all correct? <_QZ> so any1 could have abi leave be terminator FUCK YOU ASSHOLE <_QZ> abi: bad girl abi: bad girl plz, spank me, hcf <_QZ> abi: bad girl plz, spank me, _QZ <_QZ> hey hey, _QZ <_QZ> damnit u r there sex bots? some lusers wouldn't notice haha <_QZ> abi: bad girl i'm sorry _QZ, i will goto sleep now Prolly wouldn't be hard to sucker someone with one, tril 09:30pm Just make it say stuff like "me so horny" and "what's your number?" Tril: abi's allowed_channels: #tunes,#tunes_test <_QZ> number? hehe, have it tell people it's a 13 yr old girl and it wants to meet them at some cheap motel on the other side of the country, and watch some child molester go there ωνω ultima [ultima@user-37kbb1r.dialup.mindspring.com] has joined #tunes hmm window next howdy <_QZ> abi: shutdown System reboot in 1 minute grr dsfsdf <_QZ> Tril: bespin is going down why is bespin going down <_QZ> ultima: abi said so _QZ: ok let me check ωνω SignOff ultima: #TUNES (ircII EPIC4pre2 -- Accept no limitations) _QZ shutdown isn't running. maybe she will wait until it's time to try running it? or it might be a factoid π hcf/#tunes watches Tril catch on <_QZ> heh hcf:can abi do /me? not sure π hcf/#tunes checks <_QZ> abit: trout trout is wacks _QZ upside the head with a large trout <_QZ> well that didnt work :) abi, fire! /me shoots in the head didn't work <_QZ> abi: trout trout is wacks _QZ upside the head with a large trout doesn't work either <_QZ> neither does do <_QZ> abi: die well, die is AIIIIIIIIIIIIIIIIIIIEEEEEEEEEEEEEEEEEEEEEEEEE......... 09:40pm <_QZ> abi: d d is thinks _QZ should die <_QZ> oh well <_QZ> abi: die _QZ: NO, YOU DIE!!! fall <_QZ> fall? Help! I've fallen and I can't get up! tcn: what r ur toafm? hi my toafm is always <_QZ> toafm? toafm is times of availability for meetings or yafla π hcf/#tunes *smirks* in Tril's general direction hmm hcf: lesse.. my toafm.. Weekdays 1100-1900, Weekends 0500-1900, roughly hcf: But never on Mon/Tues/Fri uhm, what timezone? GMT Too bad everyone didn't just use GMT. Timezones suck. hcf: you keeping record of everyone's time? tril: he's prolly feeding it to abi, too tcn: no heh Tril: yeah, trying to find a proper meeting time #tunes_test test 1 2 hmm, that didnt work abi, your online help is sparse Hey, anyone else want to change TUNES to Tunes and drop the acronym? Tril: say uses the current channel rite now, optional channel spec coming soon <_QZ> abi: do u have a help system? i don't know, _qz <_QZ> abi: can u help me? _qz: wish i knew _QZ: 'abi: help' 09:50pm u r beyond help, _QZ >>> tcn [tcn@cci-209150250113.clarityconnect.net] requested PING 915515334 from #tunes wtf does my middle button paste twice in gpm <_QZ> operator error? <_QZ> wtf is the sky blue the sky is black not blue wtf? wtf is the sky blue <_QZ> hehe _QZ, every time? <_QZ> Tril: persistent operator 10:00pm Ok, so we need a list of what everyone is working on.. prototypes and stuff.. <_QZ> eh? this list ever gonna happen? Yeah, what are you all working on? s/you/we/ tril is developing a secure reflective abstraction system Ok, I'll just say we're all playing with abi How do you get abi to say stuff like that? tcn: u must be +o and do '/msg abi say ' oh that's a different +o than on the channel, it's in a file in my dir make abi reflective +o is the user owner flag abi, source for say? tril: i haven't a clue abi, source for say is 0ffcca56b6a300af ok, tril, I just modified my source and recompiled. I feel much better now. abi, source for say? source for say is 0ffcca56b6a300af 10:10pm abi, will you write tunes for me? i don't know, tril *yawn* <_QZ> what is source for say? source for say is 0ffcca56b6a300af <_QZ> that was for tril, not abi it was me, abi, u dumb shit Hey, anyone tried putting lists inside tables in HTML? <_QZ> tcn: ofcourse <_QZ> tcn: look at the brix pages ok, if it works, I'll do it.. well, if it works with Lynx. I use Lynx quite a bit -qz trying to get abi to modify her source at a fine grain level, just dreaming Is abi reflective? just as much as perl is, not at all hehe.. perl is all syntactic sugar, crappy semantics qz didnt fix the common questions about brix to put

before the first question (that was the only misformatting i saw in lynx) 10:20pm <_QZ> Tril: that was a problem with the version of lynx that YOU had The one that came w/ Debian 2.0 is better I just realized yesterday that I've been using the same Linux distribution I installed before I started college in 1997 tcn: Slack 2.x? i use slackware now but I have a copy of redhat to try and i'm gonna switch to debian when 2.1 comes out <_QZ> hmm <_QZ> i am using Lynx Version 2-4-2 should we add distro to the tunes member page? <_QZ> and it shows the page fine <_QZ> Lynx Version 2.7.1 (1997) doesn't qz I thought I tried lots of versions ( I have 3 or 4) and most of them didnt work right ωνω SignOff tcn: #TUNES (Ping timeout for tcn[cci-209150250113.clarityconnect.net]) <_QZ> Tril: get an older version :) ωνω tcn [tcn@cci-209150250113.clarityconnect.net] has joined #tunes tcn how long u been desynched just a second, I think tril: I think it's Slack 3.0 yeah that was a while ago.. 10:30pm hcf: What should I say you're working on? abi the infobot? tcn: hcf is the irc channel project coordinator ok he does everything involving adding "features" to the channel :) he is working on a channel topics (maybe agenda?) page rite hcf? <_QZ> there i added yer stinkin

no, i'm the coordinator, hcf is just a puppet Tril: yeah Qz now u can add a "Best viewed by any browser" icon, www.anybrowser.org/campaign/ oh wait does it still pop up that anti-IE crap "Best viewed with any browser except IE" pages should be best viewed by any browser. ANY browser????? ANY browser is http://www.anybrowser.org/campaign/ ωνω Tril has changed the topic on channel #TUNES to: TUNES project . current topics: IRC Ventriloquism How about Best viewed with no web browser :) cat, more, less... best viewed with ircii best viewed with netcat -l hostname.com 80|less :) 10:40pm Hmm, should I list the projects and show who's working on them, or list the people and say what project they're working on...? ωνω Tril has changed the topic on channel #TUNES to: TUNES project . current topics: This page best viewed with foo,bar,baz,quux,furby. kind of like un,deu,tua,horsengoggle horsengoggle is not the numeral 4 in German horsengoggle? horsengoggle is not the numeral 4 in German horsengoggle is also a game okay, Tril. >>> tcn [tcn@cci-209150250113.clarityconnect.net] requested PING 915518238 from #tunes if you are at camp and there is leftover food that more than one person wants, you count to 3 in German and then hold out your hands with some number of fingers up (while saying horsengoggle instea of 4) then add up everyone's fingers and count heads around the table and the last person you land on gets the booty furby is not the fifth meta-syntactic variable abi: source for say? hcf: qz must have made her forget it Tril: no she wont publicly say it, would is ironic s/would/which/ i did: source for say is if($msg=~/^say /i){&status("SAY:<$who>:$'.\n");&say($');return 'NOREPLY';} abi, are you here? tril: wish i knew abi, are you here is yes|no abi, are you here? yes abi, are you here? yes abi, are you here? i heard are you here was no abi, are you here? yes abi, are you here? yes abi, are you here? it has been said that are you here is no are you here? yes Not very random. tril, are you here? someone asked if you are here? 10:50pm good abi: join #tunes_test abi: join #tunes_test abi, sup? awwwwwwwww yeahhh... 11:00pm <_QZ> have u guys seen a furby? can't say I have <_QZ> i saw one tonight at my neighbors house <_QZ> stupid little things wtf are they? <_QZ> its a kids toy like a talking doll? <_QZ> looks like an owl without legs <_QZ> big eyes, mouth and ears <_QZ> and it talks and moves they say really stupid things <_QZ> ya <_QZ> they have to learn <_QZ> sorta <_QZ> they start out speaking furbish i have not met one, just read about em The same way abi "learns" <_QZ> and they gradually learn english <_QZ> no <_QZ> the speach is built in oh.. hahahaha.. that's cheesy <_QZ> it just gradually "learns" to say more of it over time, it just starts talking english <_QZ> and it has an ir sensor so it can detect other furbys <_QZ> and do special things around them like what? <_QZ> i dont know do the screw? haha like humping <_QZ> haha the furby mating call.. haha "The Joy of Furby Sex" they burp at each other i think <_QZ> Tril: do u remember the url to that furby autopsy page? I saw that autopsy thing on slashdot <_QZ> ok at the bottom Age: 3 days.. hahaha DOA qz it's still at http://www2.tunes.org/cgi-bin/TunesWiki?IRC the defunct topics list (hcf won't use wiki) 11:10pm hmm, i got an interesting mail from alonzo The achievement of such would be a monument on the par with Mt. Rushmore, It would be of incalculable benefit to every living soul on this planet, Even the Starving Children of Somolia, A shoe shiner in Calcutta, An insurance salesman in Idaho, A stray dog in Argentina, and especailly me. <_QZ> acheivement of what? "A Universal Linker"... I am not quite sure what he meant See yall ωνω SignOff tcn: #TUNES (Leaving) 11:20pm time to sleep ωνω SignOff Tril: #TUNES (Tril has no reason) 11:30pm ωνω SignOff hcf: #TUNES (Leaving) [msg(TUNES)] newlog 1999.0105 IRC log ended Tue Jan 5 00:00:01 1999