irclog2html for #utah on 20050907

00:28.21*** join/#utah spr (n=spr@c-24-10-237-76.hsd1.ut.comcast.net)
00:40.58*** join/#utah emcnabb (n=emcnabb@70-57-88-8.slkc.qwest.net)
00:42.10maquishttp://images.ucomics.com/comics/ft/2005/ft050903.gif
00:43.17maquishttp://images.ucomics.com/comics/ft/2005/ft050902.gif
00:47.44*** join/#utah levi (n=levi@levi.dsl.xmission.com)
00:55.28hanswow, kernel/postgres hacker with knowledge of internals. $45-$55
00:55.59maquisper month?
00:56.01maquis:)
00:56.29hansk
00:56.33hansper year.
00:56.38hanspitiful for what they're asking for
00:56.57maquis:)
00:57.00leviGeez.
00:57.11levihans: Who's asking for that?
00:57.59leviGood kernel people don't exactly grow on trees.
00:58.23*** join/#utah drewbono (n=andrew@c-24-2-95-76.hsd1.ut.comcast.net)
00:58.49hanspost came on the sllug job list
00:58.53hanspark city location
00:59.03hans(which isn't exactly a cheap place to live either)
00:59.08leviHah.  No kidding.
00:59.29hansto be fair, they said $45k-$55k+DOE
00:59.36leviDOE?
00:59.48hansnot sure if that means your experience raises you above the baseline, or if you _might_ get more if you're really qualified
01:00.03maquiswhat's doe?
01:00.09hansdepending on experience
01:00.29graphyxdoe a deer a female deer, come on you have seen the movie...
01:00.54levigraphyx: You need to turn on your case-sensitivity option. :)
01:01.50graphyxmaquis asked what's doe?
01:01.51graphyxnot DOE
01:02.18maquisare you surprised?
01:02.29graphyxlevi: Perhaps you need to turn yours on..
01:02.34graphyx;)
01:03.54levimaquis: Lazy bum!
01:09.16graphyxso what is everyone up to tonight?
01:09.25graphyxAnd when are we going to do that UT2K4 game ?
01:23.25graphyximplementing AES?
01:26.20maquisyup
01:26.58goozbachgraphyx: the encryptiion algorithm
01:27.04goozbach(for homework)
01:27.10maquisyeah
01:27.53graphyxnow that doesn't sound like a ton of fun.
01:28.05graphyxWhat class is that for?
01:28.05maquisit's actually really interesting...
01:28.08maquisa bit hard, though
01:28.12maquisgraphyx: security
01:28.16graphyx465?
01:28.34graphyxI read through the first half of applied cryptography.  
01:28.41leviWhat's hard about it?
01:28.56graphyxBut once it got to the details about implementation it really isn't that much of a page turner.
01:29.05graphyxwe had to do a key pair generator.
01:29.12graphyxI did mine in perl just to learn the language.
01:29.13goozbachI'm trying to rescue a downed phpwiki installation.
01:29.21goozbachand it's kicking me in the teeth
01:29.26graphyxnot the best language to do math in mind you.. but I got there.
01:29.32goozbachyeah...
01:29.40goozbachthat's a good way to learn perl :)
01:29.50leviI'm doing some of my design patterns homework in D.
01:29.50maquisC is pretty interesting
01:29.56graphyxI did all my 465 projects in perl except for 1 of them.
01:29.59graphyxI can't recall which.
01:30.04graphyxBut it did help me learn perl.
01:30.08graphyxwhich was my goal.
01:30.17leviYou know how I feel about C.
01:30.25maquislevi: yes...
01:30.30maquisbut it's important to know
01:30.35graphyxnow the password dictionary generation in perl was really easy.
01:30.42graphyxbut took a lot longer than the hashing.
01:30.43maquisi don't think that perl would be very good for implementing AES
01:30.48graphyxI agree.
01:31.05maquisbut i should try something in perl if i can find something that it'd be good for
01:31.12graphyxyeah
01:31.23levimaquis: You should try it in D.
01:31.49levimaquis: In fact, you could probably copy your C implementation and compile it under D with only a few modifications.
01:31.59*** join/#utah bigdog_ut (n=bigdog_u@shylonhunter.dsl.xmission.com)
01:36.51*** join/#utah usynic (n=synic@pdpc/supporter/student/synic)
01:37.51*** join/#utah markl_ (i=mark@dsl093-225-127.slc1.dsl.speakeasy.net)
01:39.33hansi've never looked at D, but you got me thinking -
01:40.23hansvery few (none that I know of) scripting languages support direct memory manipulation the way C does
01:40.51hansbut even when you're doing that sort of thing, you still can make use of a lot of benefits that C really lacks
01:41.43levihans: What do you mean?
01:41.46hanse.g. objects, returning whatever from a function (not playing the char* game and variations like maquis was learning yetserday)
01:42.03leviAhh, yeah.
01:42.38hansso is there a language (maybe D, maybe lisp, etc.) that gives you C-like control over things like pointers, bitmasks, etc. (maybe only for some types, but without the crazy hoops you have to jump through in some languages)
01:42.54hanswhile giving you all the strengths (or the major ones anyway) of a language like perl or ruby or python ...
01:43.22hans\]
01:43.43graphyxgood question.
01:43.48leviD does give you all the low-level access of C, but also provides a Java-like object system (but without some of the Java object system limitations).  It also has dynamic arrays and strong typing.
01:43.55graphyxSounds like you might need to write up "E" for us hans.
01:44.12hansbecause as much as I like ruby, I would rather program something like audio software or encryption algorithms, etc. in C than any other language (maybe a minimal subset of C++)
01:44.14graphyxsounds like a discertation to me.
01:44.25hanslevi: sounds like a good start
01:44.33hansdynamic arrays are high on the list
01:44.34leviIt also has anonymous functions that work as closures (at least as long as the stack variables in the environment are still around).
01:45.07hanshmm, what would you call that, formally? not really a closure is it?
01:45.09leviYou also get to access non-static variables in anonymous inner classes, again as long as the stack variables are around.
01:45.35levihans: It does close over the environment, but since members of the environment may be on the stack, the extent of the closure is limited.
01:45.38hanssounds like a good start anyhow, so how does it perform?
01:45.44leviVery well.
01:45.58hansmight be worth looking into for audio programming, which I anticipate doing in the next few years
01:45.59leviIt was written by a guy who writes compilers.
01:46.09hanscool
01:46.11goozbachthe other day I was lookin for a .ape to .mp3 converter...
01:46.16leviIt owns in the language shootout.
01:46.20goozbachit was programed in VB.net
01:46.34goozbachall that audio manipulation in VB...
01:47.06levihans: I'm using the D frontend to gcc on my mac, but the Digital Mars compiler is free to use on Windows and Linux.
01:48.13levihans: The main problem I'm having with it is that documentation is sparse.
01:48.50levihans: I found a good discussion/information site the other night that helped me a lot, though.
01:50.53hansgoozbach: don't give me nightmares
01:52.27leviAnyway, D is nice because it lets you get to the C level easily to do bit manipulation and such, but it also has a type system that's not totally worthless and decent abstraction facilities.
01:53.57*** join/#utah synic (n=synic@c-67-177-16-249.hsd1.ut.comcast.net)
02:01.00levihans: Common Lisp also has facilities for bit-level manipulation of binary data, but there's more of a learning curve there for C users.  Peter Seibel uses them to create a really cool abstraction for defining binary file structure in "Practical Common Lisp", and then builds an id3 reader and a shoutcast server with it.
02:32.46*** join/#utah corndog (n=corndog@208.187.28.250)
02:39.47leviSo, I have the new Depeche Mode song stuck in my head now.
02:43.07leviAnd I finished my little D program.  Much nicer than Java or C++, in lots of little ways.
02:44.54graphyxWhat did you do in D?
02:46.28leviA little toy program that used the Strategy design pattern.
02:46.36graphyxWhat is that?
02:46.52leviAre you familiar with design patterns in general?
02:47.19graphyxI did take the software dev class at BYU when I got my CS degree.
02:47.28graphyxbeen a couple years.
02:47.34graphyxand I don't do any serious development..
02:47.39graphyxbut I think I have a handle on it.
02:47.50levi'Design Patterns' is a specific thing, not general software design.
02:48.01graphyxI understand.
02:48.06graphyxlike the singleton.
02:48.10graphyxand the proxy,
02:48.10leviRight.
02:48.25leviOkay, I wasn't sure if you were asking about design patterns in general or just the Strategy pattern.
02:48.25*** join/#utah wps (n=wade@65.73.113.199)
02:48.31graphyxthe Strategy.
02:50.24leviStrategy is useful when you want to be able to change the algorithm which you use for a task at runtime.  You break off the task into its own class/interface, and you subclass that for the various algorithms.  Then the main class gets a reference to the algorithm class/interface.
02:51.26maquisit's hot
02:52.01levimaquis: Silly.  You'll get it eventually.  And then it will snow!
02:52.10maquisyay for snow!!!!
02:52.14leviBoo for snow.
02:52.17maquisexcept driving in it
02:52.35leviYeah, you won't like it so much when you're not a student anymore and you have to drive every day.
02:52.43maquisnot necessarily
02:52.59maquisin seattle, a lot of people just take the bus to work
02:53.01maquisit's a lot easier
02:53.30leviWell, if you have a bus available, that's great.  I don't have that option.
02:54.13leviPlus, I hate cold weather because it makes it hard to bike.
02:54.19maquis~hug radical left-wing crazies who got seattle a good bus system
02:54.20ibotACTION hugs radical left-wing crazies who got seattle a good bus system
02:54.48maquislevi: here's my opinion on weather
02:54.48graphyxOk so you have different routines that get called for various items depending on how they were instantiated?
02:54.56maquisif it's too cold, add layers
02:55.05maquisif it's too hot..  umm... there's not a whole lot you can do
02:55.47maquiswhat's gam_server?
02:55.47levimaquis: That works fine as long as there's not snowy/icy/salty crap all over the road.
02:55.55maquisand why is it taking up 97.5% of my cpu
02:56.01levimaquis: And the mountain trails become unridable.
02:56.06maquisumm...
02:56.10maquisthat's really not good
02:56.45levigraphyx: It's not just an instantiation thing, though you generally specify what strategy you want it to start with.  You can change the strategy at runtime with a method call.
02:56.52maquissomeone?
02:57.11levimaquis: I dunno, try looking to see what package it belongs to?
02:57.20maquislevi: how do i do that?
02:57.27graphyxok cool.
02:57.44graphyxSo there is a variable that controls which style to use.
02:58.07levimaquis: dpkg -S
02:58.19graphyxfor example a single item could contain all the data and a variable would say whether to do a depth first search, beadth first, or double ended search..
02:58.23graphyxI think I like it.
02:58.24levigraphyx: Right, a private variable that holds a reference to the strategy object.
02:58.31graphyxnot that I have a use for it right now..
02:58.32maquislevi: [osiris erins] dpkg -S gam_server
02:58.32maquisgamin: /usr/lib/gamin/gam_server
02:59.09levimaquis: Now apt-cache show gamin
03:00.19maquislevi: it's part of the "File Alteration Monitor"
03:00.35levimaquis: Well, now you know what it is.
03:01.30maquisyeah... trying to find out from sjansen if it's safe to remove it
03:03.49graphyxlevi: So the Strategy pattern seems like one that would be really simple to implement in C or perl.
03:03.54graphyxusing function pointers.
03:04.10graphyxIf you like using function pointers.
03:04.30levigraphyx: function pointers or higher-order functions, yes.
03:04.42goozbacho/~everybody's doing the fish... yeah yeah yeah!o/~
03:04.56graphyxgoozback: When you going to get that UT2K4 server going?
03:05.20goozbachgraphyx: I'll try this weekend
03:05.31levimaquis: If you remove it, fam stuff probably won't work anymore.  But it's not critical.
03:05.40graphyxcool
03:05.41maquislevi: things like vim seem to depend on it
03:05.47maquisso, i probably need to keep it
03:06.17leviHuh, I guess vim gets notified via fam if a file it's editing changes.  That's nifty.
03:07.18maquisyeah
03:07.30maquislooks like this bug is "hard to reproduce"
03:09.04graphyxNite all.
03:09.28levimaquis: I'd just restart it and hope it doesn't act up again.
03:21.22mheathWould anyone be willing to lease me some server time to run a very low traffic (<30 users) IRC server?
03:22.16mheathI'm a regular on a very small and close community. Used to be a bigger free webhosting group, but they've been suffering from frequent server problems lately that they can't deal with with such a small budget
03:22.52mheathOne thing taking a hit is their IRC service, which is small but very active. I'd like to lease some server space to run a leaf for the server..
03:31.18maquisummm
03:31.23maquisis it bad if md5sum doesn't return?
03:31.40*** join/#utah TimRiker (n=timr@pdpc/supporter/bronze/TimRiker)
03:31.40*** mode/#utah [+o TimRiker] by ChanServ
03:32.29*** join/#utah jlp1 (i=natted@c-24-2-96-137.hsd1.ut.comcast.net)
03:33.06maquisTimRiker: how long is it supposed to take for md5sum to return when i'm checking the sum of an iso?
03:33.14maquis(340 MB)
03:33.35maquisand it looks like the FAM server is getting annoyed at me...
03:34.39xbmodderabout 3 minutes
03:35.31maquisthat's a long time
03:35.39TimRikermaquis: depends on the size of the iso and the speed of your machine/drive
03:35.49maquis2Ghz processor
03:36.00maquis340 MB iso
03:36.36TimRikerI have boxes at work that'll do it in less than a minute. but then having boxes with 8G of ram is handy for things like that.
03:37.02maquis8G?
03:37.04maquisthat's crazy!
03:37.07TimRiker=)
03:37.20maquismy old laptop was 512
03:37.27maquisno
03:37.31maquismy old laptop was 256
03:37.34maquisthis one's currently 512
03:37.49maquisbut i'm going to buy him another 512...
03:43.29*** join/#utah hans (i=fugalh@falcon.fugal.net)
03:43.42hansman I hate it when profs give you frameworks to "help"
03:43.53maquishans: yeah... no kidding
03:43.59maquiswhat are you building?
03:45.22maquisanyone good with diagnosing cdrecord errors?
03:50.28maquisplease?
03:50.33maquispretty please?
03:51.57goozbachamarok just tried to kill me
03:52.12goozbachit froze and blasted out a single note at full volume
03:52.28goozbachI had my inside-the-ear headphones on.
03:52.38goozbachmethinks my eardrums are bleeding
03:56.15maquisgoozbach: ouch!
03:56.18leviHeh, whoops.
03:57.06maquisso much for that gam_server thing being hard to reproduce
03:57.12maquisi've reproduced it twice in 20 minutes
03:58.20mheathmaquis, it should return very quickly
03:58.27mheathless than 30 seconds
03:58.33maquismheath: ??
03:58.38maquisgam_server?
03:58.39mheath(your earlier md5sum question)
03:58.51maquismheath: oh... it ended up doing it in about a minute.5
03:59.14maquisi was just worried because i didn't know how long it would take
03:59.34mheathI need to go to sleep soon
04:00.04mheathI'm trying to get back into my 2115-0515 sleep routine
04:00.38*** join/#utah jlp1 (i=natted@c-24-2-96-137.hsd1.ut.comcast.net)
04:01.57maquismheath: that's not a bad routine
04:02.30maquiswith occasional changes
04:03.27mheathHeh, I'm out the door every morning by 0700.
04:04.46mheathThree changes that need to be made: End of daylight savings time, End of time zones, and the end of 12-hour clocks
04:07.46goozbachI FIGURED IT OUT!!!
04:07.57goozbachI've only been working on it for 12 straight hours
04:08.10levigoozbach: Woo!
04:09.47emcnabbgoozbach, what on?
04:10.28mheathmaquis, why only 5 hours of sleep?
04:10.32mheathugh, thats unhealthy
04:11.23mheathontop of that I've been reading the US Navy Quartermaster training manual. I plan to be able to pass the tests before I even go through their classes =P
04:11.29goozbachemcnabb: I've been tasked with migrating the data off the old phpwiki to the new metawiki
04:11.49goozbachonly problem is.. we don't have the old phpwiki running
04:11.56goozbachuntil about 60 seconds ago
04:12.12emcnabbfun
04:14.40*** mode/#utah [+o ibot] by ChanServ
04:16.19maquisgoozbach: congrats
04:16.28maquismheath: that's when i have time
04:18.44*** join/#utah jlp1 (i=natted@c-24-2-96-137.hsd1.ut.comcast.net)
04:37.38*** join/#utah ECS (n=ecs@128.187.236.220)
04:39.04levimaquis: You'd have more time to sleep if you spent less time fighting Linux. ;)
04:48.23*** join/#utah Newsome (n=sorenson@216-190-206-130.customer.csolutions.net)
04:53.16leviOooh, libssh.
04:53.42leviThis may be the answer to my embedded device security woes.
04:54.53*** join/#utah jlp1 (i=natted@c-24-2-96-137.hsd1.ut.comcast.net)
04:56.12leviHmm, maybe not.  Doesn't act as a server.
05:07.29maquislevi: yeah... but then i'd be fighting windows
05:07.32maquiswhich is much more painful
05:08.01leviI dunno, I manage to get along pretty well at work with Linux without fighting it very often.
05:08.08leviAnd I rarely fight OS X.
05:08.16leviIn fact, I rarely fight Windows when I use it.
05:08.36maquislevi: the times i've spent using windoze were usually disasters
05:08.49maquisat work, i got teased because i had problems with the win laptop
05:10.17leviWhat were you doing with it that gave you so much trouble?
05:10.42maquistroublesome things
05:10.51maquislike trying to configure lookout
05:16.44levilookout?
05:16.51maquisoutlook
05:17.02goozbachwhat? not comfortable with a gui MUA?
05:17.25maquisnot comfortable configuring with text boxes and drop-downs and such
05:17.32maquisnot sure where to find the options i want
05:17.45maquiscan't grep nested windows very well
05:23.19goozbachpoorly written PHP has turned my brain to mush
05:33.44*** join/#utah jlp1 (i=natted@c-24-2-96-137.hsd1.ut.comcast.net)
05:43.34Supaplexit's self obsificating isn't it?
05:49.49*** join/#utah jlp1 (i=natted@c-24-2-96-137.hsd1.ut.comcast.net)
05:49.58*** join/#utah scott_ (n=scott@atypedigital.ischool.washington.edu)
05:50.15scott_alright, I don't know a lot about middle man attacks, but my shell is behaving oddly
05:51.36scott_when I ssh to it I first get a blank line and then Password: and after I type my password in three times, each time getting Password: on a new line with a blank line between it and the last one a line scott@host.com's password: comes up, and after I type that in it shows me log in and then "Connect to host.come closed.
05:51.42scott_seems really bizarre
05:54.24*** join/#utah TimRiker (n=timr@pdpc/supporter/bronze/TimRiker)
05:54.24*** mode/#utah [+o TimRiker] by ChanServ
05:56.54*** join/#utah TimRiker (n=timr@pdpc/supporter/bronze/TimRiker)
05:56.54*** mode/#utah [+o TimRiker] by ChanServ
06:02.41maquisscott_: are you doing the password correctly?
06:03.33maquis(yes, i know it's a kinda stupid question...  but if you know that the password was typed in correctly, and it's turning you away, i'd be somewhat concerned
06:05.34scott_I'm not completely sure, but it does log me in and then out
06:05.39scott_so I assume that means yes
06:06.15*** join/#utah findlay (n=justin@208.187.196.229)
06:06.38findlayhello, just dropped by to see how the flames were going
06:07.27maquis~flame findlay
06:07.28ibotfindlay sux0rz d00d!!!!!!!!!!!!!!@@!!!!!!!11
06:07.40findlay~lart maquis
06:07.52maquis~timeout findlay
06:07.53ibotACTION grabs findlay by the ear, drags him to the timeout chair, and forces him to sit there for 20 minutes
06:26.50*** join/#utah bonez41 (n=bonez@drjones.dsl.xmission.com)
07:43.11*** join/#utah RyanE_ (n=ryan@rberick.dsl.xmission.com)
07:58.57bonez41anyone left?
09:18.57*** join/#utah emcnabb_ (n=emcnabb@70-57-88-8.slkc.qwest.net)
09:53.56*** join/#utah goozbach (n=goozbach@207.108.175.219) [NETSPLIT VICTIM]
09:53.57*** join/#utah bytheway (n=bbythewa@gibraltar.deseretbook.net) [NETSPLIT VICTIM]
09:53.57*** join/#utah Supaplex (n=supaplex@shell.aros.net)
09:53.57*** join/#utah shadoi (n=shadoi@129.219.152.116) [NETSPLIT VICTIM]
13:06.09graphyxmorning.
13:20.07*** join/#utah levi (n=levi@208.177.141.226.ptr.us.xo.net)
13:20.33leviGood morning.
13:42.31*** join/#utah synic (n=synic@c-67-177-16-249.hsd1.ut.comcast.net)
13:55.10*** join/#utah sjansen (n=sjansen@208.40.192.6)
14:00.30sjansenwith at least three ethernet ports, preferably switched but I'll accept a hub
14:01.36levisjansen: CompUSA is that way.
14:03.26maquislevi: is what way?
14:03.56levimaquis: I don't know, but it's certainly in some direction from sjansen.
14:04.19levimaquis: He just has to imagine me pointing in the correct direction, and all is well.
14:04.22maquislevi: oh
14:04.23maquis:)
14:07.10levimaquis: You need to sleep more.
14:08.47sjansenWho needs sleep? No, she's never going to get it? Who needs sleep? Tell me, what's that for?
14:17.17maquis~lart sjansen
14:19.39dataw0lfwhat is this 'sleep' ?
14:21.36maquisdataw0lf: it's what my roommates are doing when they're not watching tv
14:21.44dataw0lf:)
14:22.27dataw0lfmmmm new artwork on my arm is sweet.
14:26.22*** join/#utah Bradipo (i=bradipo@xmission.xmission.com) [NETSPLIT VICTIM]
14:26.22*** join/#utah mrpull (i=xmjake@xmission.xmission.com) [NETSPLIT VICTIM]
14:26.25*** join/#utah ChanServ (ChanServ@services.)
14:26.25*** mode/#utah [+o ChanServ] by irc.freenode.net
14:26.28*** join/#utah emcnabb_ (n=emcnabb@70-57-88-8.slkc.qwest.net) [NETSPLIT VICTIM]
14:26.29*** join/#utah el_gaucho (n=bigdog_u@shylonhunter.dsl.xmission.com) [NETSPLIT VICTIM]
14:26.32*** join/#utah sjansen (n=sjansen@208.40.192.6) [NETSPLIT VICTIM]
14:26.33*** join/#utah levi (n=levi@208.177.141.226.ptr.us.xo.net) [NETSPLIT VICTIM]
14:26.33*** join/#utah tewk (i=tewk@192.41.88.101) [NETSPLIT VICTIM]
14:26.33*** join/#utah harleypig (n=Clint@65.73.113.162) [NETSPLIT VICTIM]
14:26.33*** join/#utah dataw0lf (n=dataw0lf@66.219.227.114) [NETSPLIT VICTIM]
14:26.33*** join/#utah maquis (n=Maquis@monsters.cs.byu.edu) [NETSPLIT VICTIM]
14:27.28maquisdoh
14:27.28maquistoo late
14:27.33*** join/#utah goozbach (n=goozbach@207.108.175.219) [NETSPLIT VICTIM]
14:27.33*** join/#utah bytheway (n=bbythewa@gibraltar.deseretbook.net) [NETSPLIT VICTIM]
14:27.34*** join/#utah Supaplex (n=supaplex@shell.aros.net) [NETSPLIT VICTIM]
14:27.34*** join/#utah shadoi (n=shadoi@129.219.152.116) [NETSPLIT VICTIM]
14:27.58*** join/#utah RyanE (n=ryan@rberick.dsl.xmission.com) [NETSPLIT VICTIM]
14:27.58*** join/#utah neybar_work (n=jalance@pollux.northsky.com) [NETSPLIT VICTIM]
14:27.58*** join/#utah vex (i=nwood@stutter.prohosting.com) [NETSPLIT VICTIM]
14:28.08*** join/#utah torham (n=torham@209.210.188.79) [NETSPLIT VICTIM]
14:28.10*** join/#utah xbmodder (i=nobody@unaffiliated/xbmodder) [NETSPLIT VICTIM]
14:28.10*** join/#utah mrpull- (n=mrpull|@205.158.184.112)
14:28.12*** join/#utah WoodsDog (n=woodsdog@pip.drs1.omniture.com) [NETSPLIT VICTIM]
14:28.12*** join/#utah graphyx (n=mike@67.50.46.118) [NETSPLIT VICTIM]
14:28.12*** join/#utah bonez39 (n=aint@c-67-166-77-14.hsd1.ut.comcast.net) [NETSPLIT VICTIM]
14:37.56*** join/#utah ibot (i=ibot@pdpc/supporter/active/TimRiker/bot/apt)
14:37.56*** topic/#utah is The source for OSS focused discussion in Utah. See sllug.org, uphpu.org, plug.org, uug.byu.edu, uvlug.org, fslc.usu.edu, nupm.org, utwaa.org, oalug.com. See planetutah.adelantellc.com for aggregate feed | BYU Installfest --- September 10. See uug.byu.edu for more information | Get Jeff Waugh to come to utah. Send an email with name to TuxGirl@gmail.com or Stuporglue@gmail.com to sign the petition!
14:37.56*** mode/#utah [+o ibot] by ChanServ
14:37.57dataw0lflevi: various BBC podcasts
14:38.16dataw0lfand of course NPR
14:38.16goozbachtwit
14:38.18dataw0lfhttp://www.npr.org/rss/podcast/podcast_directory.php
14:38.31dataw0lfgoozbach: twit?
14:38.42goozbachand the phil hendrie show
14:38.46leviOoh, All Songs Considered.
14:38.55goozbachwww.twit.tv
14:39.08dataw0lfgoozbach: hmm.
14:41.31dataw0lfman.
14:41.33RyanEdoes Phil have a podcast?  Do you need to be a subscriber?
14:41.40*** join/#utah Jayce^ (n=Jayce_@pollux.northsky.com)
14:41.40*** mode/#utah [+o Jayce^] by ChanServ
14:41.58dataw0lfI've had about 20 tattoos done and this one is the most painful for some reason.
14:42.03dataw0lfRyanE: Yeah, you need to pay.
14:42.19*** join/#utah wps (n=wade@66.237.80.85)
14:43.48*** join/#utah synic (n=synic@pdpc/supporter/student/synic)
14:52.31*** join/#utah tiwula (n=lane@208-186-97-26.customer.csolutions.net)
14:52.54*** join/#utah fungus (n=fungus@2001:470:1f00:645:20a:95ff:fec5:636a)
15:00.26*** join/#utah emcnabb (n=emcnabb@hq-nat2.gurulabs.com)
15:03.38tensaiScience Friday has a podcast that isn't listed on that page. that's a really good one.
15:05.10*** join/#utah _torham (n=torham@209.210.188.79)
15:07.49hanslevi: the one I posted yesterday staccatomusic.org or something
15:10.13sjansentensai, url?
15:11.47*** join/#utah bonez42 (n=aint@drjones.dsl.xmission.com)
15:13.03*** join/#utah Newsome (n=sorenson@216-190-206-130.customer.csolutions.net)
15:13.46bonez42My apache installation appears to be hosed..I can't boot my system now, as it hangs at Starting web server: apache..... Suggestions?
15:16.18graphyxboot up a livecd.
15:16.22graphyxchroot into the system.
15:16.30graphyxremove the apache from the boot up.
15:16.37graphyxreboot system back into standard mode.
15:16.51graphyxAnd figure out why the system is crashing when apache tries to start up.
15:16.54bonez42graphyx, I have an older woody disc.......if I boot with that....what option do I pick to get in and fix this?
15:17.04graphyxI am not good with debian.
15:17.18bonez42ok...
15:17.21graphyxBut I often use knoppix to chroot into a gentoo system and haven't had any poblems with that .
15:21.40sjansengraphyx, that's a bit extreme
15:22.06sjansenbonez42, I'll assume you use grub as your boot loader
15:22.08dataw0lfa bit?
15:22.29bonez42sjansen, yeah, I like grub
15:22.30sjansenat boot, interrupt grub by pressing any key
15:22.59bonez42ok......when the grub screen listing various kernels is up...any key? except Enter?
15:23.02sjansenpick the kernel you want to boot, but instead of pressing enter, press "a" to append to the boot options
15:23.09bonez42ok
15:23.14graphyxsjansen: well I use knoppix for system imaging so chrooting into it once imaged it really easy.
15:23.21graphyxBut please enlighten me on a better process.
15:23.36sjansenat the end of the line, append the number 1 and press enter
15:23.51sjansenthis will boot you into run level 1
15:24.00bonez42just space and 1...and enter...
15:24.02bonez42ok....
15:24.09sjansenwhile in run level one, disable apache using your preferred method
15:24.17bonez42from there I can enter as single user..ok
15:24.20graphyxyeah that does seem a bit easier.
15:24.36bonez42is apache started in /etc/init.d or somewhere ?not sure how to disable it...
15:24.40sjansenyou can then "reboot" or "init 3" or switch to whatever run level you want
15:25.59sjansenbonez42, no, but I'm going to leave it to a Debian user to describe the "best" way to disable apache
15:26.20dataw0lfupdate-rc.d? :)
15:26.38sjansen~lart update-rc.d
15:26.42dataw0lf;)
15:27.02bonez42dataw0lf, so, what is the best way to disable apache on my system?
15:27.30dataw0lfsjansen: as much as I hate to say it, so do I.
15:28.18dataw0lfbonez42: *shrug*
15:28.21dataw0lfupdate-rc.d
15:28.22dataw0lf:)
15:28.53bonez42dataw0lf, so, update-rc.d apache remove?
15:29.45dataw0lfupdate-rc.d apache stop <run levels>
15:29.54*** join/#utah drewbono (n=andrew@c-24-2-95-76.hsd1.ut.comcast.net)
15:30.57*** join/#utah Uncle_Jesse (n=Uncle_Je@pcp0011582537pcs.csouth01.va.comcast.net)
15:32.13bonez42dataw0lf, I invoke update-rc.d apache stop 6 and it tells me I need NN after 'stop' ....
15:32.21*** part/#utah Newsome (n=sorenson@216-190-206-130.customer.csolutions.net)
15:32.30Uncle_Jessehola
15:32.43bonez42buenas Uncle Jesse
15:32.46Uncle_Jesseanyone know of any public-domain satellite image providers?
15:33.05Uncle_JesseI'm trying to write a hurricane tracker with open-source technology
15:33.34Uncle_Jesseaka not relying on google for its data
15:35.38tensaisjansen: http://www.sciencefriday.com/audio/scifriaudio.xml
15:47.16dataw0lfbonez42: oh well.  s/S/K then.
15:47.33bonez42s/S/K?
15:47.53bonez42I am dense..I know.....I hate to ever bug anyone here..but I am determined...
15:48.31dataw0lfmv /etc/rc.<runlevel>/SNNservice /etc/rc.<runlevel>/KNNservice
15:53.02*** join/#utah TimRiker (n=timr@pdpc/supporter/bronze/TimRiker)
15:53.02*** mode/#utah [+o TimRiker] by ChanServ
15:54.12Uncle_Jesseit seems like every one I've used is always buggy
16:02.27*** join/#utah roscivs-w (n=ross@agilestudios.com)
16:04.05*** join/#utah drewbono (n=andrew@c-24-2-95-76.hsd1.ut.comcast.net)
16:06.36roscivs-wk ... so I have this idea ... turn caps lock into a modifier key (perhaps by switching with the windows key?) and remap caps+h into left-arrow, caps+j into down-arrow, etc. ...
16:07.06roscivs-wIs this possible with xmodmap? Well, I'm about to find out.
16:09.30maquisroscivs-w: that's an interesting idea
16:09.59roscivs-wi'm trying to figure out how to map a multiple-key sequence (like ctrl-h or windows-h)
16:10.22roscivs-whm. no xev installed.
16:10.42levimaquis: Tsk.  Caps should be Control!  You have a perfectly good esc with ^[
16:11.18roscivs-wheh, i remember an interesting thread on the uug several years when I realized why ^[ didn't work for me
16:11.19leviHmm.  I now have 12 hours of podcasts on my Shuffle.  I don't know when I'll have a chance to listen to all that.
16:11.21maquismeh
16:11.38leviAnd I need to clean my work keyboard. :/
16:11.58maquislevi: go soak it in a bathtub :-D
16:12.16roscivs-wanyway, I find that moving my hand to the arrow keys is the primary cause of wrist stress at the keyboard as of late
16:12.36roscivs-wso hopefully this will fix/mitigate that problem.
16:13.30leviroscivs-w: So, why didn't ^[ work for you?
16:13.48roscivs-whey, is there a command-line way to switch virtual terminals, e.g. to switch from ctrl-alt-f7 to f8?
16:13.51maquisroscivs-w: yeah... my laptop has them pretty close, but i still try to stay in vim or whatever...
16:13.55maquisroscivs-w: chvt
16:14.00maquischvt 8
16:14.08maquisyou have to be root, though
16:14.12roscivs-wlevi: Turns out I hit [ with my right ring finger, not my pinky
16:14.32roscivs-wbecause 99% of the time when I hit that key, the next key coming up is enter
16:14.43roscivs-w(think left curly brace)
16:14.53leviHeh.
16:14.57roscivs-wweird, eh?
16:15.03maquisroscivs-w: you're not the only one with weird typing
16:15.16roscivs-wI never realized it until a thread a few years ago on the uug about remapping ctrl and so forth
16:15.37leviThankfully I don't have to hit esc very much anymore.
16:15.43roscivs-wi also discovered that when I hit esc, my right hand moves over to cover the rest of the keyboard
16:16.02maquisi'm now shifting over to hitting y with my left hand at least when i'm doing capital because otherwise it rather hurts
16:16.05roscivs-wquite fascinating to see it happen. entirely subconscious.
16:16.18maquisyou wouldn't have that problem if caps was esc
16:16.23roscivs-wyeah, those split-keyboards made me realize that my "y" usage is nearly 50/50
16:16.30maquis:)
16:16.33roscivs-wmaquis: it's not a problem, it's a habit, heh
16:16.38maquis:)
16:16.47leviI have pretty much standard touch typing.
16:16.51roscivs-wit turns out to work perfectly, which is why it was hard for me to switch to the ctrl-caps switch
16:16.51leviYou're all freaks.
16:16.54roscivs-wlol
16:17.18maquismy problem is, when i'm in not in X, i have problems when trying to use vim
16:17.18roscivs-wit has some benefits though
16:17.23roscivs-wi can type really fast one-handed, for instance
16:17.42roscivs-wsince my right hand is used to "covering" for my left hand reaching for the esc
16:18.10roscivs-wmaquis: yeah, I use vi on so many different computers it'd be annoying to have to switch back and forth, too
16:18.25maquisyeah
16:18.42leviThe remapped caps key gets me in trouble on other computers, too.
16:18.44roscivs-wi've tried it before but for some reason I can never get it to stick
16:18.55leviI try to avoid other people's computers, though.
16:19.09roscivs-wnow, what annoys me is to switch esc to caps lock
16:19.12roscivs-wwho needs caps lock?
16:19.26maquisroscivs-w: i've been trying to *not* do that, but it causes problems
16:19.26roscivs-wjust map them both to esc (or to ctrl, depending on your preference).
16:19.34maquisi've been trying to make them boh esc
16:19.40maquisbut for some reason, it breaks things
16:19.45roscivs-wthat's the "right" way to do it in my opinion
16:20.17roscivs-wxorg-x11-tools ... who woulda thunk it.
16:20.44leviMy laptop puts ctrl in a weird spot, so it was easier to get used to using caps for it than learning the new ctrl spot.
16:20.55roscivs-wew, does it have that FN weirdness?
16:20.58roscivs-wI hate that key.
16:21.01roscivs-w*shudder*
16:21.09roscivs-wwhy didn't they put *that* key in the caps-lock place?
16:22.07leviProbably to make it easy for people who use fn to get number pad behavior for the right hand.
16:28.35hanslevi: my only gripe with the apple laptop keyboard is that there's no fn over by the arrow keys
16:28.44hansso pgup/pgdn is a two-handed operation
16:28.47*** join/#utah tiwula (n=lane@70.98.251.29)
16:29.02levihans: Yeah, that's annoying.
16:29.06hansi know, remap enter to fn, but that remaps both enters to fn and makes numlock worthless
16:30.01leviYou use numlock?
16:30.18hansnot often, but one important time I do is when playing flightgear
16:30.24hansenter is the right-rudder
16:30.45*** join/#utah Newsome (n=sorenson@obelix.cs.byu.edu)
16:31.13leviYou and your flight simulating.
16:32.21roscivs-whm. So, anyone know how to map a two-key sequence to something else with xmodmap?
16:32.53roscivs-wxev tells me the two keys' (the modifier and the letter key) keycodes separately
16:34.50*** join/#utah bonez41 (n=bonez@drjones.dsl.xmission.com)
16:36.20hansactually come to think of it I haven't done flightgear on this laptop for some time. not enough ra
16:36.23hansm
16:36.28hansbut now I can't find how to map enter to fn
16:37.45leviI don't know if you can in Tiger.
16:38.21leviNote that enter is handy if you want to select the default action in a dialog box.  Return won't do that.
16:39.36sjansenYou think the fn and caps keys are annoying? Try typing on a french canadian keyboard.
16:39.59leviI'd rather not, thanks.
16:40.06sjansenFor starters, bar _should not_ be next to the space bar.
16:40.49sjansenWorse yet was the keyboard I used a couple weeks ago, not only was bar not there, enter was made bigger so that it was in the place pipe should have been.
16:41.57leviWhy, pray tell, were you using a French Canadian keyboard?
16:42.02roscivs-wwell, I've successfully turned caps lock into a modifier key,
16:42.17roscivs-wand using my window manager I can launch programs and all sorts of other stuff now with caps+someotherkey,
16:42.31roscivs-wbut I still can't figure out how to get caps+someotherkey to map to an arrow key.
16:43.27leviWhere do you use arrow keys?
16:43.45roscivs-win any text widget that isn't vim
16:44.02leviYou should be able to map them to emacs keys, at least.
16:44.26roscivs-wdoesn't help me much unfortunately
16:44.33roscivs-wi already use emacs keys wherever available
16:44.54roscivs-wthis is for widgets like the one I'm typing in now, or for the URL bar in my web browser, etc.
16:45.38leviIf you use gtk/gnome stuff, you can change a setting that makes it use emacs keys in text boxes.
16:45.57roscivs-whow about qt?
16:46.07roscivs-wif I could change both of those I'd be set.
16:46.08leviKDE probably has a similar setting, but I haven't used it for a while.
16:46.14roscivs-whow do you do it in gtk?
16:47.30levigtk_key_theme pref in /desktop/gnome/interface inside the Configuration Editor
16:48.01roscivs-wdo any window managers allow you to map key sequences to other keys?
16:48.11roscivs-whow do I get into the Configuration Editor?
16:48.14leviThere may be a way to add it to a gtkrc file or something, but I haven't needed to look into it.
16:48.17roscivs-wI don't see it in the control panel
16:48.26leviroscivs-w: Are you running Gnome?
16:48.30roscivs-wno, enlightenment
16:50.19sjansenlevi: I was in canada, silly.
16:51.02leviroscivs-w: Add gtk-key-theme-name = "Emacs" to your ~/gtkrc-2.0 file
16:51.37roscivs-wheh, I just googled the same thing :)
16:51.48roscivs-walso it's gconf-editor, just for future reference
16:51.54roscivs-w(for the Configuration Editor)
16:56.00roscivs-wOoh! That worked beautifully. Joyous emacs key bindings!
16:56.09BradipoAnyone here know how to use netcat to send a UDP DNS query? :-)
16:56.24leviroscivs-w: That's one of the first things I do to a gnome install. :)
16:56.41roscivs-wHmmmm... how do you select all now though?
16:57.10leviWhat do you want to select all for?
16:57.22*** join/#utah mindjuju (n=mindjuju@216.20.238.225)
16:57.24roscivs-w*shrug* I dunno. Just wondering.
16:57.36*** part/#utah mindjuju (n=mindjuju@216.20.238.225)
16:58.10roscivs-wI guess to select all and delete you could just ctrl-a ctrl-k, huh?
16:58.24leviOr ^u if you're at the end.
16:58.26roscivs-wwhat about to select all and copy? any nifty way to do that?
16:58.56leviDunno about that one.
16:59.15roscivs-woh well. the gain is greater than the loss.
16:59.31leviCocoa text boxes do the right thing when you ^k, but apparently gtk2 ones don't.
16:59.53roscivs-wwhat do they do? (or not do, as the case may be)
17:00.05levi(right thing meaning ^k kills and lets you yank back with ^y)
17:00.24roscivs-wwhoa, nope, that didn't work at all.
17:00.37roscivs-wlets me paste other stuff though ... hmm....
17:01.10roscivs-wlooks like it pastes the clipboard, not the selection buffer, unfortunately.
17:01.40leviInterestingly, the Cocoa kill/yank buffer is not the same as the cut/paste buffer.
17:03.29roscivs-whmm. that's quite fascinating.
17:04.01tensaiError Type: Provider (0x8000FFFF) Catastrophic failure
17:04.18leviWoo, Catastrophic Failures!
17:04.30tensaileave it to Microsoft to give useful error messages
17:04.41tensaiI hope the server isn't melting down now
17:23.37*** join/#utah ibot (i=ibot@pdpc/supporter/active/TimRiker/bot/apt)
17:23.37*** topic/#utah is The source for OSS focused discussion in Utah. See sllug.org, uphpu.org, plug.org, uug.byu.edu, uvlug.org, fslc.usu.edu, nupm.org, utwaa.org, oalug.com. See planetutah.adelantellc.com for aggregate feed | BYU Installfest --- September 10. See uug.byu.edu for more information | Get Jeff Waugh to come to utah. Send an email with name to TuxGirl@gmail.com or Stuporglue@gmail.com to sign the petition!
17:23.37*** mode/#utah [+o ibot] by ChanServ
17:40.26*** join/#utah Tene (n=tene@poipu/supporter/slacker/tene)
17:50.57leviWhat's special about benford?
17:51.53goozbachI want to talk someone at Xmission to donating bandwidth for a freenode leaf
17:52.05goozbachI'd donate hardware
17:52.24sjansenevery time I get assigned to benford, xchat just hangs
17:53.28sjansenIn some of my past classes, I've managed to talk for two hours straight without talking.
17:54.11sjansen<PROTECTED>
17:54.21sjansens/without talking/without stopping talking/
17:54.47goozbachsjansen: yeah the RH033 needs some ramble time
18:00.27sjansen<PROTECTED>
18:02.32goozbachheh
18:02.42sjansenhttp://osnews.com/ <-- /me laughs at yet another php + mysql error message
18:02.45goozbachI usually combine both vim labs
18:05.24sjansenoof
18:05.37sjansenthat's alot of vim
18:08.45hansi ran through the emacs tutorial yesterday
18:08.48hansor was it the day before
18:09.13hansthe intent being that I will probably do some nyquist, which is a lisp variant
18:09.44hansbut I was dissapointed that I can't seem to find a way to evaluate nyquist in emacs itself, which kind of kills its usefulness (I can write lisp well enough in vim)
18:11.19hansi have to say, c-v and m-v for paging makes about as much sense as an illiteracy billboard
18:11.53hansi had to chuckle about the frequent pot shots at c-s being eaten by terminals. were not the terminals there first?
18:13.26sjansenwell... emacs is pretty old
18:18.53hansyes, but isn't the terminal older? I suppose emacs could be older than the c-s usage, but I thought that was a pretty ancient one
18:30.28graphyxWhat are all these labs about?
18:33.48tensaiI assume the vim lab is about vim
18:40.03*** join/#utah phinux (n=phinux@iocane.cs.byu.edu)
18:43.00goozbachsjansen is teaching a class, and intro to linux class, and there are two different chapters on vim
18:43.12goozbachwith their included classroom labs
18:45.49levihans: Well, v looks kind of like a downward arrow.
18:49.20levihans: Plus, with a lisp syntax, you could use paredit.el
18:50.03*** join/#utah wps (n=wade@66.237.80.85)
18:51.08leviWhoa, Nyquist is based on XLISP.
19:00.24*** join/#utah vontrapp (i=fuglv@falcon.fugal.net)
19:00.37vontrapp~fry hans
19:00.38ibotACTION grabs hans and fries him on his BFCooker9000
19:03.56*** join/#utah wps (n=wade@66.237.80.85)
19:05.39levihans: You may be able to get ilisp to work with Nyquist.
19:17.24vontrapphow come just about every blog rss feed doesn't preserver the newlines in a <pre> tag?
19:17.34vontrapps/preserver/preserve/
19:18.14vontrappso, the pre tag is there, but the newlines are not, so the no-newlines are preserved and it all just runs on and on in a long line
19:28.27*** join/#utah markl__ (i=mark@dsl093-225-127.slc1.dsl.speakeasy.net)
19:29.31mrpull-vontrapp... it is a conspiracy to get you to stop using RSS and go to their site and see their advertisements
19:37.47*** join/#utah bonez41 (n=bonez@drjones.dsl.xmission.com)
19:48.24*** join/#utah lukfugl (n=lukfugl@host-19.pl107798-3.fiber.net)
19:49.45vontrappman, phantom sure is having a hard time
19:50.08vontrappthat is, if the uug website is still on phantom
20:04.48hansvontrapp: it's a bug in the reader, from what I can tell
20:04.52hansyou use sage right?
20:05.04hanswhen I switched to safari, <pre> blocks worked great
20:05.14hansprobably a CSS thing
20:06.00hanslevi: i wouldn't know where to start for that sort of thing, but if you happen to figure it out let me know
20:06.05hansyes, it is a superset of xlisp
20:06.55levihans: You can also just do run-lisp
20:07.02vontrapphans: i remember getting the raw feed and checking it for newlines once, there were none. i only did that with bloxom though
20:08.57levihans: See the last message in this thread: http://groups.google.com/group/comp.lang.lisp/browse_frm/thread/5ea7179ae8452ff7/2edd1ce9e3f2ae74?lnk=st&q=nyquist+emacs&rnum=3#2edd1ce9e3f2ae74
20:09.33hanswell, when I look at my blog rss in safari, newlines are there (not looking at the raw source)
20:10.19hansrun-lisp, not familiar with it, but wouldn't that start a new instance of the interpreter every time? the big idea is that definitions hang around
20:10.31levihans: This might be helpful, too: http://cl-cookbook.sourceforge.net/windows.html  (it's not really windows-specific)
20:10.41vontrappin that case,
20:10.43vontrapp~lart sage
20:10.55levihans: You run it once, and it opens a REPL in a new buffer.
20:11.42hansgood. that looks perfect, I'll give it a try
20:12.37levihttp://www.delorie.com/gnu/docs/emacs/emacs_331.html
20:12.48hansdo I want the cl-friendly indentation?
20:13.00leviYes.
20:13.39levixlisp is a subset of pre-ANSI CL, I believe, with a different object model than CL went with.
20:15.22maquisvontrapp: phantom is having a hard time?
20:15.24maquisthat's not good
20:15.44maquisvontrapp: you going to come visit the booth?
20:16.10levihans: Also, C-M-q is your friend.  It's bound to indent-sexp.
20:16.41levihans: C-M-k kills a sexp, which is also very useful.
20:17.00hanssexp?
20:17.21hansgoozbach: I still say bogofilter
20:17.31hansalthough I need to give spamassasin another look
20:17.44lukfuglgoozbach: why do you want to spam asians?
20:18.08hansno, he wants to spam as sian
20:18.16lukfuglwho's sian?
20:18.22hansthe guy he wants to spam as
20:18.44lukfuglhans: well, duh... but what's he got against sian such that he's trying to frame him?
20:19.44hanslevi: ok, I've added that stuff to ~/.emacs. next time I fiddle with nyquist I'll pick your brain
20:20.35hanswhat are these things? kangaroo-slug hybrids?
20:20.37hanshttp://arts.ucsc.edu/EMS/Music/index.html
20:21.48lukfuglgoodness, their hideous
20:24.42goozbachhe kicked my dog
20:24.49goozbachsian must die
20:25.16hans~kick goozbach's do
20:25.17ibotbugger off sod!
20:25.28*** join/#utah sjansen (n=sjansen@208.40.192.6)
20:25.33goozbachhans: I  could care less about my do
20:25.46hansdo, a der a female der
20:25.51goozbachnow if you were to kick my dog...
20:25.52sjansenhow much less?
20:26.05goozbachthen I'd want to spam as hans
20:26.18goozbachand I'd have to install spamashans
20:26.24lukfuglwhat do you call a deer with no i's?
20:26.30hansand it all comes back to people whose names sound like sean
20:26.34lukfuglhmm, doesn't work so well in text ;)
20:26.35hansspam-a-shans
20:26.56vontrappmaquis: not today, but i signed up for tomorrow and friday
20:27.04maquisvontrapp: cool
20:27.04vontrappphantom seems to be backon it's feet now
20:27.20graphyxYou guys doing a linux fest booth in the CS building today?
20:27.28maquisnobody else here at the moment, so i'm a bit bored
20:27.34maquisgraphyx: yes...  booth in the talmage
20:27.42graphyxhence your need to be on IRC.
20:27.49maquisgraphyx: yes
20:27.53graphyxYou should put that as one of the benefits of being part of plug.
20:28.02graphyxThe idle prattle the help the day go by quicker.
20:28.11maquisah
20:28.29graphyxThe the immediate help of typing our your problem
20:28.37graphyxSo you can get a better handle on what the problem really is.
20:28.48graphyxAnd the possibility that someone might even care enough to answer.
20:29.03maquisthe booth wouldn't be nearly as boring if there were other people here
20:29.09vontrappgraphyx: you have a typing problem?
20:29.19graphyxvontrapp: nope.
20:29.22maquis(read: it won't be boring if people would sign up)
20:29.34hansmaquis: start using force
20:29.35graphyxmaquis: well it depends on who else is there.
20:29.56graphyx~ibot bruteforce is If brute force isn't working you aren't using enough of it.
20:29.58ibotokay, graphyx
20:29.58maquishans: i could get goo to beat people up, i suppose
20:30.03graphyx~bruteforce
20:30.04ibotfrom memory, bruteforce is If brute force isn't working you aren't using enough of it.
20:30.19graphyxhmm.  that didn't work like I thought it should
20:30.22graphyxWhat did I do wrong?
20:30.35maquisibot: no, bruteforce is <reply> if brute force isn't working you aren't using enough
20:30.36ibotmaquis: okay
20:30.44graphyx~bruteforce
20:30.45ibotif brute force isn't working you aren't using enough
20:30.45maquis~brueteforce
20:31.12lukfugl~xml
20:31.14iboti guess xml is eXtensible Markup Language
20:31.14graphyxThanks maquis
20:31.24maquisgraphyx: no problem
20:31.39maquis~struts
20:31.40ibotmethinks struts is at http://jakarta.apache.org/struts/index.html
20:31.46sjansen~funkybomb graphyx
20:31.47ibotACTION blows away graphyx in a psychedelic flash
20:31.48lukfuglibot: no, xml is <reply> XML is like violence: if it's not working, you aren't using enough of it
20:31.50ibotokay, lukfugl
20:31.57lukfugl~xml
20:31.58ibotXML is like violence: if it's not working, you aren't using enough of it
20:32.06maquisibot no, struts is a hideously painful way to write a web application
20:32.08ibotmaquis: okay
20:32.30maquis~struts
20:32.32ibotfrom memory, struts is a hideously painful way to write a web application
20:32.32graphyx~stsruts
20:33.10sjansenibot, no struts is a form of torture pretending to be a Web application framework
20:33.12ibotsjansen: okay
20:33.15sjansen~struts
20:33.16ibotstruts is probably a form of torture pretending to be a Web application framework
20:33.29sjansenno probably about it
20:33.30maquissjansen: that's another way to put it
20:33.33lukfuglheh
20:34.39graphyxlate classes is yuck.
20:34.44graphyxunless it is only 1 day.
20:34.46graphyxThen it is not too bad.
20:34.52maquisgraphyx: it is only 1 day/week
20:35.01maquisalthough i have another one on mondays
20:35.24levimaquis: Had any more CS330 classes?
20:36.42hans~bruteforce is <reply>If it isn't working, you're not using enough XML.
20:36.45ibot...but bruteforce is already something else...
20:36.54hans~no, bruteforce is <reply>If it isn't working, you're not using enough XML.
20:37.06sjansenheh
20:37.30graphyxibot: don't listen to him.  He doesn't really know what he is talking about.  That's my quote!!!
20:37.31ibotgraphyx: that's too long
20:37.45graphyxTeacher, hans is mutating my quotes!!
20:37.54sjansenibot, brootforce is when hans turns green, gets all ripped with muscles, and starts throwing around cars
20:37.55ibotokay, sjansen
20:38.11Supaplexbroot? hah
20:38.34maquislevi: had it this morning
20:38.35lukfuglibot: no, brootforce is when sjansen turns green, gets all ripped with muscles, and starts stuffing XML in everyone's ear
20:38.36ibotokay, lukfugl
20:38.46maquisi was trying to figure out why the osX sss cd wasn't working
20:38.48lukfugl~brootforce
20:38.49ibotextra, extra, read all about it, brootforce is when sjansen turns green, gets all ripped with muscles, and starts stuffing XML in everyone's ear
20:39.13graphyxdoes that mean these guys are on the broot squad?
20:39.32levimaquis: What did you talk about in class?
20:39.40graphyxhey new boy friend.
20:39.45graphyxoh you mean the class....
20:39.46graphyxj/k
20:39.57maquislevi: ummm...
20:39.59maquislists?
20:40.39maquis~lart graphyx
20:41.04hans~cookie
20:41.05levimaquis: That's it?
20:41.29maquislevi: i was working on figuring out why the osX sss cd waasn't mounting
20:41.47maquis(ie, i was paying minimal attention
20:41.52maquis)
20:41.54levimaquis: In class?
20:41.56leviTsk.
20:41.58graphyxI didn't know that the playdough would crack when hit with a hammer...
20:42.00graphyxwow.
20:42.03graphyxThat's cool.
20:42.04maquislevi: of course
20:42.10maquisgraphyx: yes... it does
20:42.20levimaquis: That could be hazardous to your grade in that class.
20:42.22maquissjansen: was that 404?
20:42.24graphyxwhat class?
20:42.25sjansenand almost failed a couple others
20:42.28hansnot playdough, ooblick
20:42.39maquislevi: yes..  i know, but i had to get stuff working
20:42.41graphyxwas it 380?
20:42.48hansi bet it was physics 222
20:43.01sjansenno, I just quit physics
20:43.08sjansenit was actually 236, IIRC
20:43.22graphyxI think I had that class with you.
20:43.23sjansenalthough I can't be sure anymore
20:43.50vontrappsjansen: really? i'm retaking 236 because i completely neglected the homework
20:43.54maquisanyway, i need to pack up the booth now
20:43.57sjansenBecause I'm gradiated and it doesn't matter anymore!!!
20:44.03vontrappand the homework turned out to be worth too much
20:44.17graphyxsjansen: Believe me there are more people than yourself that are glad that you graduated.
20:44.55graphyxgradiated.. That's rich.
20:45.00leviTsk, bunch of slackers! ;)
20:45.33sjansenyou prefer gradjumniated?
20:45.56levisjansen: I wasn't commenting on your word choice.
20:45.58lukfugl~sing
20:46.00ibot"Night fever, night fever. You know how to do it!"
20:46.22graphyxThe only night fever after having kids is the one keeping your kids awake.
20:46.49sjansenHaving completed my first degree, I see it as my responsiblity to never spell gradiated correctly.
20:46.50vontrappis it common for the OIT rental computers to have evil virii that suck all your bandwidth?
20:47.03leviI was calling all these people who aren't paying attention in class, aren't doing homework, and are thus flunking classes slackers.  I'd /never/ do anything like that! ;)
20:47.05lukfuglvontrapp: it's OIT
20:47.32graphyxHey, you guys are contemplating taking off the key loggers I put on there are you?
20:47.38vontrappdidn't flunk the class, just got a lower grade than i would have liked
20:47.38graphyxI haven't gotten a good route y login yet.
20:48.28vontrapphow do you think OIT would take my installing ubuntu on a rental?
20:48.59graphyxever since they removed the sniff the packet over wireless and get the authentication cookie to be able to login to route y vulnerability I haven't had much fun.
20:49.07graphyxactually I didn't ever exploit that one.
20:49.17graphyxJust a friend and I played with it to see if it was still an issue.
20:49.45goozbach"we were playing that marco-polo game... so we both had our eyes closed"
20:50.06graphyxgoozbach: Would that be a two headed cyclops speaking?
20:50.29graphyxwait that would be so we had both our eyes closed.
20:51.27goozbachgraphyx: no, it's a quote from the strangerhood
20:51.29graphyxok
20:51.32goozbachwade to be exact
20:53.34sjansenlevi: As I remember it, you were a paragon of studious behavior while you were at BYU.
20:53.57vontrapp~dict paragon
20:54.28hanswow, neat word
20:54.47graphyx~dict dictionary
20:54.56bonez41paragon not to be confused with Paramour
20:55.01bonez41~dict paramour
20:55.12sjansenWell, my last student just left. Now to find the energy to go find someplace nice to eat.
20:55.22bonez41sjansen, what do you teach?
20:55.27sjansenlinux
20:55.29hansgurudum
20:55.44graphyxsjansen: I find it hard to find a good place to eat.
20:55.51graphyxBut the food at those places tends to be ok.
20:56.08graphyxIt's rough.  The countertop gets stuck in my teeth.
20:56.33goozbachgraphyx: you haven't been to the 'onion house' then...
20:56.45graphyxThey have edible counter tops?
20:57.03goozbacheven better, they don't have countertops at all
20:57.19vontrappi hate when those plastic strip things along the edge of the countertop cut the roof of my mouth
21:06.04vontrappargh, i hate when i ask a simple yes no question and i have to wait for a novel-length response
21:06.40hansvontrapp: like "would you like fries with that?"
21:09.13*** join/#utah TimRiker (n=timr@pdpc/supporter/bronze/TimRiker)
21:09.14*** mode/#utah [+o TimRiker] by ChanServ
21:09.19*** join/#utah phinux (n=phinux@iocane.cs.byu.edu)
21:09.33goozbachhmm... fries are made from patatoes... which is a tuber.. tubers are roots...
21:09.44goozbachwhich means they grow underground...
21:10.01goozbachdirt is always on things that come from underground...
21:10.10goozbachand I don't like eating dirt...
21:10.19goozbachso, no, I'll pass on the fries
21:10.26tensaiso clearly you cannot trust the fries placed in front of you
21:12.09goozbachno, fries are a clearly untrustworth source of starches and carbs.
21:12.33goozbachI'll take a baked patato however.
21:12.48vontrappthe oil they are cooked in is especially untrustworthy
21:16.25tensaimmmmmm
21:22.05*** join/#utah JoshH (i=josh@josh.xmission.com)
21:24.59vontrappdataw0lf, goozbach, i'll have your fries
21:25.17dataw0lf>_>
21:25.19dataw0lf<_<
21:25.25dataw0lfI'm not culpable.
21:25.33vontrapp~chase dataw0lf
21:25.36ibotACTION chases dataw0lf
21:25.41dataw0lfaiiiiiiiiiieeee
21:25.53vontrappwhat a boring chase
21:26.03vontrapp~catch dataw0lf
21:26.19vontrapp~apprehend dataw0lf
21:26.32vontrapp~stupid bot
21:26.33ibotno, stupid vontrapp
21:32.12*** join/#utah drewbono (n=andrew@c-24-2-95-76.hsd1.ut.comcast.net)
21:33.14graphyx~shoot dataw0lf
21:33.16ibotACTION shoots dataw0lf in the ear with a spitwad!
21:34.30dataw0lfZOMBIE LAWYER MUHAHA!
21:35.16*** join/#utah mheath (n=mheath@c-67-161-213-34.hsd1.ut.comcast.net)
21:35.36graphyxSo when a vegetarian comes back from the grave do they take the form of an zombie that roams the streets with its arms out moaning , "GRAINSS!!,  I WANT TO SUCK YOUR GRAINS!!!"
21:35.37graphyx?
21:46.37goozbachon the 'groan-o-meter' that registered a 4.3
21:48.53shadoi4.3 out of 10 or 5?  I'd go with the 5 scale.
21:51.38goozbachits a scale of 7
21:52.13*** join/#utah bucky (n=bucky@pdpc/supporter/active/bucky)
21:55.44mrpull-don't forget the groan-o-meter is logarithmic
22:02.50*** part/#utah phinux (n=phinux@iocane.cs.byu.edu)
22:05.52*** join/#utah sjansen-treo (n=upirc@h46074ca4.area7.spcsdns.net)
22:06.38sjansen-treohomemade farofa!
22:13.22sjansen-treogee, the channel sure is quiet
22:13.44sjansen-treoeveryone must be jealous because I'm at a churrascaria
22:18.07sjansen-treobah
22:18.28goozbachyup we be jealous
22:18.30sjansen-treoguess I'll just enjoy my mandioca frita alone
22:19.26*** join/#utah sjansen-treo (n=upirc@h46074ca4.area7.spcsdns.net)
22:19.37tensaivontrapp: try harder
22:19.42vontrappd'oh!
22:20.34goozbachat least he didn't see that first coment
22:20.41vontrapp:)
22:22.18mrpull-ipod nano?  looks pretty hot.
22:27.00sjansen-treosalt, beef, and carbon
22:27.00sjansen-treoyum
22:27.10mrpull-apple's site is fairly broken with Firefox today
22:27.19mrpull-at least the copy i'm using
22:27.21*** join/#utah fozzmoo (n=fozz@65.89.233.46)
22:27.53hansyour copy of apple's site?
22:30.01vontrappwhy would you want a copy of apple's site sitting around cluttering up your drive?
22:30.05fungusIf you want very very small go for http://www.mobibluamerica.com/dah1500.html
22:30.15mrpull-hans:  yup.  I download a new copy of each page each time I visit it ;)
22:30.28hanshow about very very cheap. I want a very very cheap ogg player
22:30.33hansmp3 would be nice too
22:30.37mrpull-my wife has a shuffle
22:30.39fozzmooI love iRiver!
22:30.41mrpull-it is pretty good.
22:30.42fozzmooHave I mentioend that?
22:30.56mrpull-she realized the other day that she hasn't recharged it since she got it in May
22:31.12mrpull-she uses it several times a week for about an hour each time
22:31.22mrpull-i don't know how the darn thing still has juice
22:32.06sjansen-treopower elves
22:32.30mrpull-power elves could be it
22:33.10hansand foxes
22:33.26vontrappwhat the heck? (Name server: 209.90.95.226: host
22:33.28vontrapp+not found)
22:33.36hans~nslookup vontrapp.com
22:34.01sjansen-treochunky bacon
22:34.23*** part/#utah Newsome (n=sorenson@128.187.171.102)
22:35.02*** join/#utah bonez41 (n=bonez@drjones.dsl.xmission.com)
22:37.20sjansen-treooi
22:37.32hansio
22:37.46sjansen-treoI must have eaten more rice than I thought.
22:38.02mrpull-speaking of chunky bacon... I got my Python book today :)
22:38.44vontrappio('rice') >> io('stomach')
22:39.36sjansen-treolua?
22:41.51vontrappmy dream player... records voice in speex, and maybe other record encodings, plays ogg, acts like a stinkin usb drive, has something like imms, lasts a good long time between charges, at least when only on play back, 1/8" stereo jack, holds at least 1GB, much more would be nice, costs under $150
22:43.23*** part/#utah sjansen-treo (n=upirc@h46074ca4.area7.spcsdns.net)
22:43.32vontrappnot a long contemplation
22:45.00hanshe's been real quick lately
23:28.41*** part/#utah fozzmoo (n=fozz@65.89.233.46)
23:53.20*** join/#utah dataw0lf- (n=dataw0lf@c-24-10-173-249.hsd1.ut.comcast.net)

Generated by irclog2html.pl by Jeff Waugh - find it at freshmeat.net! Modified by Tim Riker to work with blootbot logs, split per channel, etc.