[01:54] Last message repeated 1 time(s). chillywilly (danielb@d35.as21.nwbl0.wi.voyager.net) left irc: reinhard (~rm@62.47.45.2) joined #gnuenterprise. morning reinhard hey ajmitch reinhard (rm@62.47.45.2) left irc: "There's always one more imbecile than you expect" ajmitch_ (~me@p30-max7.dun.ihug.co.nz) joined #gnuenterprise. ajmitch (me@p30-max5.dun.ihug.co.nz) left irc: Killed (NickServ (Ghost: ajmitch_!~me@p30-max7.dun.ihug.co.nz)) Nick change: ajmitch_ -> ajmitch chillywilly (~danielb@d139.as6.nwbl0.wi.voyager.net) joined #gnuenterprise. madlocke (madlocke@pD9523C90.dip.t-dialin.net) joined #gnuenterprise. madlocke re hi yurik... still awake or again? hello hey chilly madlocke have slept for few hours :) Action: Yurik -> smoke the funny thing about smoking is it'll kill you Action: Yurik is back chillywilly life will kill, too heh Action: chillywilly has heard that excuse a million times hehe :) but anyway, I;m not here to lecture anyone hey madlocke how goes the hacking :)? Action: chillywilly wonders where ra3vat has disappeared to haven't seen him in a while chillywilly if he is young, may be an examinations nah, he's an old man ;) Action: chillywilly feels like an old man Yurik: you have exams or something/ s#/#?# chillywilly nope ok what did you do to madlocke he's not talking anymore ;)? chillywilly dunno :) chillywilly probably he is sleepy? :)) Action: madlocke is coding ;) kewl :) what are you coding? hrm Action: Isomer reads the KC hi Isomer on layout managers. trying other widgets now Action: Yurik is writing specification... it will never end :] argh.. hope we don't have to follow the specifications ;) or polymethylcyclohexane to be more precise :P Action: Isomer thinks that mono is to .NET as wine is to win32, dotGNU is to .NET as KDE is to win32, and someone really should be working on gnome :) hmmm how is dotGNU like KDE is to win32? someone is working on Gnome in fact I think it is good for Gnome that ximian/miguel is distracted with Mono ;P dotGNU is basically taking .NET and implementing the same thing again with all the same problems etc cw: heh :) nope that's not the goal of DotGNU Action: Isomer still doesn't understand why they need a "IL" DotGNU wants to be downwardly compatible you certainly don't need a IL to implement a single signon protocol. but, they want to tie the rest of the GNU software together with their own web services framework, imho thta's just the portable.net stuff that's there's the SEE, DEE, and other components yeah Secure Execution Environment, Distributed Execution Environment defining a really nice web services framework I think is a really good idea Action: madlocke likes .net too SOAP, XMLRPC, CORBA's RPC (whatever it is) (IOL?) yep and Java, C# (M$ shit), will all be pluggable we do web services at work, and everyone appears to think that "CSV" is really 'neat' CSV? comma separated values ;P yeah heh I was joking no xml? Ebay is the only one that uses something resembling XML it's weird ah that's interesting yeah thats what I thought so a potential market for dotGNU Inc. (yes they are forming a copany) could be e-commerce having a nice standard way of exporting information would be great yep you really don't want to know how web payment gateways work sure I do me too ;) explain Action: chillywilly thinks it might be a bit scary basically you have "www.a.com" who's an ecommerce site. "www.b.com" is a credit card clearing company. btw, corba is an rpc for objects like soap but it uses IIOP instead of xml cw: yeah, I know. I was just trying to remember what the acronym for the protocol was (IIOP) Action: chillywilly wants to write a pluggable OO rpc thingy so you could use whatever you wanted when you go through checkout on "www.a.com" it bounces you to a url "www.b.com/foo/?id=12", www.b.com fetches a preprogrammed URL ("www.a.com/foo/?id=12") and gets the information from it. When the customer successfully pays it fetches ("www.a.com/success") or ("www.a.com/fail") and redirects the web browser to som page (www.a.com/continue) so if you can guess the success / fail urls you can spoof things some are even less secure than that wow, that is shitty so, knowing what you know do you stil buy things online? I don't buy anything online :) I don't have a credit card hm... was thinking there are lot of payment protocols like iKP for example... these are not used? madlocke: companies want to charge you a lot more for those Action: chillywilly doesn't use credit cards either, but I do use my VISA check card and ecommerce sites want to save every single cent. Action: chillywilly 's credit cards are all mzed out :P iKP is probably used by the credit card clearing webistes (www.b.com in the example) Isomer: I would recommend ou never get one s/ou/you ;) Action: chillywilly is not familiar with this iKP protocol cw: neither for the ecommerce code we do, I got them to clean it up a bit hey for example, having them store all passwords as one way hashes and doing verification (instead of storing the password and comparing) so it is only part because if i remember correctly iKP defines the whole transaction. can any of you python gurus whip me up a one liner to print put the IP address for a machine? and then we encrypt the users CC information with their password s/put/out chillywilly: a machine can have multiple IP addresses well lets assume that it doesn't and you can use ifconfig how can I use the python interpreter to execute a program form the command line? Action: chillywilly should stop being lazy and look it up __import__("posix").popen("ls").readlines() map(lambda x:x.split(":"),__import__("posix").popen("/sbin/ifconfig eth0 | grep 'inet addr'").readlines())[0][1] I think is the IP address and a very hidious python line warning: untested :) ok what siwtch can I give the interpreter to take that line and execute it? without stikcing it into a file python -c '.....' I think from memory ok do you need to quote it? 'cmd' it didn't like it you probably do yes danielb@obfuscation:~$ python -c 'map(lambda x:x.split(":"),__import__("posix").popen("/sbin/ifconfig eth0 | grep 'inet addr'").readlines())[0][1]' File "", line 1 map(lambda x:x.split(":"),__import__("posix").popen("/sbin/ifconfig eth0 | grep inet ah hrm er stick \'s around the ''s in the 'inet addr' 's ith the '^' pointing at inet ok like this: \'inet addr\'") ? yeah bah the shell is doing continuation now shrug might be better to do it in the interpreter what are you trying to do andwhy? that script's a very hidious hack it needs to be a one liner if you wanted to do it in shell, why involve python at all? yes, it uses lambda hrm I was refering to the use of "__import__()" :P because ppl on the LUG list are having this little goofy contest lambda is kinda nice and they have sheel utilities and perl one liners shell so I wated to throw python in there for shits and grin s lambda is hairy just like all that functional programming stuff :P imho >>> map(lambda x:x.split(":"),__import__("posix").popen("/sbin/ifconfig eth0 | grep 'inet addr'").readlines())[0][1] '192.168.1.2 Bcast' almost worked I think the shell does ssomething wacky to the 's around the inet addr bash-2.04$ python -c 'print map(lambda x:__import__("string").split(__import__("string").split(x,":")[1]," "),__import__("posix").popen("/sbin/ifconfig eth0|grep \"inet addr\"").readlines())[0][0]' 10.1.1.99 now thats python to be afraid of kewl never let it be said that it's impossible to write unreadble python code did the gnue debian packages make it in? I think so... what do I need to use debian oackages for ;) packages Action: Isomer assumes they aren't in testing yet tho? Action: chillywilly uses the source beats me I don't have any testing machines all unstable Action: Isomer grabs the cvs copy then Action: chillywilly has write access too,so if I don't like something I can just change it ;P always makes things easier :) hrm certificate is out of date on gnuenterprise.org what certificate? and it's selfsigned ;) https://www.gnuenterprise.org/dclgw/ does gnue have a bug/task tracking system? we use savannah ah ha (not the best thing I know) no link off the front page that I can find complain to the web masters ;) (i.e, jamest, jcater) Action: Isomer complains to the channel in general :) won't do you any good right now though hey pnet is apt-gettable now thanks to ajmitch Debian packages of Portable.NET released ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Andrew Mitchell has released Debian packages of DotGNU Portable.NET which are now available from http://www.dotgnu.org -- those who run Debian GNU/Linux can put this line into /etc/apt/sources.list to allow easy installation with apt-get. Packages for GNU/Hurd are also planned, but not available yet. cw: what does a better job than savannah? dunno, I think they want to interface with gnats but I have no idea how good gnats is does anyone use gnats anywhere? (any OS/FS project) tried it long time ago... don't remember... lot of people like bugzilla some ppl also find it to be weird ;) :) what's wrong with savannah so they want to change it Action: Isomer never really understood gnats I think a bug system shouldn't assume that all bugs are coming from users hrm you know developers find bugs in their code all the time and they should be abel to note it as such gnu enterprise could write a good bug/job tracking system :) :D and have forms distributed with it to browse/submit bugs :) t'would be a good example of a complicated tool for gnue :) Action: chillywilly wishes he had the money to go to LinuxWorld what debian packages are required for gnue? Action: chillywilly wonder where the gnue packages are wonders apt-get install gnue-designer gnue-common gnue-forms ;) apt-get install geas you'd have it all then apt-get instal geas-doc E: Couldn't find package gnue-designer hrm testing? yeah these are in sid wxpython appears to be for python1.5 well, I have to wait 10 days then :) apt-get update apt-get dist-upgrade ;P what do they depend on? in particular, what wxpython package? you only need to grab designer the other get pulled along others the geas one is old though as the cvs code is more funtional, imho Action: Isomer has installed most of the dependances for python1.5, 2.0, 2.2, and now 2.1 I'll get a full set of dependancies one day :P Action: chillywilly installs gnue debs for kicks Action: Isomer worries about the gnue coders and their fascination with sheep :) Action: chillywilly thinks that the desginer deb won't run either because of a borked wxgtk it's goats not sheep http://goats.gnue.org Action: chillywilly wonders if 0.0.6 is the laste geas release we did "Waddaya mean "Baa! B-Baa! ! Baa!"?... "Sheep ya dern fool!" wassat from? someone's sig? Yurik (~yrashk@gw.telcos.net.ua) left #gnuenterprise ("eas"). blech danielb@obfuscation:~$ gfdesigner libpng warning: Application was compiled with png.h from libpng-1.0.12 libpng warning: Application is running with png.c from libpng-1.2.1 libpng error: Incompatible libpng version in application and library ** ERROR **: No such image: tab_sel.png aborting... Aborted (core dumped) sme thing it's the message I get in the status bar when I load designer :) Action: chillywilly needs to see if they fixed the wxgtk package they grabbed the wrong dependency and compiled against the wrong libpng Action: Isomer worries about jamest Nick change: mdean-[moovee] -> mdean hehe, you're not the first one to do that ;) hey mdean guten morgen chillywilly ah yea you're a CST guy too Action: chillywilly got up an hour ago Action: chillywilly didn't have a very nice dream chillywilly: the borg were invading? anywya I must lsepe now before I fall over lsepe? yeah lsepe! no, I dreamt that my fiance died it wasn't cool Definately not cool :( Hope she's fine she is I'm off to sleep and not dream about people dying G'night :) night cu Action: chillywilly 's alarm clock was going off Yurik (~yrashk@gw.telcos.net.ua) joined #gnuenterprise. shouldn't forms depend on more than python-2.1 and gnue-common? re howdy the description is a bit off though forms works in 2-tier with almost any database not just postgres and mysql I don't like calling it a "forms painter" anderman (~anderman@rdu88-244-127.nc.rr.com) joined #gnuenterprise. anderman (~anderman@rdu88-244-127.nc.rr.com) left #gnuenterprise ("Client Exiting"). Yurik (yrashk@gw.telcos.net.ua) left irc: Read error: 104 (Connection reset by peer) madlocke (madlocke@pD9523C90.dip.t-dialin.net) left irc: "Client Exiting" jbailey (~jbailey@HSE-Toronto-ppp318200.sympatico.ca) joined #gnuenterprise. Yurik (~yrashk@gw.telcos.net.ua) joined #gnuenterprise. hi jbailey ;) Heya chillywilly! jbailey (jbailey@HSE-Toronto-ppp318200.sympatico.ca) left irc: "Client Exiting" chillywilly: apt-cache search gnue jamest (~jamest@fh-dialup-201026.flinthills.com) joined #gnuenterprise. dsmith: alreday found 'em dude hi jamest hi isn't it too early to be awake? no Action: chillywilly got up at 6am or so wxgtk is b0rked in sid this makes using forms and designer very difficult :( rebuilding the package didn't seem to work for me ah sid i.e., I couldn't get it to finish building yep http://www.gnuenterprise.org/~jamest/pre-release/ some nice guy in #debian filed a bug report on it = next release of common, designer, forms although, nickr said he had filed bugs prior kewl 0.1.1? yes excellent should be out today in release form cool i have to go to the store then test on win32 then we can release ok cya around Yurik (~yrashk@gw.telcos.net.ua) left #gnuenterprise. Action: chillywilly can test on win32 too I need to get my damn postgres running Action: chillywilly says that about every day, but still has not gotten off his ass no big .exe for winblows yet? I suppose that'll happen some time today chillywilly: I'm a little slow ... I noticed ;P Yurik (~yrashk@gw.telcos.net.ua) joined #gnuenterprise. re sup madlocke (madlocke@pD9E0A62F.dip.t-dialin.net) joined #gnuenterprise. hey jamest he's away at the stor afaik ah, thx. s/stor/store reinhard (~rm@62.47.45.2) joined #gnuenterprise. hi reinhard hello re all chillywilly_ (~danielb@d3.as15.nwbl0.wi.voyager.net) joined #gnuenterprise. chillywilly (danielb@d139.as6.nwbl0.wi.voyager.net) left irc: No route to host Nick change: chillywilly_ -> chillywilly fitzix (~fitzix@63.137.252.64.snet.net) joined #gnuenterprise. hello madlocke (madlocke@pD9E0A62F.dip.t-dialin.net) left irc: "Client Exiting" Yurik:a few things back the certificate is self signed and will remain that way unless you want to drop 150 US dollars to get it signed we already have bug/tracking its called DCL there are works porting it to the gnue architecture already http://goats.gnue.org/~dneighbo/gnue/service_requests.jpg for example is a ROUGH form for such a thing hi jamest btw: that screen shot is from 'production' usage :) at one of the largest local govt's in the united states ;) hi derek can you test tarballs today yeah what about .exe's I'm working on them now rpms? Action: derek cant test rpms but am wondering :) maybe i have other things i need to do today i wish we could coordinate w/ debian maintainer to get debs loaded (the new release) all gnue related :) you have his email? as i ahve a 'virgin' debian box that i need gnue installed on :) btw - I'm joinging all the db mailing lists i can find today and going to ask for testers ok derek: what backend you using in that pic? what other gnue stuff you got going on today? postgres joining the lists the basic release then I'm adding trigger enhancements in forms if time allows I'm redoing the event system as well so that it plays nicer w/ the mouse i'll also fold in the i18n stuff from the dude from india also want to get a good look into madlocke's layout mgr and see what it'll take to add that in as well Action: jamest has a busy day ahead oh yeah plan on doing an install guide too for maintainers wanted to be on it sooner but had to go to store, then had to clean some driveways of snow http://goats.gnue.org/~dneighbo/gnue/dcl_account.png bbias http://goats.gnue.org/~dneighbo/gnue/dcl_departments.png are other examples of gnue screens for dcl derek: "the eagle has landed." :) well i have babysitting duty so im screwed today sigh it will be a jacked weekend for work for me......... bbl Yurik (yrashk@gw.telcos.net.ua) left irc: "[BX] Silly faggot! mIRC is for kids!" jcater (~jason@24.92.70.201) joined #gnuenterprise. 'sup? did i miss anything? d00d! wassup? taxes mmmm - I forgot to pick up my w2 this week alexey (~alexey@195.151.214.34) joined #gnuenterprise. reinhard (rm@62.47.45.2) left irc: "All things being equal, fat people use more soap" chillywilly (danielb@d3.as15.nwbl0.wi.voyager.net) left irc: Read error: 113 (No route to host) alexey (alexey@195.151.214.34) left irc: Read error: 113 (No route to host) chillywilly (~danielb@d28.as15.nwbl0.wi.voyager.net) joined #gnuenterprise. fitzix (fitzix@63.137.252.64.snet.net) left irc: "Client Exiting" jcater (jason@24.92.70.201) left irc: "win32-mode here I come!" jcater (jason@24.92.69.185) joined #gnuenterprise. taxes suck Action: derek wont get my w2 stuff until like last day of jan :( darn bureaucracy derek: you using db2 with forms? yes but not the 'db2driver' on what platforms? im doing it via odbc windows for forms db on os/390 for back end i tried to use the db2 driver in common but it requires that some other library be loaded derek: os/390! Yow! i loaded the other library but it requires the CLI from ibm which i didnt have and i couldnt find for windows i found them for linux but have to install like 600 megs worth of stuff and my workstations at work are tiny (like 2 gig) that have linux running on them so it wasnt an option i was going to install here at home though full db2 server and start playing i installed SAP DB at work on linux lol but i cant 'figure' out how to add tables and such to it i gave up as i got busy I'm uploading win32 exes to the pre-release dir however it's taking a lifetime \msg derek he still has dialup very funny ha ha ha \msg jcater poor guy, dont they have IT welfare in KS? didn't you know the local bell company has wonderfull high speed access they've spent a small fourtune providing it to parts of town where people don't want it or can't afford it all part of their cunning plan to drive everyone to cable modems so that their evil ISP 'partners' go belly up then they can snap up the DSL market wonder if they ever stopped to think there will not be a DSL market once cable is std morrons rofl dude i think its just an anti jamest campaign personally I'm almost 100% serious but what do i know :) they are trying everything they can to fuck the ISPs jamest: it's a conpiracy against free software when you have something in your cvs tree called and in manhattan, ks he's the rep for free software camelproviders/ in the mean time cable is making huge inroads here it think the joke has gone too far :) who's cvs? evolution hmm note to self: dude configure.in says: camel_providerdir='$(libdir)/evolution/camel-providers/'$EVOLUTION_MAJOR_VERSION.$EVOLUTION_MINOR_VERSION which results in: camel_providerdir = $(libdir)/evolution/camel-providers/1.1 appearing in all Makefiles. But the mail/Makefile.in *also* defines I'm uploading the win32 bins but if they don't work someone else may what to rebuild as it's a 5-10 minute process to upload one of four files what = want GNUe-Designer-0.1.1-debug.exe uploaded "You are not authorized to view this page" ? http://www.gnuenterprise.org/~jamest/pre-release/ if I click on any of the ZIP filkes it'll download if I click on an .exe fle, I get that try now HTTP Error 403 - Forbidden much mo betta downloading now Action: jamest prepairs to be disgusted why? Action: jamest is waiting for the "got it" from jcater nah Action: jcater is getting HORRIBLE service recently Um, I've downloaded the file 10 times in the last 5 minutes and it keeps telling me it's not a valid exe file let me upload a new one, try again on the 21st dude... it's taking me 4 minutes to download ahhhhhhh that new firewall rule works if broadband detected rate_limit_to_14.4 dude! the exe is corrupt j/k ;) man wx looks so much better under win98 than gtk wish they'd work on that ahh designer is so purdy Action: jamest thinks about his evil plans for it eh? i've been trying to grok how to use the data source editor and thinking that a tree of the schema layout might be easier to deal with dude I've been uploading the next file since 1:43 I'm 82% done Action: jcater grabs his datasource editor and holds it close "I'll protect you from that tree-huggin hippy" actually, I never foresaw the data source editor being the main schema tool neilt (~neilt@dhcp64-134-54-175.chan.dca.wayport.net) joined #gnuenterprise. #gnuenterprise: mode change '+o neilt' by ChanServ!ChanServ@services. ajmitch (me@p30-max7.dun.ihug.co.nz) left irc: Read error: 113 (No route to host) ajmitch (~me@p8-max11.dun.ihug.co.nz) joined #gnuenterprise. sigh the non debug designer uploaded downloading ooo much faster this time rock works you'll have forms to test out in about 5 min i hope cool I can only test dataless forms from here :( 64% we're rocking! rofl its like watching the abbott and costello release party :) i now know we can't release more often we have to wait for my modem to catch up maybe I should burn them onto cd and mail them to jcater it might be faster i'm putting together a list of db driver authors and mailing lists and am contacting them about our drivers looking for people to help give us the info we need for introspection as well as testers is there anything else I should address? well, of course mention our features, in an "oh, by the way" style ;) btw 79% Action: jcater wonders if jamest has thought about bzipping the files, then scp, them bunzipping? i thought the exe's were already compacted Action: jamest runs off to try it are they? they may be mail woudl be to slow but if you burned them and then stood on street corner w/ sign 'memphis or bust' you might find someone to 'carry them for you same day' ;) :) if some one (ahem) will PLEASE get ssl postgres workign somewhere i will fix the contact manager (as it really does work so that we can put all contacts for gnue in it rock! bzip saves 40k that's like 15 minutes upload time! wow as just today someone asked for baux's email address (our deb maintainer) i have some of the data already 4758296 char exe 4711401 exe.bz lol that someone was me and i didn't get an answer /msg jcater i think he's picked up on our policy of ignoring requests for features or info :) rock! debug forms available derek: can you win32 test? whoop non-debug at 11% sigh dude what was that keyerror you were getting on win32 ? did you fix that? um crap no a key error in GFEntry error as I'm getting it with the intro.gfd yip that was the issue Action: jamest whimpers btw, I wonder if rsyncing against the already uploaded binaries would help w/your "speed" problem i can test jamest but not until after bills are done ah, nevermind does the keyerror cause a problem? jcater: i'd have to make the names match as the form still works no and it didn't happen on a sample form against a db ah actually, I think I recall this happening last time so I'm not too worried but we should probably trace it next time ok err, by next time, the problem will have probably gone away 31% Action: jcater wonders if he could make it to KK and back before jamest's upload finished Action: jamest starts accepting donations for the "Everyone needs a T1 fund" good ol local bell company has NO problems getting a T1 here at like $800+ a month hmm I think that'd be worth it don't you? yes however my better half would cause me pain :) house note or T1? [14:34] Last message repeated 3 time(s). hmm easy decision T1 after all, you practically live w/us anyway lol in a metaphysical sort of way :)' sigh kick your modem for me please it's causing me to stay in Win98 much longer than I'd prefer but I'm having tab-completion withdrawal we're at 50% hrm, wasn't somebody looking for web-based accounting a while back? rock! nickr: there's sql-ledger http://webaccountant.sourceforge.net/ arno also I don't remember who it was looking for it though Action: jamest feels the wind caused by the modem blowing past him or course it's not from the speed, it's from it sucking so hard lol rofl derek: you need to read the comic strip on that link it's so appropriate on what link HTTP Error 403 - Forbidden http://webaccountant.sourceforge.net/ oop ignore the HTTP error anyone know how to change the debian default editor other that EDITOR GNULedger? are they an official GNU project dneighbo_ (~dneighbo@cpe-24-221-112-50.az.sprintbbd.net) joined #gnuenterprise. sigh wasn't 1 enough 67%!!!!!! sigh? im starting to use my debian box soley and ditching the laptop so i can adequately kill the laptop jamest: with the alternatives mechanism Action: derek is DYING from that comic strip I'm glad to bring a little joy into your lives dudes I need this http://www.thinkgeek.com/stuff/gadgets/594f.shtml 80% heheh this is unnatural yea mwy friend dropped a linkx to that yesterday I'm connected dirrectly to their network yeah via a modem Action: jcater awaits a trout-slapping galore Action: derek wants a sharp zaurus BADLY I want an ipaq. Action: jamest reaches for the trout.......hesitates with hand hovering above it......moves hand over and picks up Whale Shark Action: derek assumes the kde loving j's want it too are you kidding I've finally got a 20" monitor in my house I'll be damned if I'm downgrading to a small screen like that hrm, anyone ever pour water down a monitor by accident/ nickr: yes no, not by accident does it recover after drying out? well, mine looked like it'd been thru a rain storm was it on at the time? i left it off for a day Yes and it worked fine off and unplugged 98% [14:51] Last message repeated 2 time(s). Action: jamest does a happy dance! 99%! Action: jamest gets behind and pushes rock um it's hanging at 100% well hopefully it'll work in a day or two done! its my cool NEC with the health advice. jamest: rock! it works all 4 well the one thing I worry about is mysql was hoping derek could test IIRC he has a mysql db setup well, I'm going back to debian mode unless you need me to test something else ? nope please do bbi<1m jcater (jason@24.92.69.185) left irc: "[=V97=] Leaving" jcater (~jason@24.92.70.201) joined #gnuenterprise. ah konsole, tab-completion, xchat, and multiple desktops i have mysql but not for much longer :) as soon this laptop will be wiped and debian will rule it :) and then bye bye mysql :) I found the best feature for sawfish it makes windows full screen its great. can I tag cvs? yes! [15:08] Last message repeated 3 time(s). um, er, sure, if you think we're ready forms tagged common tagged designer tagged Action: jamest does a happy dance we can now proceed to break stuff Action: jcater dances w/jamest ah first new change committed rofl 'think we're ready' come on i havent even touched it you must know its not 'quite ready' :) rdean (~rdean@chcgil2-ar2-054-180.chcgil2.dsl.gtei.net) joined #gnuenterprise. mdean (mdean@mkc-65-28-73-63.kc.rr.com) left irc: Read error: 104 (Connection reset by peer) mdean (~mdean@mkc-65-28-73-63.kc.rr.com) joined #gnuenterprise. would you mind mentioning the name of the debian package that is required when it says "You require ", since it gives a url anyway Isomer: in setup.py? we can do that yeah coz some of the package names aren't exactly obvious (although, thats probably more a debian bug :) Action: derek is away: bank,musicstore,postoffice madlocke (madlocke@pD9E0AD58.dip.t-dialin.net) joined #gnuenterprise. hi jamest: you are here? not really I'll be back in < 1/2 hour though have to go feed buddies animals while he's out of town anderman (~anderman@rdu88-244-127.nc.rr.com) joined #gnuenterprise. anderman (~anderman@rdu88-244-127.nc.rr.com) left #gnuenterprise ("Client Exiting"). Action: madlocke will wait back jamest (~jamest@fh-dialup-201026.flinthills.com) left #gnuenterprise. sup ppl seems that you have been having too much fun making a release wand we upgraded from trout to whale shark? jamest (~jamest@fh-dialup-201026.flinthills.com) joined #gnuenterprise. ajmitch_ (~me@p20-max2.dun.ihug.co.nz) joined #gnuenterprise. no one may have fun. Nick change: rdean -> rdean-[jawa] ajmitch (me@p8-max11.dun.ihug.co.nz) left irc: Killed (NickServ (Ghost: ajmitch_!~me@p20-max2.dun.ihug.co.nz)) Nick change: ajmitch_ -> ajmitch dsmith (dsmith@oh-strongsville5a-64.clvhoh.adelphia.net) left irc: "later.." dsmith (~dsmith@oh-strongsville5a-64.clvhoh.adelphia.net) joined #gnuenterprise. ajmitch_ (~me@p20-max7.dun.ihug.co.nz) joined #gnuenterprise. ajmitch (me@p20-max2.dun.ihug.co.nz) left irc: Killed (NickServ (Ghost: ajmitch_!~me@p20-max7.dun.ihug.co.nz)) Nick change: ajmitch_ -> ajmitch jcater (jason@24.92.70.201) left irc: "Client Exiting" Action: derek is back (gone 03:39:28) http://www.insanepictures.com/pic.shtml?0598.jpg Isomer (perry@210-86-58-26.jetstart.xtra.co.nz) left irc: Read error: 104 (Connection reset by peer) Isomer (dahoose@210-86-58-111.jetstart.xtra.co.nz) joined #gnuenterprise. madlocke (madlocke@pD9E0AD58.dip.t-dialin.net) left irc: Remote closed the connection neilt (neilt@dhcp64-134-54-175.chan.dca.wayport.net) left irc: Read error: 113 (No route to host) darn it, was runnikng windows again today and boy did it foul up my machine http://www.insanepictures.com/pic.shtml?0494.jpg Well, Linux *does* let your machine run cooler... chillywilly_ (~danielb@d180.as20.nwbl0.wi.voyager.net) joined #gnuenterprise. chillywilly (danielb@d28.as15.nwbl0.wi.voyager.net) left irc: Read error: 113 (No route to host) mdean (mdean@mkc-65-28-73-63.kc.rr.com) left irc: "Client Exiting" mdean (~mdean@mkc-65-28-73-63.kc.rr.com) joined #gnuenterprise. hmm does gnue do "list" style views? rdean-[jawa] (rdean@chcgil2-ar2-054-180.chcgil2.dsl.gtei.net) left irc: "Client Exiting" kooper (~kooper@202.155.84.183) joined #gnuenterprise. what this is all about mdean (mdean@mkc-65-28-73-63.kc.rr.com) got netsplit. ajmitch (me@p20-max7.dun.ihug.co.nz) got netsplit. dneighbo_ (dneighbo@cpe-24-221-112-50.az.sprintbbd.net) got netsplit. gnuebot (eggdrop@mail.libertydistribution.com) got netsplit. chillywilly_ (danielb@d180.as20.nwbl0.wi.voyager.net) got netsplit. dsmith (dsmith@oh-strongsville5a-64.clvhoh.adelphia.net) got netsplit. jamest (jamest@fh-dialup-201026.flinthills.com) got netsplit. nickr (nick@e-172-IP28.empnet.net) got netsplit. Isomer (dahoose@210-86-58-111.jetstart.xtra.co.nz) got netsplit. dres_ (dres@4.18.171.42) got netsplit. Mr_You (rouzer@mankind.boredom.org) got netsplit. derek (derek@cpe-24-221-112-50.az.sprintbbd.net) got netsplit. kooper (kooper@202.155.84.183) left irc: bigbrother (~bigbrothe@tech-200078.flinthills.com) left #gnuenterprise. bigbrother joined #gnuenterprise. #gnuenterprise: mode change '+n ' by adams.openprojects.net #gnuenterprise: mode change '+t ' by bigbrother!~bigbrothe@tech-200078.flinthills.com --- Sun Jan 20 2002