IRC log started Mon Jan 17 00:00:02 2000 i have to define some core operational vocabulary and build the other ideas on top of those rmm, what sort of interfaces? [msg(TUNES)] permlog 2000.0117 well, time to reboot :) java-style eeew i don't see why such are really needed i.e. protocols shared between unrelate objects except for asking whether a certain object conforms to it and that might as well just be a predicate well, that's what the class idea was partly for and it makes multiple inheritance unecessary which relieves the implementor of many headaches :) ok bbiaf -:- water [water@tnt-9-136.tscnet.net] has left #tunes [] -:- water [water@tnt-10-65.tscnet.net] has joined #tunes ok, let's continue without such a predicate if you had a virtual method with, say, an "inner", the method that extends it would have to use the virtual method's source in the new context 12:10am yeah but on the other subject ok an object either responds to a message or it does not if it responds to a certain set of messages its within that class * water/#tunes contemplates undecidable message protocols :) ok, behavioral classification so its only utility would be in that you can ask: can i safely interact with this object in all ways needed by this protocol? the only such danger in not using a predicate would be an object happen-chancily responding to some of the protocol but not all of it yeah, assuming you can automatically grok the protocol so long as you could iterate over the structure of an object and its chain of parents, this could easily be done from within slate i mean, two objects might call methods they have by the same name that have the same number of arguments, but that doesn't mean the protocols are compatible even on that one message-name it also would take a while of course, if it's built up incrementally, it might not be a big run-time load it'd almost be easier just to use a prototype that designates the object conforms to the protocol represented by the prototype that way the predicate need only be applied once well, i think that there are still ways to use predicates properly mostly just by some type analysis or just comparing source code hm... this should stay out of the language core too complicated so far * eihrul/#tunes nods. of course, we might figure out a simple way later on, but for now well, as i suggested, you could view the predicate as a compliance test, if it passes, it wins a link to the prototype that designates its certified :) s/its/it's yeah, i just don't see that approach as being useful basically, cacheing the predicate maybe i don't see how you are thinking of predicates 12:20am as a test (over this oh-so-expressive ascii link :) no kidding, "as a test" bah forget this, it's not worth discussing now there must be many things more productive dictionary.com: "To make a statement or assertion." no, i mean at what level... do you want predicates to read code? well, you never mentioned at what level this is used :) sigh... eh? we'd be better off working out the code model i mean, the actual substance of it the trick seems to be that we're dealing with objects and functions in the same syntax without a functional basis we still of course have symbol bindings and environments and all that, though they might get re-designed i'm thinking that "car" and "cdr" won't cut it anymore * water/#tunes ducks sure, that's why you have first and rest * eihrul/#tunes ducks lol so the question now is how one would produce code for slate? no, i was thinking that you could address the contents of the cons cell with "0" and "1", that way combining them works like making binary strings that correspond to a notion of binary tree address sound cool? eihrul: we're working on that sure, but any name will do they're just a 2 element vector what the given element means is dependent on its use well, i'd like the addressibility thing to be intuitive so foo and bar would work appropriately even yeah but foobarfoofoobar doesn't seem to correspond to 18 12:30am :P i'm just saying the name of the slots is arbritrary, doesn't matter well ok i'll ignore that for now we then have simple function call/object instantiation which don't seem to need to be distinguished, afaict okay... question how mention that such would only take a single argument huh? speak english dude you said function have one input and one output well, for now rmm... s/how/you, i tend to insert the wrong words in the wrong places heh. interesting habit :) perhaps its a minor form of epilepsy? yes, let's use the single object i/o idea for now what about binary functions like '+' or '='? they take cons cells * water/#tunes ducks or even unordered pairs at the worst you can do something like haskell, but why bother? hmm... that introduces message passing into the simple obtaining of arguments, but it removes the same thing from the calling object how does haskell do it, i forget it uses higher order functions oh yeah no, i'm not interested in those per se hm well it doesn't change syntax from the usual lisp stuff 12:40am i mean, function calls look the same from the caller's perspective so long as he doesn't have to cons arguments and that's handled by the mop :) now, though, object-oriented basis for language would allow one to pass arbitrary containers instead of just cons cells heh bleh, i'm not sure how far to go with this design at this level incrementally in all areas is a good strategy heh sure, whatever that means well, if you focus too much on one part of the design well ok so, we have car, cdr, apply which work on all ast's, both objects and functions well, apply would only work on full objects hm (object message arg1 arg2 ....) that's a message-send (apply object arg1 arg2 ...) that fills in object slots and initializes and of course clones a question that arises for me is how to leave a slot unbound, i.e. for partial-eval? maybe a special keyword just for that concept currying? i think currying is a bit too much for him yet ;) or you could apply a slot re-ordering and just apply the first n arguments abi forget currying water: I forgot currying that would leave the rest unbound 12:50am no, currying relies too much on functions but is partial evaluation similar in concept? of course it is i just don't thinking higher-order functions are easy to grasp if you could address lots by name for initialization, you wouldn't need to reorder s/lots/slots wha twould the syntax be then? not sure but, if you view (object message) as a unary message that clones the object and further addressing of the slots by name to initialize them as just sending a message to the slot to assign it and then finally initializing when all slots are filled that need to be would that be all the slots, though? hmm, no, atleast not in the case of methods why not? some variables may just be temporary results whereas others are parameters there's no easy way to do this not without breaking the lisp model hmm afaik, partial evaluation in lisp would just be done with a closure yeah but even partial eval in lisp requires non-trivial syntax 01:00am just (lambda) how so? for arbitrary selections of arguments? how would you partial-eval on the middle argument of a 3-argument function? you make a function that supplies an implicit argument write it out and otherwise just routes all the remaining arguments (lambda (x) (+ x 1)) that's jsut one argument (lambda (x z) (+ x 1 z)) what about (lambda (x y z) (* x y z)) how would you substitute for y only? you'd just make a function to wrap it that binds a specific argument to y bleh, i must be getting tired, i just realized how easy it is (duplicating much of the work of currying) it's still not message-passing i think that's what's bugging me therefore not pure oo well, the other way i described is very similar to currying how is currying oo, though? not quite OO, but still fits within framework of message passing :) ummm no i'm not giving up pure oo for anything how would you represent partial eval then? well, lets look at functions as objects we're basically asking how we can clone by assigning but only partially-assigning so, we apply an eccessor method by name ah of course the syntax would be... (object (y 1)) for isntance 01:10am that's not too terribly different from what i suggested :) or (myFunction (y 1) (x 2) (z 4)) yeah i know that now but you weren't fast enough on giving me the syntax :P the syntax without sugaring wouldn't be pretty for the lambda (x y z) -> x*y*z, the above evaluates to 8 ((object member) y 1) (((object member) y 1) z 2) not functional! its not (object member) returns a clone of the member well, why (object member)? member being the specific message but it doesn't update the object the *object* is what counts this is just viewing a method as an object that clones itself when retrieved from another object's slot, and then evaluates when all components needed to complete the message have been delivered hm not quite why would retrieval itself imply cloning? it would seem that the "delivery" is the only thing that nees cloning s/nees/needs that's what i meant well, it didn't come out that way :) well, lazy eval would obviously help out the implementation however, the clone needs to happen before any assignments are made if we're going to toy with ideas like this not *before*, *while* how do you mean while? assignments are cloning actions themselves oh, the immutable objects rear their ugly heads :) yep that's half the point of cloning in my idea of the system so in that sense (object message) never need return a clone right, lazily i mean, you could program every single reference to something to clone it, but that's pretty useless 01:20am hmm, i must sleep alright -:- SignOff eihrul: #TUNES ([x]chat) -:- SignOff hcf: #TUNES (Leaving) 01:30am -:- SignOff water: #TUNES (Leaving) dum di dum 02:00am -:- binEng [Anders@j141.ryd.student.liu.se] has joined #tunes ah, up with the sun. almost.. hi Fufie hi bineng You're up early too, eh 02:10am the phone awoke me.. I was awaken too. Otherwise I'd slept for a few hours more, I guess.. read your glossary mail ah seems as if Prism introduces a dozen new meta-words.. a glossary might be helpful I'm working with that now. I have been doing that for the past two days Turns out that the glossary just grows. Currently I have some 50-60 terms ouch maybe going with a standard vocabulary saves SDS a lot of trouble then Could be... Seems that the terminology comes from cybernetics and semiotics, fields I have previously little experience with. But there are good sites. 02:20am -:- TwAt [Cunt@193.63.36.106] has joined #tunes Muzik :) -:- TwAt has changed the topic on channel #tunes to: TUNES, Free Reflective Computing System || slate lol heheh big hormon production this morning? :) -:- SignOff TwAt: #TUNES (Excess Flood) excess flood? Looks like you were right Fufie, lol -:- TwAt [Cunt@193.63.36.106] has joined #tunes what were we saying ahh yes hello hehe -:- TwAt has changed the topic on channel #tunes to: BinG, Free Reflective Computing System || slate lol -:- TwAt has changed the topic on channel #tunes to: BinG ok ok Junglist Massive check this out, Free Reflective Computing System || slate lol could you stop that, TwAt? lol nice that sounded quite good -:- TwAt has changed the topic on channel #tunes to: BinG ok ok Junglist Massive check this out, Free Reflective Computing System || slate there you go not ruddddddeeeeeeee any more i suppose -:- binEng has changed the topic on channel #tunes to: TUNES, Free Reflective Computing System || slate now let it be what!!!!!! you heard put the junglist massive back -:- TwAt has changed the topic on channel #tunes to: Thus room is full of gays!!! come on in for a good pumping!!! lol lol -:- TwAt [Cunt@193.63.36.106] has left #tunes [] -:- binEng has changed the topic on channel #tunes to: TUNES, Free Reflective Computing System || slate idiot -:- TwAt [Cunt@193.63.36.106] has joined #tunes hmm doh twat: relax some it's early morning erm im joking we don't appreciate your jokes 02:30am 11:40 is early???? morning lol yes erm no I was up until 5:00 this morning, so yes it is pretty early. thats your fault lol your getting no sympathy from me you should go to bed you see already been there then you sleep and then you can get up twat: stop sounding like a mum and then it aint early at 11:40 well 10:40 where i am how nice for you oh yes very in fact oooooooooooo orgasmic 02:40am -:- TwAt has changed the topic on channel #tunes to: WANKERS ARE HERE!!!!!!!!!!! COME AND JOIN THE JIZZY FUN LOL well i think your a load of arse's and that you should go and get a life!!!!!! BYE -:- SignOff TwAt: #TUNES (Dont be a twat!!!!) don't... move -:- PUTTY [Cunt@193.63.36.106] has joined #tunes -:- PUTTY [Cunt@193.63.36.106] has left #tunes [] * binEng/#tunes shakes his head * Fufie/#tunes giggles -:- binEng has changed the topic on channel #tunes to: TUNES, Free Reflective Computing System || slate 02:50am Fufie: This script I made, is it related to SDS or S14 in some way? 03:00am which script? That one I talked about on the mlist, to generate a html file of the glossary not a lot I guess oh well it's more like a utility and both SDS and S14 are systems if you look at the sds web-pages.. all html-pages there are generated by python-scripts but the utility reflects a system, a code for a glossary (to use the terminology) I might have a look at the script and see if I can translate it to a SDS context.. that might be useful how'd you mean? well.. SDS has powerful tools for XML, and glossaries and linking is done very well in XML.. ic 03:10am 89 nodes in the glossary now I should split it up into one page per node Fufie: Do you know of any definition of or discussion around "VM"? no definition no or maybe.. two sec 03:20am umm no too bad 03:30am -:- SignOff binEng: #TUNES ( <k!14>) -:- dalvarez [ircusr@212.68.72.98] has joined #tunes hey all hi dal someone knows whether SPARCv9 supports a multiplication instruction directly in the RISC inst set or a .mul macro like in the v8 class ? and how many cycles every of both ways takes to exec on different processors I'm thinking about multiplication optimisation (when to use shift and add or the mul) 04:20am afk 04:30am -:- binEng [Anders@j141.ryd.student.liu.se] has joined #tunes hello 05:50am -:- Ghyll [karltk@mp-217-241-36.daxnet.no] has joined #tunes -:- AlonzoTG [Alonzo@216-164-134-100.s354.tnt3.lnhva.md.dialup.rcn.com] has joined #tunes -:- SignOff Ghyll: #TUNES (bar) umm.... must be night where most ppl are it's around half past four here a. m. I guess greetings 4:24 p. m. in get ger * binEng/#tunes was admiring INTERCAL binEng sure knows if the SPARCv9 has a mul instruction directly as part of the inst set do you, binEng? nope (what question I answered is up to you to find out) the v8 has a .mul macro (which I think is resolved into shifts and adds at compile time equally as .div) -:- Downix [down@d-gnaps-112.ici.net] has joined #tunes anyone here know of a good disk partitioning utility? partition magic I just was thinking how that could be optimized (i.e. when to use an eventually existent mul or directly shifts and adds) 07:30am -:- SignOff dalvarez: #TUNES (bbl) -:- SignOff Downix: #TUNES (Ping timeout for Downix[d-gnaps-112.ici.net]) flip flop flap is brilliant! still looking at that intercal stuff? 08:20am a little. om I had a look just before, actually 08:30am -:- Ghyll [karltk@mp-217-229-3.daxnet.no] has joined #tunes * Fufie/#tunes stretches * binEng/#tunes is away -:- thomas [thomas@193.217.63.152] has joined #tunes hei thomas -:- Downix [down@d-gnaps-222.ici.net] has joined #tunes hoy all 09:30am hi 09:40am -:- SignOff Downix: #TUNES ([BX] Time wasted: all of it) -:- dalvarez [ircusr@212.68.72.98] has joined #tunes greetings... -:- hcf [nef@me-portland-us746.javanet.com] has joined #tunes 10:00am -:- SignOff Ghyll: #TUNES (bar) * binEng/#tunes is back -:- Downix [down@d-gnaps-284.ici.net] has joined #tunes * AlonzoTG/#tunes left clicks on Downix abi: joy page? i haven't a clue, thomas abi: joy? i think joy is at http://www.latrobe.edu.au/www/philosophy/phimvt/j00syn.html or a forth like functional programming language nice.. people who want to discuss bob dylan are posting to comp.lang.dylan :-) heh :) I can stand this debian-emacs, what command would you use to switch to another buffer? select-buffer, right? and not select-frame or whatever I think there is next-buffer Fufie: a named one out of 20 there was this select-buffer command in me switch-to-buffer ahhhh... better can't remember which key I used for that.. I'll let you know the next time I just click it Hmm, no replies to my prism mails yet :( -:- SignOff Downix: #TUNES (BitchX: the right choice for a healthy pet) has eaten list-bindings, too (or am I just confused and there never was one) WHAT THE HELL ?!? 10:10am set-variable : yes; list-variables: no; abi: emacs? hmmm... emacs is a victim of it's initial success or sounds like a great idea in theory, but the implementation sucks thanks, abi dalvarez: sure thing will tunes have a *util* emacs ? somebody must have spend damn much time on this abi thing... it is actually a *she* abi: right? bugger all, i dunno, bineng gee as she is interrupt driven she won't know until you tell her :) right, abi? abi: you're female. foo, abi? thanks, ab_i, works thanks, abi sure thing dalvarez 10:20am would be mad if _she_ would protest herself... 10:30am bbl -:- SignOff dalvarez: #TUNES (Leaving) 10:40am -:- eihrul [lee@usr5-ppp58.lvdi.net] has joined #tunes hello eihrul anything new on this slate thingie? afaik, just some discussion last night (can't say what water has done in the wee hours of the night though) alright 11:00am abi: Green is at http://www.dc.ufscar.br/~jose/green/green.htm abi: no, Green is at http://www.dc.ufscar.br/~jose/green/green.htm okay, Fare. -:- Downix [down@d-gnaps-264.ici.net] has joined #tunes -:- SignOff binEng: #TUNES ( <k!14>) so what's up? omlie omlie omlie omma. 11:40am -:- dalvarez [ircusr@212.68.72.98] has joined #tunes hmm green appears to be a weird mix of pascal and java with a pseudo-prototyping scheme... weird that and it treats primitive types as exceptions to normal class behavior (ugh) 11:50am -:- Scotty [user2513@p13-nsv4-cardiff3.tch.dtn.ntl.com] has joined #tunes -:- Scotty [user2513@p13-nsv4-cardiff3.tch.dtn.ntl.com] has left #tunes [] -:- SignOff Downix: #TUNES (BitchX: it isn't only my script, its also my client) -:- binEng [Anders@j141.ryd.student.liu.se] has joined #tunes whee -:- Downix [down@d-gnaps-276.ici.net] has joined #tunes 12:20pm -:- ult [noone@user-38lc645.dialup.mindspring.com] has joined #Tunes -:- SignOff thomas: #TUNES (Read error to thomas[193.217.63.152]: EOF from client) -:- SignOff hcf: #TUNES (Leaving) -:- SignOff ult: #TUNES (Ping timeout for ult[user-38lc645.dialup.mindspring.com]) -:- SignOff dalvarez: #TUNES (Leaving) -:- ult [noone@user-38lc645.dialup.mindspring.com] has joined #Tunes -:- SignOff ult: #TUNES (Ping timeout for ult[user-38lc645.dialup.mindspring.com]) -:- ult [noone@user-38lc6cb.dialup.mindspring.com] has joined #Tunes wtf wha? 01:20pm -:- dalvarez [ircusr@212.68.72.98] has joined #tunes hello hello -:- dalvarez [ircusr@212.68.72.98] has left #tunes [] 01:30pm (def-cool-feature 'pprint) 01:50pm -:- mibin [mibin@62.11.103.196] has joined #tunes -:- SignOff Downix: #TUNES ([BX] We are BitchX of Borg. You will be assimilated. Using mIRC is futile.) GAkuk * AlonzoTG/#tunes greets "Salutations Fare!" :-) -:- coolguy [user5301@host-209-214-5-48.mia.bellsouth.net] has joined #tunes * AlonzoTG/#tunes left clicks on coolguy hi -:- coolguy [user5301@host-209-214-5-48.mia.bellsouth.net] has left #tunes [] 02:30pm * Fufie/#tunes points on alonzo and clicks with his mac-mouse.. Fufie: MCL ? the MCL crowd seems to be pretty ecstatic.. I have barely tested it -:- SignOff ult: #TUNES (Leaving) (I have a logitech wheel-mouse here now) mcl? abi: MCL is Macintosh Common LISP, a proprietary implementation of CL for MockAss mcl is a common lisp system for apple-boxes.. a lot of it's users _love_ it I've got a mail! Hooray! :P bineng: make a movie about it good idea.. if I wouldn't get sued 03:10pm /c hum * Fufie/#tunes doesn't get it.. the generated code worked what code? rumour has it code is freely availbale though (cl, c++, java and easy to add more languages) the code my hypermedia-system generates for declared classes/objects even the aspects are weaved in Fufie: Do you have Tunes somewhere in there too? I am currently moving most of the hardcoded node-types into the component-language, ie bootstrapping the system.. it's weird when it works bineng: not really, but the system would be interesting to tunes bineng: providing web/net service based on objects hm, get a tunes core up, and we'll beat squeak ;) maybe a system like everything2.com could be evolved to something interesting if dynamic categorization and filtering was added based on user-defined criterias.. 03:20pm everything should be relatively straightforward to do in the system in that way you could choose to see only specialized "domains", while that info would still be available for others. (heh, that sentence begs for misinterpretation :-) :) add ontologies to that.. ..and you get some kind of security too security? it has been said that security is overrated anyhow :) * Fufie/#tunes agrees with abi there.. definite restrictions of what domains you can see things should be open :-) what? security is important * Fufie/#tunes likes security RMS-style open systems require more fine-grained ways to control security what's that style then? no passwords * Fare/#Tunes considers the bugroff license seen the latest thread on cybernethics? me? yes bugroff seems clear enough, but that's not in any way what I think of when I say security when I say security, I wield my handgun hmm. That's a way I'm sure you'll succeed with the 'bugger off' part of bugroff in that way at least :) 03:30pm but passwords sucks people who hide stuff is doing something interesting and should share.. not hide it in an account with a password whaddyawant? digital fingerprints? Fufie: how do you control *write* access? no.. a free and open world where the grass is green, good food is free and the coke is free (as in free beer).. :) imagine You will never get away from the fact that there always is a legitimate need for not sharing certain information. there's no borders no passwords and no lousy hax0rs and script-kiddies and l0sers and suits that's sugarcandyland! * binEng/#tunes hits Fufie with a wake-up-stick where animals go when they die, if they served the human masters well. if people want security, they can always use unix * Fufie/#tunes wakes up.. looks around.. and starts crying no need to burden tunes with it :) Ah come on ppl I got some p-mail returned by the US Post Office with the letters "F O E" (or FOB). What does it mean? Security is a legitimate concern! unix, secure!? make me laugh! (or is that 'legitime'?) * Fufie/#tunes wants that world that they have on the jehovah's witness brochure where everything is peachy.. just that I want to add electricity, saracasm, fun, computers, and stuff and get rid of the religious fundamentalists ;) Fare: okay, they can use a rock... a rock is pretty secure an atom bomb is more secure nah, atom bomb is only as secure as the rock security is nice if it doesn't get in the way ;) a railgun? Fufie: Aren't they considering their faith the only right one? an atom bomb that has reacted is more secure, however bineng: yes, but I was planning to ditch them out of their peachy world.. they didn't want computers :) Fufie: you could always start by introducing the abacus... quote: Theists think all gods but theirs are false. Atheists simply don't make an exception for the last one. Fufie: umm.. but how about all that happiness? Mut be getting on ones nerves after a while eihrul: the abacus is one small step for me.. but too big a step for a jehovah's witness Fufie: start with the wheel and a piece of string then bineng: I said I was going to add sarcasm.. how welse could I bring along any wilde-books? ;) Fufie: I'm still critical.. criticism is good yes, rational criticism. 03:40pm naturally, I was going to make a law forbidding PMS Fufie: so, would I have to go to school early every morning? PMS? Fufie: how about a law forbidding sexual differentiation? umm.. PMS as in the monthly thing for girls where rationality breaks yes, and a law forbidding laws oh :) bineng: if the school taught maths, natural science and computer science you would have to go to school argh ;) bineng: the school day starting around 2pm oh. so I couldn't go up until noon or so.. it would be illegal to get up before noon heh that would mean that you were not hacking code till late at night a crazy world which one? one we live in? or the imaginary one? :) both perhaps all worlds are crazy as a natural consequence of.. something hoomans right we're such silly creatures indeed. But things could be worse. I am sure whomever created us must've been really ashamed that could explain a lot of things god knowing he created an imperfect universe, went home... got some caffeine, and made tunes and let the universe to hell hate that silly god idea as some human 03:50pm om pah * Fare/#Tunes received the bill from NSI. What other registrar can I transfer to? "If you could make a difference by voting it would have been outlawed long ago." -Kieth Linch, Barred from voting by a wrongful accusation. god went to a couple of bars, got pissed.. no girls wanted to talk to him.. he grew tired.. went home in his lab.. created a patjhetitc world thingy he shoved atop a shelf and fell to sleep.. what the world should fear is the cleaning lady yeah, girl gods eh? Come on, everyone knows chicks just aren't gods there was a dood who was robbed by his paren'ts cleaning service each week. "Ivonava Is G0D!!!" 04:00pm goodnight -:- SignOff binEng: #TUNES (sleeping <k!14>) ATG: "if you could make a difference by NOT voting, it would have been outlawed long ago." fortune -m voting Hey, I vote at every opportunity. I even learned that there was a barely publicised general election coming up on May 2nd, I plan to be there. =P (in USA the only widely known general election is on the first tuesday of November). 04:10pm -:- Downix [down@d-gnaps-303.ici.net] has joined #tunes om Hey Alan 04:30pm -:- air [brand@p0wer.qzx.com] has joined #tunes -:- SignOff mibin: #TUNES (Ping timeout for mibin[62.11.103.196]) -:- AlonzoTG [Alonzo@216-164-134-100.s354.tnt3.lnhva.md.dialup.rcn.com] has left #tunes [] -:- pyro [tcn@cci-209150250041.clarityconnect.net] has joined #tunes -:- SignOff Downix: #TUNES ([BX] Windows 95, coded entirely by blondes) if I were a blonde I'd be insulted by that comparison to the people who wrote win95 wha? win95 isn't just dumb pyro: gakuk 05:10pm you know how much time I waste dealing with win95 at work? "all day".. hehe agg, this is some ugly C++ not to infer that some C++ isn't ugly that this is just exceptionally ugly is it still prettier than BASIC? that's in dispute (Self source code) man win95/etc makes it next to impossible to do simple things even arranging windows :) so does C++ :) isn't windows written in C++? probably a little bit of assembly, c, c++ and i've heard rumours of visual basic being bandied about well half the stuff running on top of windows is VB I wonder how much overhead is imposed by API calls, VB, and a relational database lots 1000x? * eihrul/#tunes just wants a LispOS. 1000000x? lisp to the metal :) even that would be faster :) 05:20pm lisp isn't too slow, afaik it doesn't have to be you can use type declarations at the worst lets see what we can do with a lisp os and a forth os :) though i've been looking into self lately, and they can adaptively determine types and recompile code heh.. you think windows would be any better if bill gates wrote it himself? probably one person versus more engineers than linux has fs hackers :) it'd definitely come out cleaner he'll probably have a nervous breakdown or something abrupt change of philosophy 05:30pm hey fare how's the Compose key work? ? yup ok I wonder if I have a compose key right now guess not US keyboards don't have it, right? I mean, you have a key labeled 'compose', right? 05:40pm you can map a key to it no, I don't have such a key. I have a key labelled "to the square", which I use as compose or else, I use the key "printscreen" as compose I switched to the azerty keyboard... whoq poor you why so? pain in the qss whereùs the co,pose key§§ hehe £ man, my ISP's mail server is soo slow! ainùt they all? no compose key (by default, anyway) 05:50pm you have to map one yourself im in freebsd xmodmap -e 'keycode 111 = Multi_key' ymmv, as for the keycode. Under Linux, 111 is that "to the square" key wonder what that is on mine it's on the upper right? was under escape, on my keyboard upper left 78 is for the printscreen oh, that's ~ for me 111 is hey, why don't you just edit an existing .xmodmap to find the number of a key you don't use except, ~ is 41 I don't use X oh, you want console-mode keynumbers? -:- Kaufmann` [newbie@200.224.105.218] has joined #tunes anyway, just use the freesbie equivalent to dumpkeys (or xmodmap -pke) to have your current key settings urgh Kaufie: yablutsk Good God, Faré 06:00pm you just _had_ to do it, didn't you? * Fare/#Tunes hides I tell you, dude. This is going to get ugly. ugly? it has "jihad" written all over it has it? How so? hehe TPL vs. GPL Let's create that WWBA -- World-Wide Bugroff Association oh my * Kaufmann`/#tunes can see it already... Faré and RMS ten years from now as bitter enemies, like in a bad Bette Middler flick anyone entering the association is entitled bugroff usage and copy of the software licensed to the association, but may not distribute outside yikes (not because the association forbids it, but because the incompatible licenses forbid it) Next thing you know, ESR will be breaking up the fights and of course, anyone can freely enter the association -- no administratrivia needed Kaufie: I crown you first member of the association. whee * Kaufmann`/#tunes dances around, all happy and stuff My eliteness has finally been recognized! And now... I shall RULE OVER THE WORLD WITH AN IRON FIST!!! I sent a reply to the list, but my ISP seems to hoard mail for 30 minutes before to actually resend it well -:- ult [noone@user-37kbao1.dialup.mindspring.com] has joined #Tunes which list? eihrul you here? cybernethics, of course! oh.. sendmail -q30m? nope pyro: might well be it as soon as the mail is here, I'll reindex the web archive pyro: what news from retro2 ? even though RMS's opinion re. the GPL is about as canon as it gets, the letter of the license itself is what counts. So if you're in France and you get on some legal mess or something, even though RMS might not stand behind your interpretation of the license, you still might be able to convince the judge that you're right. Or something. either way we win. how so? Either collective licenses are valid, and we have the WWBA ah or they don't, and the GPL is more powerful the problem is that it's difficult to retroactively fit WWBA'd software into traditional licenses. * Kaufmann`/#tunes can't wait to receive his WWBA membership card But that problem is good: it makes the whole license stuff look as stupid as it is. Kaufie: make your own. The WWBA doesn't deliver cards. Or rather, any random piece of paper is considered a valid WWBA membership card. heh 06:10pm Fare: retro3! and I'm still on the keyboard driver * Kaufmann`/#tunes wonders how in hell he got the nickname Kaufie... *shrug* pyro: sorry about the mistake ;) subscription to cybernethics@tunes.org is sky-rocketing! I should think so Fare, subscribe me, will ya? Actually, that's the way I knew the story was passed to /. ... heh the only reason I get anything done is because it's too cold to do anything else I think I'm going to unsubscribe from it now... once something gets contaminated by Slash-losers, the s/n ratio goes DOWN oh shit that's why our scandinavian friends are so many among hackers... with any luck, we'll be getting few Natalie Portman-related messages ? what do Scandinavians have to do with anything? shuddup, you southern untermench. eeek stop the name calling... I may know little German, but I understood _that_ * Fare/#Tunes remembers that great scifi book by a czech author "the war of " where (a mock of Hitler's ) is a word for that submarine species what's an untermench? Fare: i believe i asked if i could become a member for cvs access yesterday :) pyro, the opposite of an übermensch Retro status announcement: kernel size is 786 bytes 06:20pm but what's a mensch? heh eihrul: yes you can eihrul: have you filled the membership form? pyro: it's an old european insult tsc Nietzsche sucks "War with the Newts", by Karel Capek a great, funny, book Fare: where's the membership form? ah, found it oh, it's a subhuman? I shoulda looked to see if I had a german dictionary it is said that when he invaded czechoslovaquia, Hitler sent the Gestapo to kill the man, but he was already dead some months ago, so his brother was killed instead. eihrul: members.html applied, sir -:- Downix [down@d-gnaps-170.ici.net] has joined #tunes 06:30pm I'm amazed at how offensedly the /.ers take the cybernethics thread ... /. is /., don't forget I hope they're too lazy to post to cybernetics holy crap.. /. is slow Faré, yeah I'm posting a message right now Or is it just the moderators upping the more offensive messages? naw I know, /. seems weir4d lately /. moderators seem to equate opinionated with insightful hehe.. Corel's linux strategy Corel will always suck Kaufmann`: I noticed that. I got my one 2-score by being opinionated also, they're rather big on this weird variant of mob mentality... and the current mainstream opinion about you right now, Fare, is that you suck. Kaufmann`: Fare may suck, but the real question is, does he spit or swallow? Kaufmann`: do you consider linux geeks mainstream? Downix =P Downix: I bite no, you byte sorry that was lame pyro, mainstream with regard to Slashdot * Kaufmann`/#tunes has got a grand total Karma of 33 behold How do I check my karma rating? oh man... barcodes readers on microwaves /users.pl 06:40pm karma for fare? let me see my karma Kaufmann`: I have 3 karma. heh mostly due to the number of people who commented to my posts * Kaufmann`/#tunes points a finger at Downix and laughs :) yow, my mail to cybernethics was sent more than one hour ago, and is still hoarded by my ISP!!! It looks like successfully submitting a story makes you +4 Fare, yeah Fare: I keep trying to get a story on * Kaufmann`/#tunes has only got one on so far... the Brazilian pro-Free legislation thing Wow, I've had 3 people reply to my comments hum. What registrar do you know who'll transfer from NSI? as always, the Slash-dimwits completely misunderstood it yup Kauf, what's your karma? I tried to post another one about Microsoft releasing a program under an almost OSD-compliant license. In fact, I tried to submit it nine times IIRC. But whaddayaknow, Rob was "feeling tired of Microsoft stories" and thus decided to put a ban on stories related to that. ult, 33 maybe he just doesn't like you Kaufie? lol Heh My karma is -72 yeah, I guess Rob Malda doesn't like me. How 'bout that? :) 06:50pm sux2bu * Kaufmann`/#tunes will be off now oh, by the way, I may have mentioned #tunes on Slashdot... so be prepared :) -:- SignOff Kaufmann`: #TUNES (kathyanne gets kick'd / as leaves fall on still waters / she is here no more.) eh, Fare has tunes in his sig... in which case the tunes page mentions the irc channel I can see interesting posts by lowering the moderation limit hmm 07:00pm hey, one of the (unupmoderated) comments even gave an interesting URL: http://www.adbusters.org/magazine/28/usa.html my ISP still hoards my mail. Darn! ok, after 90 minutes, here is my mail! Fare: Noone is sending me mail anymore not even spammers? You lucky one! I'd accept the spammers 07:10pm * eihrul/#tunes ponders economies suck mm, ussa, united socialist states of america socialism is a decent system if not taken to extreme representative democracy is a decent system if not taken to extreme perhaps every 2 centuries or less a government must be dethroned and that any government older than that will go corrupt, regardless of type the US govt was corrupt 200 years ago sure, but it gets more corrupt it doesn't level off -:- AlonzoTG [Alonzo@216-164-134-100.s354.tnt3.lnhva.md.dialup.rcn.com] has joined #tunes corruption is inevitable, its just after a certain critical mass that it's annoying WOW, FARE's FAMOUS!!! =P INfamous what happened? all the /.ers crashed adbusters? think so 07:20pm -:- SignOff AlonzoTG: #TUNES (Have Nice Day :)) -:- Tril [dem@bespin.dhs.org] has joined #TUNES -:- mode/#tunes [+o Tril] by ChanServ Fare congrats on a /. posting! he posted, lemme see hum Downix: I mean, a succesful article submitted we'll see if bespin crashes hey everyone tail -f /var/log/apache/access.log anyone have a version of wc that can measure acceleration? -:- mwr [mwr@ip-27-050.cookeville.total-web.net] has joined #tunes -:- SignOff mwr: #TUNES (Leaving) Anyway, Fare, good move linking to a HTML page, not the wilma script! Then we'd be dead. err, I see that you did both well, goodnight -:- SignOff pyro: #TUNES (pyro has no reason) Oh, forgot to read the thread myself bye pyro 07:30pm -:- dAS [das@spc-isp-mtl-58-7-44.sprint.ca] has joined #tunes -:- I`m_Inf [informer@mthcr41303.herston.uq.edu.au] has joined #tunes hmm eh? -:- mibin [mibin@62.11.102.218] has joined #tunes 07:50pm -:- SignOff dAS: #TUNES (Leaving) hmm gotta set the refresh time higher err 08:00pm -:- eihrul_ [lee@usr5-ppp58.lvdi.net] has joined #tunes -:- SignOff eihrul: #TUNES (Ping timeout for eihrul[usr5-ppp58.lvdi.net]) -:- SignOff mibin: #TUNES (Ping timeout for mibin[62.11.102.218]) -:- mibin [mibin@62.11.102.218] has joined #tunes -:- eihrul_ is now known as eihrul abi: seen water water was last seen on IRC 18 hours, 43 minutes and 39 seconds ago, saying: alright [Mon Jan 17 01:21:36 2000] -:- kehdri [dnimaster@98CD07B5.ipt.aol.com] has joined #tunes 08:10pm -:- SignOff Tril: #TUNES (Tril has no reason) -:- NetSplit: sterling.openprojects.net split from irc.linux.com [08:11pm] -:- BitchX+Deb1an: Press Ctrl-F to see who left Ctrl-E to change to [sterling.openprojects.net] -:- Netjoined: sterling.openprojects.net irc.linux.com -:- Fare [fare@quatramaran.ens.fr] has joined #tunes -:- air [brand@p0wer.qzx.com] has joined #tunes -:- I`m_Inf [informer@mthcr41303.herston.uq.edu.au] has joined #tunes -:- eihrul [lee@usr5-ppp58.lvdi.net] has joined #tunes -:- mibin [mibin@62.11.102.218] has joined #tunes -:- hcf [nef@me-portland-us303.javanet.com] has joined #tunes -:- kehdri [dnimaster@98CD07B5.ipt.aol.com] has left #tunes [] -:- grolim [central@p56E-77.wantree.com.au] has joined #tunes -:- SignOff grolim: #TUNES (Leaving) -:- Svin [gong@autopsy.portal.ru] has joined #tunes hmm, where are all these people coming from? slashdot, maybe? gah, then can they go back? :) yep, if you insist 08:30pm damn eh? * ult/#Tunes kicks mindspring having serious connectivity problems tunes, slashdotted, hehe s/ ,// apparently, so -:- mibin [mibin@62.11.102.218] has left #tunes [] huh hmm, these graphs of branch optimizations look like contortionists, especially when they loop back on eachother * Svin/#tunes digging thru tunes.org stuff would I like to know what Brian Rice name as 'atom' you mean arrow? yep what stands for 'quarks' 8-? huh? nevermind I do like such things like 'ontological relativism', it twists me definily! eihrul: can you tell me whatcha doing here? just a student of #tunes really? 08:40pm studying what? whatever i wish damn, too confusing heh, can you tell me if tunes.org capable of holding sacred knowledge like basics of building healthy communities? we have a healthy one here tell me more about it .. asking for nothing, I guess well first off, we play Quake 3 Arena constantly to rid ourselves of homicidal tendancies... uh, cool never seen it settig at 40x25 terminal sitting at describe me how it would look at Wyse vt102 terminal, please? :) 40x25? Bah. I run it on my 20x12 terminal! You should point me a fleamarket where you got such a dream! heh. www.tunes.org is a repository for useless knowledge. I guess But can you point me MOST useless? hmm...http://www.tunes.org/~fare... lots of incredibly useless yet brilliant papers. It's all about fleamarkets? Yes. Papers about the dynamics of static fleamarket. static fleamarket - a good joke! 08:50pm okay, got thru your warning hah, computing freedom Silly russians... * eihrul/#tunes wonders how many more Svins are coming through here... grin need to feed this franco stuff to my wife ult: it's your page or it's of another dreamer like you? "People will browse it according to ideas, not addresses or keywords" ghm, dreaming about it since 12 Jun 1992 09:00pm okay, if noone interested how to turn inside out GPL stuff ... -:- SignOff Svin: #TUNES (Wave - Phoenix with Fluff Mods v1.8.0) -:- Neuron [imbriaco@cx713411-a.chspk1.va.home.com] has joined #tunes 09:10pm Frankly, you can't, Svin -:- ult has changed the topic on channel #tunes to: Go Away Clueless Slashdotters! >:) lol You know, topics like that will just attract more *.aol.com addresses. -:- ult has changed the topic on channel #tunes to: - What about clueful slashdotters? -:- ult has changed the topic on channel #tunes to: Tunes: A Reflective Computing System. -:- Downix has changed the topic on channel #tunes to: Reflective Computing and Cross Dressing -:- eihrul has changed the topic on channel #tunes to: Reflective Computing and Cross Dressing and Reflective MP3s -:- eihrul has changed the topic on channel #tunes to: Tunes: A Reflective Computing System. -:- Downix has changed the topic on channel #tunes to: Reflective computing and Topic Wars (http://www.tunes.org) Downix: dude, enough ok -:- SignOff Neuron: #TUNES (So much for meaningful conversation.) -:- eihrul has changed the topic on channel #tunes to: Tunes: A Reflective Computing System. Downix: your plan worked What? you scared him away good! -:- tooky [tooky@pc189.vhall.umist.ac.uk] has joined #tunes -:- hcf has changed the topic on channel #tunes to: TUNES, Free Reflective Computing System || slate -:- SignOff tooky: #TUNES ([x]chat) 09:20pm wtf 09:50pm -:- SignOff I`m_Inf: #TUNES (Leaving) -:- lar1 [larman@sdn-ar-015casfrMP062.dialsprint.net] has joined #tunes Hey lo 10:00pm Fare: Are you the same Fare that submitted the GPL hole thing to /.? yes he is Sweet! Congrats Fare! :) lar1: read some of the comments on the article... they're pretty harsh eihrul: Harsh on the GPL? no comment Ok, I'll read * Downix/#tunes read them and criticized a lot of the people Please respond to my post! roblimo even apologized for posting it though with really heavy tones of contempt and sarcasm it seemed eihrul: I think it was wrong for him to appologize. I see why he did, and agree with them Please respond? and what, get moderated down? :) Heh eihrul: moderate me up! please? uh, how? just respond inteligently * eihrul/#tunes doesn't like public forums. 10:10pm wlel public forums are ok but ones dominated by fucking morons like slashdot suck. public forums have a necessity ult: Too many morons 'nite all! night! -:- SignOff ult: #TUNES (Leaving) eihrul: Where are these harsh comments? i guess its just standard slashdot fair I liked it I don't see any flames to anyone yet at all... well, n'm then Wait, wait... where are these harsh comments? All through the comments 10:20pm Harshness targeted toward our beloved fare? Or RMS? Robin? Yes lar1 All three? 10:30pm Ah, I see it 10:40pm -:- Wolfgang [wolfgang@m166.c0.mtl.ultim.net] has joined #tunes -:- SignOff Wolfgang: #TUNES (Leaving) -:- witten [witten@un.torsion.org] has joined #tunes fare is a monkeyhumper! -:- witten [witten@un.torsion.org] has left #tunes [] 11:20pm ho hum hoy hcf hi how's life? fine that's good -:- SignOff lar1: #TUNES (Ping timeout for lar1[sdn-ar-015casfrMP062.dialsprint.net]) -:- SignOff Downix: #TUNES (BitchX: need we say more?) -:- lar1 [larman@sdn-ar-005casfrMP093.dialsprint.net] has joined #tunes 11:40pm * eihrul/#tunes looks around for water. * lar1/#tunes doens't see water that's the whole point I know :) so what have you been up to with raven? I totally hosed my viedo code So I was rewriting it today no progress otherwise? Not much... it works outside of bochs, and on real boxen, so that is good Are you working with core on clementine now? nope core disappeared Hmm, hope I didn't scare him off ;) [msg(TUNES)] newlog 2000.0118 IRC log ended Tue Jan 18 00:00:02 2000