Go to the bottom | Channel Index

first << < 200 201 202 203 204 205
Sun Nov 15 01:51:40 2009 [dchat] Kalinash@Fire and Ice: it's a "power tool" :) 
Sun Nov 15 01:51:50 2009 [dchat] Hamlet@Discworld: ah. buggy. 
Sun Nov 15 01:53:39 2009 [dchat] Ideysus@ShadowMUDii: 'No' then. :-P 
Sun Nov 15 01:54:17 2009 [dchat] Ideysus@ShadowMUDii: I use some uhh... 'virtual something' application in XP and I guess it kinda works. Sometimes. 
Mon Nov 16 01:46:04 2009 [dchat] Kalinash@Fire and Ice: that's .uk for you 
Mon Nov 16 02:35:38 2009 [dchat] Hamlet@WWC-west: ny.uk ny.uk ny.uk 
Mon Nov 16 16:17:28 2009 [dchat] Hamlet@WWC-west: "The referenced account is currently locked out and cannot be logged onto." 
Mon Nov 16 16:17:29 2009 [dchat] Hamlet@WWC-west: wheee. 
Mon Nov 16 20:56:29 2009 [dchat] Hamlet@WWC-west: don't you hate it when resolve() only seems to work when you're watching? 
Mon Nov 16 20:57:00 2009 [dchat] Bardioc@Evermore: *smirk* for that, I'd need to know what resolve() actualy does ;-) 
Mon Nov 16 21:04:22 2009 [dchat] Kalinash@Fire and Ice: reverse dns lookup 
Mon Nov 16 21:04:26 2009 [dchat] Kalinash@Fire and Ice: async 
Mon Nov 16 21:07:12 2009 [dchat] Bardioc@Evermore: Ahh how meaningful named ;-) 
Mon Nov 16 21:07:31 2009 [dchat] Kalinash@Fire and Ice: resolve - resolve an internet address to domain name 
Mon Nov 16 21:07:40 2009 [dchat] Kalinash@Fire and Ice: blame Beek 
Mon Nov 16 21:08:03 2009 [dchat] Hamlet@WWC-west:  <dchat I suspect it predates beek. 
Mon Nov 16 21:08:22 2009 [dchat] Kalinash@Fire and Ice: yeah, but his name is on the docs :) 
Mon Nov 16 21:08:51 2009 [dchat] Hamlet@WWC-west: that's good enough reason for me! 
Mon Nov 16 21:15:44 2009 [dchat] Hamlet@WWC-west: I have a strong suspicion that resolve is actually returning prior to the function that calls it completing...  not good. 
Mon Nov 16 21:22:55 2009 [dchat] Kalinash@Fire and Ice: that shouldn't matter 
Mon Nov 16 21:23:12 2009 [dchat] Kalinash@Fire and Ice: it's an async operation 
Mon Nov 16 21:30:10 2009 [dchat] Hamlet@WWC-west: right.  async.  so it returns a token to your code and later calls a function with that token to tell you how it all turned out.\ 
Mon Nov 16 21:30:25 2009 [dchat] Kalinash@Fire and Ice: not async in that way... 
Mon Nov 16 21:30:27 2009 [dchat] Hamlet@WWC-west: it if calls the function _before_ returning the token, that's obviously a problem. 
Mon Nov 16 21:30:44 2009 [dchat] Kalinash@Fire and Ice: i'll have to look at the code again, but i believe it just associates the string (resolved name) with the connection object 
Mon Nov 16 21:30:47 2009 [dchat] Wodan@Discworld: how could that ever happen? 
Mon Nov 16 21:31:29 2009 [dchat] Hamlet@WWC-west: W, I don't _know_ that's happening yet.  I just have unexplained behavior and I've stared at my code long enough that I _think_ the code is correct.  Will do more validating tonight. 
Mon Nov 16 21:31:31 2009 [dchat] Wodan@Discworld: lpc being entirely single threaded :) 
Mon Nov 16 21:32:03 2009 [dchat] Wodan@Discworld: you can't get a callback before the current function finishes 
Mon Nov 16 21:32:21 2009 [dchat] Hamlet@WWC-west: single-threaded doesn't matter.    resolve() branches into the "OS".  Whether the "OS" does the apply before returning back to the code it was running is a design decision. 
Mon Nov 16 21:32:51 2009 [dchat] Kalinash@Fire and Ice: well no 
Mon Nov 16 21:33:02 2009 [dchat] Kalinash@Fire and Ice: it uses a socket connection to the addr_server to request a resolve 
Mon Nov 16 21:33:19 2009 [dchat] Kalinash@Fire and Ice: later on in the backend loop the driver reads responses and updates the connection object 
Mon Nov 16 21:33:21 2009 [dchat] Kalinash@Fire and Ice: IIRC 
Mon Nov 16 21:33:40 2009 [dchat] Wodan@Discworld: the OS can't callback to lpc anyway, that would be magic :) 
Mon Nov 16 21:33:49 2009 [dchat] Kalinash@Fire and Ice: i believe in magic! 
Mon Nov 16 21:33:53 2009 [dchat] Hamlet@WWC-west: the socket code in general had a race condition of the OS returns results immediately.  ancient UNIXes never did.  newer ones can. 
Mon Nov 16 21:34:02 2009 [dchat] Hamlet@WWC-west: s/of/if 
Mon Nov 16 21:34:17 2009 [dchat] Hamlet@WWC-west: it may be that resolve() has this same problem. 
Mon Nov 16 21:34:47 2009 [dchat] Kalinash@Fire and Ice: bring up the addr_server in gdb and put a breakpoint in there 
Mon Nov 16 21:35:04 2009 [dchat] Kalinash@Fire and Ice: introduce an artificial delay 
Mon Nov 16 21:35:11 2009 [dchat] Wodan@Discworld: do it on solaris and use dtrace on the whole thing :) 
Mon Nov 16 21:35:25 2009 [dchat] Hamlet@WWC-west: this is idle speculation for now.  I just know my code works fine without the intermediate resolve() and breaks if I put the resolve() in. 
Mon Nov 16 21:35:47 2009 [dchat] Hamlet@WWC-west: and that in principle the code itself is fine.  Or so I believe after staring at it for hours. 
Mon Nov 16 21:36:47 2009 [dchat] Kalinash@Fire and Ice: lpc code? 
Mon Nov 16 21:36:55 2009 [dchat] Kalinash@Fire and Ice: what ARE you doing? o.O 
Mon Nov 16 21:37:53 2009 [dchat] Hamlet@WWC-west: oh, nothing special.   given ipname:port,  resolve, connect, fetch things, report results. 
Mon Nov 16 21:38:48 2009 [dchat] Hamlet@WWC-west: however, "concurrency" is an issue, so  mp[resolve()] = ({ data }); is needed to keep track of multiple ones in flight. 
Mon Nov 16 21:54:41 2009 [dchat] Kalinash@Fire and Ice: but resolve() doesn't directly return anything useful 
Mon Nov 16 21:54:47 2009 [dchat] Kalinash@Fire and Ice: for me it always returns 1 
Mon Nov 16 21:59:36 2009 [dchat] Hamlet@WWC-west: eval return ({ resolve("192.168.0.1", "foo"), resolve("192.168.0.1", "foo"), resolve("192.168.0.1", "foo) }); 
Mon Nov 16 22:00:28 2009 [dchat] Wodan@Discworld: End of file in string at the end of the file 
Mon Nov 16 22:01:10 2009 [dchat] Hamlet@WWC-west: eval return ({ resolve("192.168.0.1", "foo"), resolve("192.168.0.1", "foo"), resolve("192.168.0.1", "foo") }); 
Mon Nov 16 22:01:14 2009 [dchat] Wodan@Discworld: i get 1,2,3 every time :) 
Mon Nov 16 22:01:42 2009 [dchat] Hamlet@WWC-west: right.  just showing K that the number *does* vary. 
Mon Nov 16 22:10:07 2009 [dchat] Ninja@Dead Souls Dev: following this conversation, why am I having flashbacks to the "Fabulous Furry Freak Brothers"? 
Mon Nov 16 22:17:08 2009 [dchat] Kalinash@Fire and Ice: oh, so it increments within the current ER 
Mon Nov 16 22:18:41 2009 [dchat] Hamlet@WWC-west: I would assume it increments within the existing pending calls. 
Mon Nov 16 22:18:59 2009 [dchat] Hamlet@WWC-west: it's just that with a same-host address server, it's not like there should be many pending. 
Mon Nov 16 22:19:42 2009 [dchat] Kalinash@Fire and Ice: too bad it's not a better cookie value 
Mon Nov 16 22:20:53 2009 [dchat] Hamlet@WWC-west: I would assume there'd be no harm in letting it increment forever.  when it reaches roll-over, either the low numbers are completely irrelevant or your lib is doing something incredibly wrong. 
Mon Nov 16 22:22:32 2009 [dchat] Kalinash@Fire and Ice: aye 
Mon Nov 16 22:23:11 2009 [dchat] Wodan@Discworld: depends on it being the index in some array or not :) 
Mon Nov 16 22:23:33 2009 [dchat] Hamlet@WWC-west: well, true. 
Mon Nov 16 22:23:38 2009 [dchat] Kalinash@Fire and Ice: oh no, you'd need a table to track the mappings 
Mon Nov 16 22:23:43 2009 [dchat] Kalinash@Fire and Ice: sheesh 
Mon Nov 16 22:24:23 2009 [dchat] Hamlet@WWC-west: we were talking TOKENS, not implementation, Wodan! 
Mon Nov 16 22:26:40 2009 [dchat] Kalinash@Fire and Ice: oh well, turn on debugging and try it :) 
Mon Nov 16 22:27:39 2009 [dchat] Wodan@Discworld: some mud may have noticed and use an array in the lpc side of things! 
Mon Nov 16 22:28:05 2009 [dchat] Hamlet@WWC-west: sounds tragic for them :P 
Mon Nov 16 22:28:19 2009 [dchat] Wodan@Discworld: recycling the numbers should be fine anyway 
Mon Nov 16 22:29:10 2009 [dchat] Hamlet@WWC-west: well, until we have a multithreaded driver.  then there are problems. 
Mon Nov 16 22:29:43 2009 [dchat] Wodan@Discworld: i had no idea we were close :) 
Mon Nov 16 22:30:04 2009 [dchat] Hamlet@WWC-west: we're not!  just commenting. 
Mon Nov 16 22:30:06 2009 [dchat] Wodan@Discworld: any news on pcre? 
Mon Nov 16 22:30:27 2009 [dchat] Hamlet@WWC-west: no.  I'll nag again.  or maybe just start looking at it as soon as I'm doine with this resolve() thing. 
Mon Nov 16 22:30:45 2009 [dchat] Hamlet@WWC-west: he's been drinking more and coding less, I think. 
Mon Nov 16 22:31:00 2009 [dchat] Wodan@Discworld: the driver does that to people 
Mon Nov 16 22:31:03 2009 [dchat] Hamlet@WWC-west: and I really do want pcre for xml parsing anyway :P 
Mon Nov 16 22:32:12 2009 [dchat] Wodan@Discworld: surely the current regexps can do xml? 
Mon Nov 16 22:32:38 2009 [dchat] Wodan@Discworld: except for doing them properly needing a grammar instead :) 
Mon Nov 16 22:33:32 2009 [dchat] Wodan@Discworld: a generic parser would be useful 
Mon Nov 16 22:33:34 2009 [dchat] Hamlet@WWC-west: oh, I'm uninterested in the grammar verification bit.  I want something relatively simple and haven't figured out how simple I can go. 
Mon Nov 16 22:34:00 2009 [dchat] Hamlet@WWC-west: BUT, what I do what are control over capture groups. 
Mon Nov 16 22:34:31 2009 [dchat] Wodan@Discworld: reg_assoc can do that, if you write some extra code :) 
Mon Nov 16 22:34:53 2009 [dchat] Hamlet@WWC-west: yeah.  it's the 'extra code' part I'm trying to avoid! 
Mon Nov 16 22:35:04 2009 [dchat] Hamlet@WWC-west: I can do it without regexp at all.  just don't wanna. 
Mon Nov 16 23:44:44 2009 [dchat] Ideysus@ShadowMUDii: I wish there were a way to do capture groups with regexps... 
Mon Nov 16 23:50:10 2009 [dchat] Kalinash@Fire and Ice: i wish regexps had never been invented 
Mon Nov 16 23:50:20 2009 [dchat] Ideysus@ShadowMUDii gasps 
Mon Nov 16 23:50:58 2009 [dchat] Ideysus@ShadowMUDii: I'm just waiting for them to be made turing complete so I don't have to use anything else. 
Mon Nov 16 23:51:35 2009 [dchat] Ideysus@ShadowMUDii: Having said that, I wouldn't be suprised if perl had something added to its regular expressions to make it so... 
Tue Nov 17 01:28:11 2009 [dchat] Hamlet@WWC-west: there *are* capture groups in regexes.  as far as I know they're only here and on one other testmud :P  And they have a negative impact on the stability of a mud. 
Tue Nov 17 01:30:03 2009 [dchat] Ideysus@ShadowMUDii: Aww. 
Tue Nov 17 01:30:19 2009 [dchat] Ideysus@ShadowMUDii: How do they work? some kind of special variable? 
Tue Nov 17 01:30:39 2009 [dchat] Hamlet@WWC-west: standard perl syntax. 
Tue Nov 17 01:31:06 2009 [dchat] Hamlet@WWC-west: well, wrapped in lpc functions, of course. 
Tue Nov 17 01:32:33 2009 [dchat] Ideysus@ShadowMUDii: Uhh... so how does that work? 
Tue Nov 17 01:32:38 2009 [dchat] Ideysus@ShadowMUDii: Oh. I see what you mean. 
Tue Nov 17 01:32:58 2009 [dchat] Ideysus@ShadowMUDii: What I was interested in is a way to get access to the capture buffer outside of the regular expresison 
Tue Nov 17 01:34:38 2009 [dchat] Ideysus@ShadowMUDii: Ah, '$1' in perl? 
Tue Nov 17 01:35:00 2009 [dchat] Ideysus@ShadowMUDii: Goodness my perl is rusty. Its like trying to memorise white noise. 
Tue Nov 17 02:01:16 2009 [dchat] Hamlet@WWC-west: pcre_extract(string subject, string pattern) 
Tue Nov 17 02:03:19 2009 [dchat] Ideysus@ShadowMUDii: Returns an array of captures? 
Tue Nov 17 02:03:30 2009 [dchat] Hamlet@WWC-west: yeah. 
Tue Nov 17 02:03:56 2009 [dchat] Ideysus@ShadowMUDii: Want. 
Tue Nov 17 02:04:26 2009 [dchat] Hamlet@WWC-west: so repeat after me:  tell volothamp Please hurry up and finish PCRE.  We need it. 
Tue Nov 17 02:05:04 2009 [dchat] Ideysus@ShadowMUDii: Meh. We'd need to port to fluff first. :-P 
Tue Nov 17 02:16:16 2009 [dchat] Ideysus@ShadowMUDii: This is possibly a good time to ask if people know if there is a way to do variable length sequences is old mudos regexps? 
Tue Nov 17 02:16:48 2009 [dchat] Ideysus@ShadowMUDii: Like, right now i want to match 'aaa' or 'aaaa'. The syntax some regexps use is 'a{3,4}' (I think) 
Tue Nov 17 02:18:39 2009 [dchat] Hamlet@WWC-west: pretty sure that's too new to be in mudos. 
Tue Nov 17 02:19:29 2009 [dchat] Ideysus@ShadowMUDii: Good grief? Thats new? 
Tue Nov 17 02:20:17 2009 [dchat] Kalinash@Fire and Ice: shhhh! You'll wake up Silenus! 
Tue Nov 17 02:21:37 2009 [dchat] Ideysus@ShadowMUDii: Huh. Interesting 'portable scripts should avoid { in grep -E' 
Tue Nov 17 02:35:28 2009 [dchat] Hamlet@WWC-west: 2001.  that's pretty new. 
Tue Nov 17 03:12:27 2009 [dchat] Ideysus@ShadowMUDii: Err... 
Tue Nov 17 03:13:04 2009 [dchat] Ideysus@ShadowMUDii: Another regexp one... Sorry... Does order matter in a | separated list? That is, are the regexps A|B  and B|A equal? 
Tue Nov 17 03:13:51 2009 [dchat] Ideysus@ShadowMUDii: To rephrase, why does this return t (swapping the | separated bits returns testing):   eval mixed a,x=sscanf("testing",  "%(.|(....+))", a); write(":"+a+":") 
Tue Nov 17 03:14:05 2009 [dchat] Ideysus@ShadowMUDii: Either its a bug or my understanding needs correcting. 
Tue Nov 17 03:14:40 2009 [dchat] Silenus@Dead Souls Dev: I am confused 
Tue Nov 17 03:14:54 2009 [dchat] Silenus@Dead Souls Dev: since when does sscanf support regular expressions? 
Tue Nov 17 03:15:04 2009 [dchat] Ideysus@ShadowMUDii: Didn't it always? 
Tue Nov 17 03:15:14 2009 [dchat] Silenus@Dead Souls Dev: no 
Tue Nov 17 03:15:32 2009 [dchat] Silenus@Dead Souls Dev: i dont think the c version on which it is based supports it either 
Tue Nov 17 03:17:08 2009 [dchat] Ideysus@ShadowMUDii: Hmm. I think its been in mudos as long as I've used it. 
Tue Nov 17 03:17:18 2009 [dchat] Silenus@Dead Souls Dev: not afaik 
Tue Nov 17 03:18:09 2009 [dchat] Silenus@Dead Souls Dev: it does support regular expressions but the support is kind of meh 
Tue Nov 17 03:18:50 2009 [dchat] Silenus@Dead Souls Dev: i.e. reg_assoc and regexp efuns 
Tue Nov 17 03:19:35 2009 [dchat] Ideysus@ShadowMUDii: Its certainly included in the sscanf efun. I don't know if its just been thoughtlessly hacked in but its there and I've used it before 
Tue Nov 17 03:20:35 2009 [dchat] Hamlet@WWC-west: that's awesome.  I had no idea. 
Tue Nov 17 03:20:47 2009 [dchat] Ideysus@ShadowMUDii: Not really. It doesn't seem to work. :-P 
Tue Nov 17 03:21:00 2009 [dchat] Ideysus@ShadowMUDii: Or, has a bug. 
Tue Nov 17 03:21:12 2009 [dchat] Hamlet@WWC-west: because of your | thing? 
Tue Nov 17 03:21:35 2009 [dchat] Ideysus@ShadowMUDii: Maybe. Its kind of like it jumped at the first match rather than being greedy. Which is odd. 
Tue Nov 17 03:21:56 2009 [dchat] Hamlet@WWC-west: not _all_ regex operations are greedy, just most.  maybe the | is lazy. 
Tue Nov 17 03:22:07 2009 [dchat] Ideysus@ShadowMUDii blinks. 
Tue Nov 17 03:22:21 2009 [dchat] Ideysus@ShadowMUDii: That could be useful... potentially... 
Tue Nov 17 03:22:41 2009 [dchat] Ideysus@ShadowMUDii: Like... right now, I'm trying to match every line which -doesn't- match a given string... 
Tue Nov 17 03:34:19 2009 [dchat] Silenus@Dead Souls Dev: i dont think an or match like that is usually greedy 
Tue Nov 17 03:34:37 2009 [dchat] Silenus@Dead Souls Dev: or union usually it's only kleene star i think. 
Tue Nov 17 03:35:16 2009 [dchat] Silenus@Dead Souls Dev: though i was surprised that pcre parses some wierd stuff which isnt even strictly regular i dont think 
Tue Nov 17 03:36:38 2009 [dchat] Silenus@Dead Souls Dev: so what you have stated *I think* is somewhat ambiguous 
Tue Nov 17 05:18:08 2009 [dchat] Hamlet@WWC-west: guh.  I blame Wodan.  Or, you know, someone before Wodan. 
Tue Nov 17 05:18:18 2009 [dchat] Hamlet@WWC-west: but definitely either Wodan or someone else. 
Tue Nov 17 05:23:45 2009 [dchat] Hamlet@WWC-west: turned out not to be a weird resolve() race, at least. 
Tue Nov 17 05:24:14 2009 [dchat] Hamlet@WWC-west: instead, it turns out that unbound sockets get reclaimed _immediately_, which is a compat buster from MudOS. 
Tue Nov 17 05:26:28 2009 [dchat] Hamlet@WWC-west: I was doing socket_create(), then calling resolve() and returning the fd to the calling function as a "here's your token".  The callback for resolve() was responsible for socket_bind() and socket_connect(), but by then the socket had been recovered. 
Tue Nov 17 05:26:48 2009 [dchat] Hamlet@WWC-west: I wonder if moving socket_bind() further forward will solve the problem... 
Tue Nov 17 06:26:52 2009 [dchat] Kalinash@Fire and Ice: you can fix it! you have the technology! 
Tue Nov 17 12:47:39 2009 [dchat] Silenus@Dead_Souls_silenus: test 
Tue Nov 17 13:42:54 2009 [dchat] Ninja@Dead Souls Dev: by george, me thinks he's got it! 
Tue Nov 17 15:27:44 2009 [dchat] Detah@Dead Souls Dev: good morning 
Tue Nov 17 15:28:56 2009 [dchat] Hamlet@WWC-west: relatively decent, at least!  how's the weather? 
Tue Nov 17 15:30:36 2009 [dchat] Detah@Dead Souls Dev: its raining here. temp is dropping daily now. I fear I have seen the last warm day for the year. 
Tue Nov 17 15:31:00 2009 [dchat] Hamlet@WWC-west: get the sled ready to go! 
Tue Nov 17 15:51:05 2009 [dchat] Nafe@The Pussy Cat Forest: nice to have a day here that is a little cooler, australia is having like a heat wave atm it sucks 
Tue Nov 17 15:51:39 2009 [dchat] Nafe@The Pussy Cat Forest: i live in the mountains in tasmania for gods sake and im still thinking of moving where its colder 
Tue Nov 17 15:51:55 2009 [dchat] Nafe@The Pussy Cat Forest: aparently global warming is supposed to send the UK into like an ice age 
Tue Nov 17 15:51:59 2009 [dchat] Nafe@The Pussy Cat Forest: hmmmmmmmmmmmmm 
Tue Nov 17 20:59:56 2009 [dchat] Hamlet@WWC-west: sheesh.  I just tried to edit something with 'ed' in a unix shell. 
Tue Nov 17 21:09:55 2009 [dchat] Kalinash@Fire and Ice: nothing wrong with that 
Tue Nov 17 21:10:05 2009 [dchat] Bardioc@Evermore: Hello everybody :-) 
Tue Nov 17 21:18:39 2009 [dchat] Detah@Dead Souls Dev: whos ed and why is he trying to kill m[&4 [$4 [$4Q)uit without saving, save and ex)it, h)elp 
Tue Nov 17 21:52:45 2009 [dchat] Hamlet@WWC-west: well, I always use ed or ex to edit the Makefile for 'joe' when i first login to a new account.  after that, though, there's really no need. 
Tue Nov 17 22:06:07 2009 [dchat] Wodan@Discworld: ed is your friend 
Tue Nov 17 22:13:31 2009 [dchat] Hamlet@WWC-west: indeed. 
Tue Nov 17 22:14:29 2009 [dchat] Wodan@Discworld: there could be no doubt about that after reading the ed manpage that comes with emacs 
Tue Nov 17 22:23:25 2009 [dchat] Hamlet@WWC-west: not sure I've ever done that.  any time I get stuck in emacs or vi, I find C-z followed by kill -9 works pretty well. 
Tue Nov 17 23:01:21 2009 [dchat] Hamlet@WWC-west: ok!  so if I post a daemon that knows how to fetch WHOIS information from appropriate servers, will someone write the code so it'll recurse on .com domains? 
Tue Nov 17 23:04:42 2009 [dchat] Ideysus@ShadowMUDii: Emacs is C-x C-c to exit. Vi seems to be some combination of hitting Esc : q! and crying 
Tue Nov 17 23:05:02 2009 [dchat] Kalinash@Fire and Ice: ZZ 
Tue Nov 17 23:05:04 2009 [dchat] Kalinash@Fire and Ice: save and exit 
Tue Nov 17 23:05:06 2009 [dchat] Hamlet@WWC-west: I find C-z kill -9 works great. 
Tue Nov 17 23:05:17 2009 [dchat] Kalinash@Fire and Ice: :q! 
Tue Nov 17 23:05:20 2009 [dchat] Kalinash@Fire and Ice: quit without saving 
Tue Nov 17 23:05:53 2009 [dchat] Ideysus@ShadowMUDii: I've got to admit that I tend to use 'cat >> ...' until I can use emacs 
Tue Nov 17 23:06:11 2009 [dchat] Kalinash@Fire and Ice: i'll use emacs when i'm dead and burning in hell 
Tue Nov 17 23:06:31 2009 [dchat] Ideysus@ShadowMUDii: Why would you need to use anything else? 
Tue Nov 17 23:06:47 2009 [dchat] Ideysus@ShadowMUDii: I mean -ever-. For -anything-... 
Tue Nov 17 23:06:55 2009 [dchat] Ninja@Dead Souls Dev: i code old soviet style...paper, pencil. 
Tue Nov 17 23:07:00 2009 [dchat] Hamlet@WWC-west: I thought pico sucked until I got inflicted with nano. 
Tue Nov 17 23:07:29 2009 [dchat] Ideysus@ShadowMUDii: Heh. Nano fills an important niche. 
Tue Nov 17 23:07:55 2009 [dchat] Ideysus@ShadowMUDii: Admittedly that niche is providing a means to edit config until emacs can be downloaded 
Tue Nov 17 23:09:26 2009 [dchat] Kalinash@Fire and Ice: i use punch cards 
Tue Nov 17 23:14:00 2009 [dchat] Ideysus@ShadowMUDii: I'm actually tempted to file a bug report on emacs 'C-Z should print "lol! nice try!" in the minibuffer, as per C-C' 
Tue Nov 17 23:19:35 2009 [dchat] Hamlet@WWC-west: ok!  must be yabbadabba time.  THANK YOU WATERTOWN GOOD NIGHT!. 
Wed Nov 18 17:55:49 2009 [dchat] Sorressean@Falcon: testing? 
Wed Nov 18 18:01:06 2009 [dchat] Ideysus@ShadowMUDii: Fail. 
Wed Nov 18 18:06:20 2009 [dchat] Sinistrad@Dead Souls Dev: =) 
Wed Nov 18 22:28:20 2009 [dchat] Bob@Ceratonia: Does anyone know where the output of the prompt is controlled in DS? I've got my prompt acting up on Mushclient, displaying as a solid gray bar. Not sure it isn't returning an ANSI string it doesn't like. 
Wed Nov 18 22:39:25 2009 [dchat] Cratylus@Dead Souls Dev: hmm 
Wed Nov 18 22:39:43 2009 [dchat] Bob@Ceratonia: It's literally a gray bar... I can't read anything in Ed either 
Wed Nov 18 22:39:53 2009 [dchat] Cratylus@Dead Souls Dev: type: env 
Wed Nov 18 22:39:56 2009 [dchat] Bob@Ceratonia: so I'm sitting on putty at the moment :-p 
Wed Nov 18 22:39:59 2009 [dchat] Cratylus@Dead Souls Dev: is charmode on? 
Wed Nov 18 22:40:07 2009 [dchat] Cratylus@Dead Souls Dev: or reprompt? 
Wed Nov 18 22:40:11 2009 [dchat] Bob@Ceratonia: Negative, 'off' on both. 
Wed Nov 18 22:40:16 2009 [dchat] Cratylus@Dead Souls Dev: huh 
Wed Nov 18 22:40:33 2009 [dchat] Cratylus@Dead Souls Dev: never seen that 
Wed Nov 18 22:40:38 2009 [dchat] Cratylus@Dead Souls Dev: try: prompt > 
Wed Nov 18 22:40:50 2009 [dchat] Bob@Ceratonia: One sec, let me log a test char on 
Wed Nov 18 22:40:52 2009 [dchat] Ninja@Dead Souls Dev: wot kinda term type ya using? 
Wed Nov 18 22:41:28 2009 [dchat] Bob@Ceratonia: Typpically run Mushclient 
Wed Nov 18 22:41:53 2009 [dchat] Bob@Ceratonia: Hmm, must be something on this player object - because the test char is normal 
Wed Nov 18 22:41:55 2009 [dchat] Cratylus@Dead Souls Dev: ive had other people using mushclient complain about prompt things but i can never reproduce it 
Wed Nov 18 22:42:19 2009 [dchat] Cratylus@Dead Souls Dev: i think mushclient tries to be too clever without telling you 
Wed Nov 18 22:43:44 2009 [dchat] Ninja@Dead Souls Dev: both char objects using the same terminal type, as far  as the mud is concerned? 
Wed Nov 18 22:43:51 2009 [dchat] Ninja@Dead Souls Dev: vt100...wotever? 
Wed Nov 18 22:44:11 2009 [dchat] Bob@Ceratonia: Both are using 'ansi' 
Wed Nov 18 22:44:54 2009 [dchat] Ninja@Dead Souls Dev: stuff you type in, works? 
Wed Nov 18 22:45:02 2009 [dchat] Cratylus@Dead Souls Dev: make the testchar a creator 
Wed Nov 18 22:45:11 2009 [dchat] Cratylus@Dead Souls Dev: see if the problem hits him then 
Wed Nov 18 22:45:32 2009 [dchat] Ninja@Dead Souls Dev: if not, quit the problem char and relog...see if that fixes some sorta glitch. 
Wed Nov 18 22:45:36 2009 [dchat] Cratylus@Dead Souls Dev: encre testie 
Wed Nov 18 22:46:44 2009 [dchat] Bob@Ceratonia: Encre'd -- Relogged and still no problem on the test char. Relogging on this character does not resolve the bar 
Wed Nov 18 22:47:09 2009 [dchat] Bob@Ceratonia: on Putty - I can see my prompt/output just fine. It's just on mushclient, on this character which is kinda freak 
Wed Nov 18 22:59:17 2009 [dchat] Hamlet@WWC-west: "don't use mushclient." 
Thu Nov 19 14:37:11 2009 [dchat] Gorto@Dead_Souls_gorto: hi 
Thu Nov 19 14:41:54 2009 [dchat] Kalinash@Fire and Ice: yo 
Thu Nov 19 14:42:46 2009 [dchat] Kalinash@Fire and Ice: fresh meat for the grinder? 
Thu Nov 19 15:09:03 2009 [dchat] Detah@Dead Souls Dev: good morning 
Thu Nov 19 16:07:39 2009 [dchat] Kalinash@Fire and Ice: morning D 
Thu Nov 19 16:29:45 2009 [dchat] Hamlet@WWC-west: whoa.  I just never had any idea how important caching was to apache's performance. 
Thu Nov 19 17:14:16 2009 [dchat] Lysergic@Mortalus sneezes! 
Thu Nov 19 17:14:40 2009 [dchat] Sys@BlackHole: bless you! 
Thu Nov 19 17:14:46 2009 [dchat] Kalinash@Fire and Ice: SWINE FLU! 
Thu Nov 19 17:15:09 2009 [dchat] Kalinash@Fire and Ice sets up the biohazard signs and quarantines the area. 
Thu Nov 19 17:15:56 2009 [dchat] Lovenkraft@Mortalus: Thanky! 
Fri Nov 20 12:30:20 2009 [dchat] Nafe@The Pussy Cat Forest: you know what would be cool 
Fri Nov 20 12:31:05 2009 [dchat] Nafe@The Pussy Cat Forest: a stripped bare public domain dead souls lib with nothing left other than the mud and intermud chat and mudmail. 
Fri Nov 20 12:31:59 2009 [dchat] Nafe@The Pussy Cat Forest: i have to put a chat program on someones website and this is how i am approaching it, does anyone already have someting like this? 
Fri Nov 20 12:32:27 2009 [dchat] Nafe@The Pussy Cat Forest: i am going to use anyterm to offer the web  to mud interface etc 
Fri Nov 20 12:37:15 2009 [dchat] Charles@The Pussy Cat Forest: Why not just run some java chat thing 
Fri Nov 20 12:38:10 2009 [dchat] Nafe@The Pussy Cat Forest: thats the thing you see 
Fri Nov 20 12:38:20 2009 [dchat] Nafe@The Pussy Cat Forest: seems that isnt as easy as it sounds 
Fri Nov 20 12:39:00 2009 [dchat] Nafe@The Pussy Cat Forest: i eaither have to pay a fee or set up some serious stuff i am just  not willing to do coz its outa my league 
Fri Nov 20 12:39:28 2009 [dchat] Charles@The Pussy Cat Forest: http://www.chatfiles.com/ 
Fri Nov 20 12:39:49 2009 [dchat] Nafe@The Pussy Cat Forest: thnx ill have a looksy 
Fri Nov 20 13:06:23 2009 [dchat] Cratylus@Dead Souls Dev: i think the stripped down mud you describe is dead souls I 
Fri Nov 20 13:06:36 2009 [dchat] Charles@The Pussy Cat Forest: Hi Crat. 
Fri Nov 20 13:07:17 2009 [dchat] Cratylus@Dead Souls Dev: it's barely modified from the originally released 1.1 
Fri Nov 20 13:07:30 2009 [dchat] Cratylus@Dead Souls Dev: just fixed up to compile, the rest is on you 
Fri Nov 20 13:08:22 2009 [dchat] Cratylus@Dead Souls Dev: hello charles. please note this channel and the i3 network has fascist rules which i enforce 
Fri Nov 20 13:08:36 2009 [dchat] Cratylus@Dead Souls Dev: http://lpmuds.net/intermud.html 
Fri Nov 20 13:08:59 2009 [dchat] Cratylus@Dead Souls Dev: since your mud is already operating under a yellow card, it would take only the most casual violation to pull a red one 
Fri Nov 20 13:09:02 2009 [dchat] Cratylus@Dead Souls Dev: just so you know 
Fri Nov 20 13:09:29 2009 [dchat] Charles@The Pussy Cat Forest: hi 
Fri Nov 20 13:09:33 2009 [dchat] Charles@The Pussy Cat Forest: I like facism 
Fri Nov 20 13:09:51 2009 [dchat] Cratylus@Dead Souls Dev: well normally people like fascisting, not being fascisted 
Fri Nov 20 13:10:20 2009 [dchat] Charles@The Pussy Cat Forest: I'm not sure what you said, but I'm sure it was witty  :) 
Fri Nov 20 13:11:15 2009 [dchat] Cratylus@Dead Souls Dev: that is exactly the right attitude 
Fri Nov 20 13:13:21 2009 [dchat] Charles@The Pussy Cat Forest: Is there a command to see a channels history? 
Fri Nov 20 13:14:10 2009 [dchat] Cratylus@Dead Souls Dev: help hist 
Fri Nov 20 13:14:32 2009 [dchat] Charles@The Pussy Cat Forest: thanks 
Fri Nov 20 13:14:46 2009 [dchat] Charles@The Pussy Cat Forest: in all seriousness, I do like ds2 
Fri Nov 20 13:15:56 2009 [dchat] Cratylus@Dead Souls Dev: :) 
Fri Nov 20 13:17:04 2009 [dchat] Charles@The Pussy Cat Forest: I'm doing a bachelor of computer science over the next couple of years which has a pretty strong c/c++ focus, so I'm hoping to get into some mud stuff. 
Fri Nov 20 13:19:10 2009 [dchat] Ninja@Dead Souls Dev: write yer own stuff from scratch. 
Fri Nov 20 13:19:52 2009 [dchat] Ninja@Dead Souls Dev: start with a chat server, object-oriented code. 
Fri Nov 20 13:20:16 2009 [dchat] Ninja@Dead Souls Dev: then add rooms code 
Fri Nov 20 13:20:53 2009 [dchat] Ninja@Dead Souls Dev: add in a database for back end storage. 
Fri Nov 20 15:03:20 2009 [dchat] Hamlet@WWC-west: I've got to say that chat servers are much easier to write in "owned" languages with large code libraries such as Java or C#.  C++ is just plain missing some stuff that is useful for the task. 
Fri Nov 20 15:10:35 2009 [dchat] Detah@Dead Souls Dev: good morning 
Fri Nov 20 15:51:09 2009 [dchat] Hamlet@WWC-west: anyone know anything about accounting?  What's "untotalized data"?  Sounds like something W would say.  I know *I* feel threaterizificated by untotalized data. 
Fri Nov 20 15:56:17 2009 [dchat] Cratylus@Dead Souls Dev: check your dictionotomy 
Fri Nov 20 19:13:52 2009 [dchat] Hamlet@WWC-west: anyone had any problems with A-1 international as a distribution agent for amazon.com
Fri Nov 20 19:14:21 2009 [dchat] Hamlet@WWC-west: er, delivery agent. 
Fri Nov 20 19:20:24 2009 [dchat] Sinistrad@Dead Souls Dev: No, but I love A-1 steak sauce. 
Fri Nov 20 19:27:18 2009 [dchat] Hamlet@WWC-west: oh well.  my package is "out for delivery", but the nearest A-1 seems to come to me is New Jersey.  So "out for delivery" means they'll get here maybe at 7 or 8 tonight.  seems unlikely I'll still be at work to receive the package. 
Fri Nov 20 19:27:32 2009 [dchat] Cratylus@Dead Souls Dev: there's orange peel in it 
Fri Nov 20 19:28:10 2009 [dchat] Fizban@Dead Souls Dev: what's wrong with that crat? Or nthing and that's just a random fact for the day? 
Fri Nov 20 19:28:25 2009 [dchat] Cratylus@Dead Souls Dev: random fact 
Fri Nov 20 19:28:53 2009 [dchat] Fizban@Dead Souls Dev: Thought so as hmm, was pretty sure orange peel is actually healthier than the rest of the orange IIRC 
Fri Nov 20 19:29:21 2009 [dchat] Cratylus@Dead Souls Dev: in the sense that you can't digest most of it, yep 
Fri Nov 20 19:29:59 2009 [dchat] Fizban@Dead Souls Dev: Hmm, thought oranges were one of the fruits they suggested juicing because the skin was actually healthy, no? 
Fri Nov 20 19:30:19 2009 [dchat] Cratylus@Dead Souls Dev: they suggest a lot of things 
Fri Nov 20 19:30:54 2009 [dchat] Wodan@Discworld: moderate amounts of alcohol are good for your heart 
Fri Nov 20 19:31:32 2009 [dchat] Cratylus@Dead Souls Dev: therefore more is gooder 
Fri Nov 20 19:31:42 2009 [dchat] Wodan@Discworld: sounds logical 
Fri Nov 20 19:31:50 2009 [dchat] Wodan@Discworld looks for the beer 
Fri Nov 20 19:32:06 2009 [dchat] Cratylus@Dead Souls Dev: 2 hours and 29 minutes to boozetime for me 
Fri Nov 20 19:32:36 2009 [dchat] Cratylus@Dead Souls Dev: not that i'm counting 
Fri Nov 20 19:32:42 2009 [dchat] Cratylus@Dead Souls Dev: or anything like that 
Fri Nov 20 19:32:46 2009 [dchat] Wodan@Discworld: of course not 
Fri Nov 20 19:33:56 2009 [dchat] Fizban@Dead Souls Dev: :( 
Fri Nov 20 19:34:22 2009 [dchat] Fizban@Dead Souls Dev: 26 days till boozetime, I'm not counting either :( 
Fri Nov 20 19:34:44 2009 [dchat] Wodan@Discworld: that seems like a long time! 
Fri Nov 20 19:35:10 2009 [dchat] Fizban@Dead Souls Dev: actually, that's a bold lie, I have a hangover right now, but 26 days till 21st birthday, so that long till legal boozetime 
Fri Nov 20 19:35:17 2009 [dchat] Hamlet@WWC-west: he list his booze and the detective agency he employed only promised results within 30 days. 
Fri Nov 20 19:35:26 2009 [dchat] Hamlet@WWC-west: er, lost 
Fri Nov 20 19:36:31 2009 [dchat] Fizban@Dead Souls Dev: yeah cheeky bastards probably foundmy absinthe, drink it, then 30 days ater inform me they foundempty bottles 
Fri Nov 20 19:36:37 2009 [dchat] Cratylus@Dead Souls Dev: i used LPC at work today 
Fri Nov 20 19:37:15 2009 [dchat] Hamlet@WWC-west: that's what happens when you hire a bargain agency. 
Fri Nov 20 19:37:26 2009 [dchat] Cratylus@Dead Souls Dev: there's a ton of these files filled with huge amounts of data, and it had to be put into a spreadsheet, and doing it by hand would have taken weeks 
Fri Nov 20 19:37:34 2009 [dchat] Cratylus@Dead Souls Dev: and i dunno perl or whatev 
Fri Nov 20 19:37:51 2009 [dchat] Cratylus@Dead Souls Dev: so i coded up a lil lpc object to parse it all and spit out csv 
Fri Nov 20 19:38:18 2009 [dchat] Hamlet@WWC-west: perl is well-suited for that.  lpc is certainly better than by hand, though! 
Fri Nov 20 19:38:35 2009 [dchat] Cratylus@Dead Souls Dev: yeah it wuda taken me all day to figure out the perl, i dunno it at all 
Fri Nov 20 19:39:01 2009 [dchat] Cratylus@Dead Souls Dev: but lpc is pretty good for manipulating text 
Fri Nov 20 19:39:12 2009 [dchat] Hamlet@WWC-west: indeed. 
Fri Nov 20 19:41:08 2009 [dchat] Wodan@Discworld: oh no, they'll expect you to write code now! 
Fri Nov 20 19:41:37 2009 [dchat] Cratylus@Dead Souls Dev: already been doin all sortsa scripts for this project 
Fri Nov 20 19:41:41 2009 [dchat] Cratylus@Dead Souls Dev: :( 
Fri Nov 20 19:42:10 2009 [dchat] Cratylus@Dead Souls Dev: i just hope they dont ask me how i got that data spreadsheeted so fast 
Fri Nov 20 19:42:23 2009 [dchat] Cratylus@Dead Souls Dev: "oh? what language?" 
Fri Nov 20 19:44:45 2009 [dchat] Hamlet@WWC-west: "ohhh, this virtual machine thing.  the details are technical." 
Fri Nov 20 20:48:13 2009 [dchat] Kalinash@Fire and Ice: LOAD "*",8,1 
Fri Nov 20 20:49:42 2009 [dchat] Hellmonger@Trilogy: see sixty four 
Fri Nov 20 21:09:16 2009 [dchat] Sinistrad@Dead Souls Dev: see one twenty eight 
Fri Nov 20 21:28:26 2009 [dchat] Kalinash@Fire and Ice: Briss! 
Fri Nov 20 21:32:56 2009 [dchat] Sinistrad@Dead Souls Dev: Bressed Briss? 
Fri Nov 20 21:33:31 2009 [dchat] Cratylus@Dead Souls Dev: exactry 
Sat Nov 21 01:11:31 2009 [dchat] Tricky@Rock the Halo: I3 logs down for about an hour (or maybe less) for maintenance. Installing Apache 2.2.14 
Sat Nov 21 01:26:06 2009 [dchat] Tricky@Rock the Halo: OK, that was painless. Must be something wrong somewhere. (Back up by the way) 
Sat Nov 21 03:24:35 2009 [dchat] Hamlet@WWC-west: woo hoo!  new hard drive arrived. 
Sat Nov 21 03:24:59 2009 [dchat] Hamlet@WWC-west: unfortunately, I'm not sure I recognize this power connector. 
Sat Nov 21 03:27:10 2009 [dchat] Ideysus@ShadowMUDii ponders. 
Sat Nov 21 03:27:19 2009 [dchat] Ideysus@ShadowMUDii: What does it look like? 
Sat Nov 21 03:27:34 2009 [dchat] Cratylus@Dead Souls Dev: does it have like a little L shape? 
Sat Nov 21 03:34:20 2009 [dchat] Hamlet@WWC-west: yeah. 
Sat Nov 21 03:34:32 2009 [dchat] Ideysus@ShadowMUDii: Its not just a SATA power connector? 
Sat Nov 21 03:34:54 2009 [dchat] Ideysus@ShadowMUDii: I suppose Hamlet may have been living under a rock. :-) 
Sat Nov 21 03:35:14 2009 [dchat] Hamlet@WWC-west: well, probably?  My computer is a little (*cough*) outdated.  I have a place to connect SATA ribbon, of course, or I wouldn't have bought the drive. 
Sat Nov 21 03:35:20 2009 [dchat] Hamlet@WWC-west: power connector, though?  no. 
Sat Nov 21 03:35:46 2009 [dchat] Hamlet@WWC-west: I assume they sell adapters... 
Sat Nov 21 03:35:48 2009 [dchat] Ideysus@ShadowMUDii: You can get a molex-sata power adaptor for a couple of pounds 
Sat Nov 21 03:35:49 2009 [dchat] Hamlet@WWC-west: dammit. 
Sat Nov 21 03:36:06 2009 [dchat] Hamlet@WWC-west: yes, but I have a NEWewEWewEW hard drive!  And nothing to use it with! 
Sat Nov 21 03:36:18 2009 [dchat] Ideysus@ShadowMUDii: Solder wires on? :-) 
Sat Nov 21 03:36:24 2009 [dchat] Cratylus@Dead Souls Dev: they usually come with an aapter 
Sat Nov 21 03:36:37 2009 [dchat] Cratylus@Dead Souls Dev: u musta bought the "bare drive" rather than the kit 
Sat Nov 21 03:36:38 2009 [dchat] Tricky@Rock the Halo: Not if it is OEM 
Sat Nov 21 03:37:27 2009 [dchat] Ideysus@ShadowMUDii: I dunno. Almost everything has sata power connectors now. And I'm saying this as somebody who only ever touches secondhand equipment. 
Sat Nov 21 03:40:53 2009 [dchat] Hamlet@WWC-west: yeah.  bare drive.  cheap cheap. 
Sat Nov 21 03:40:57 2009 [dchat] Hamlet@WWC-west: and came AMAZINGLY fast. 
Sat Nov 21 03:41:20 2009 [dchat] Hamlet@WWC-west: this machine is, uh, at least 5 years old. 
Sat Nov 21 03:55:31 2009 [dchat] Hamlet@WWC-west: yep.  pretty sure I have a drive, data ribbon, and no way to power it. 
Sat Nov 21 03:56:06 2009 [dchat] Kalinash@Fire and Ice: a data ribbon? is that like a tholian web? 
Sat Nov 21 03:56:19 2009 [dchat] Hamlet@WWC-west: probably not? 
Sat Nov 21 03:57:29 2009 [dchat] Hamlet@WWC-west: hmmm.  the old hard drive is making ominous syncing noises. 
Sat Nov 21 03:58:54 2009 [dchat] Kalinash@Fire and Ice: remember the old winchester drives that you had to park the heads on before you turned them off? 
Sat Nov 21 03:59:34 2009 [dchat] Hamlet@WWC-west: only vaguely.  *my* first hard drive didn't have that issue.  but friends had ones. 
Sat Nov 21 04:00:13 2009 [dchat] Kalinash@Fire and Ice: the first hard drive that owned personally was a 20Meg HD on a card thing for the Tandy 1000 TX 
Sat Nov 21 04:00:49 2009 [dchat] Hamlet@WWC-west: mine was a 40 meg on a 286.  the C=64 before that only had a tape drive. 
Sat Nov 21 04:00:51 2009 [dchat] Kalinash@Fire and Ice: i now have files that are larger than 20meg 
Sat Nov 21 04:01:37 2009 [dchat] Kalinash@Fire and Ice: i still have some of my old 8-bit systems that hafe tape drives :) 
Sat Nov 21 04:03:08 2009 [dchat] Hamlet@WWC-west: I have a couple at&t 3b2's in storage.  I wonder if they will even boot. 
Sat Nov 21 04:03:14 2009 [dchat] Hamlet@WWC-west: unix with no virtual memory! 
Sat Nov 21 04:24:21 2009 [dchat] Hamlet@WWC-west growls . 
Sat Nov 21 04:24:32 2009 [dchat] Hamlet@WWC-west: apparently you can't buy a power adapter at a local store. 
first << < 200 201 202 203 204 205

Go to the top | Channel Index