code logs -> 2008 -> Fri, 18 Jul 2008< code.20080717.log - code.20080719.log >
--- Log opened Fri Jul 18 00:00:46 2008
02:33 gnolam [lenin@Nightstar-2037.A163.cust.bahnhof.se] has quit [Quit: Z?]
02:34 Thaqui [~Thaqui@Nightstar-16814.jetstream.xtra.co.nz] has joined #code
02:34 mode/#code [+o Thaqui] by ChanServ
03:09 Attilla [~The.Attil@92.9.153.ns-3442] has quit [Quit: <Insert Humorous and/or serious exit message here>]
06:56 AnnoDomini [AnnoDomini@Nightstar-28939.neoplus.adsl.tpnet.pl] has joined #Code
06:56 mode/#code [+o AnnoDomini] by ChanServ
07:03 McMartin [~mcmartin@Nightstar-6034.dsl.pltn13.sbcglobal.net] has quit [Operation timed out]
08:07 McMartin [~mcmartin@Nightstar-7504.dsl.pltn13.sbcglobal.net] has joined #code
08:07 mode/#code [+o McMartin] by ChanServ
08:43 Vornicus-Latens is now known as Vornicus
08:53 You're now known as TheWatcher
10:23
<@Reiver>
Does anyone know a way to tell a machine to scan a range of internal IPs?
10:23
<@Reiver>
We have mac & windows, any command will do >_>
10:24
<@Vornicus>
Scan how?
10:24
<@Reiver>
We want to ping a range of IPs so I can bloody well find the wireless access point.
10:25
<@Vornicus>
ah. ping 192.168.1.255 , or something similar. What's /your/ IP?
10:26
<@Reiver>
192.168.0.something
10:26
<@Reiver>
What I want is a 192.168
10:26
<@Reiver>
What I want is a 192.168.1.No_idea
10:26
<@Vornicus>
okay, so, 192.168.255.255
10:26
<@Reiver>
Yeah, it doesn't respond to that - a lot of devices don't.
10:27
<@Vornicus>
gner.
10:27
<@Vornicus>
Idunno. Broadcast is how I'd do it. Use for to change up the ips?
10:28
<@Reiver>
??
10:28
<@Vornicus>
Use a for loop to cycle through the possible IPs.
10:28
<@Vornicus>
It's probably 192.168.1.1 though
10:44 Myst [~Myst@Nightstar-29731.dsl.in-addr.zen.co.uk] has quit [Connection reset by peer]
11:23 Attilla [~The.Attil@92.9.153.ns-3442] has joined #code
11:23 mode/#code [+o Attilla] by ChanServ
11:27 AnnoDomini [AnnoDomini@Nightstar-28939.neoplus.adsl.tpnet.pl] has quit [Ping Timeout]
11:33 AnnoDomini [AnnoDomini@Nightstar-29179.neoplus.adsl.tpnet.pl] has joined #Code
11:33 mode/#code [+o AnnoDomini] by ChanServ
11:59 Thaqui [~Thaqui@Nightstar-16814.jetstream.xtra.co.nz] has left #code [Leaving]
13:52 gnolam [lenin@Nightstar-2037.A163.cust.bahnhof.se] has joined #Code
13:52 mode/#code [+o gnolam] by ChanServ
14:06
<@ToxicFrog>
Alternately, use nmap
14:21
< Shoukanjuu>
Everything I say is a lie.
14:25
<@AnnoDomini>
There are no computers here.
14:29
<@gnolam>
Shoukanjuu: even the cake?
14:32
< Shoukanjuu>
Just making sure, AD.
14:32
< Shoukanjuu>
You can *never* be too sure.
14:33
<@AnnoDomini>
.
14:33
<@AnnoDomini>
What good will this method bring you?
14:34
< Shoukanjuu>
That sounds like something a computer would ask. Especially one that has precautions built in for self referencing paradox.
14:35
<@AnnoDomini>
I'm sure.
14:36
< Shoukanjuu>
You take the fun out of being paranoid. You know this, right?
14:37
<@AnnoDomini>
Paranoia is not for fun. It's a survival trait.
14:37
< Shoukanjuu>
I finished GitS:SAC yesterday
14:37
< Shoukanjuu>
Survival is fun .-.
14:38
<@AnnoDomini>
Gitsack. That'd make a good expletive.
14:39
< Shoukanjuu>
Perhaps.
14:40
< Shoukanjuu>
Either way, 'twas a good batch of anime. It feels good to know that, with the horrible stuff coming out nowadays, there are still things to fall back on.
14:41
< Shoukanjuu>
That said, there are too many H-game-turned-non-H-content-animes out. Not only that, but for some reason, they are appealing to a younger audience :/
14:42
< Shoukanjuu>
With my extra time, now that I've not much to do, I've also dipped into python again
14:43
< Shoukanjuu>
With the stuff everyone, Vorn and McMartin, especially, walked me through, I have enough to just run with documentation o:
14:44
<@Vornicus>
Wootcake!
14:45
< Shoukanjuu>
Maybe after I pass out, though. My internal clock seems to be based in Taiwan, currently.
14:45
<@Vornicus>
heh
14:48 * Vornicus is currently writing a patch for Python.
14:48
< Shoukanjuu>
I've heard.
14:48
<@Vornicus>
Well, in between racing random vehicles around Vice City.
14:49
< Shoukanjuu>
You said the other day, which I'm fairly sure was yesterday, that you were turned down once because of something not working correctly in a certain circumstance?
14:49
< Shoukanjuu>
Heheh
14:49
<@Vornicus>
Yeah, something like that.
14:50
<@Vornicus>
What is happening is this: my previous patch was rejected primarily because certain functions are called more often than they should be, when taken over a large number of calls, which is the most common way of using this.
14:50
<@Vornicus>
well, a certain function.
14:51
<@Vornicus>
See, it's like this: when you sort something, you can pass in a function to list.sort or sorted called "key" - this function is then called on every item in the list exactly once, and the results of these calls are used to sort the list.
14:52
< Shoukanjuu>
Yeah.
14:52
<@Vornicus>
With my current version of bisect, things in the list can get key called on them many times, because i can't cache the results because the key function is not the same one every time.
14:53
< Shoukanjuu>
Ahh.
14:53
<@Vornicus>
Yeah.
14:53
<@Vornicus>
So what I'm working on instead is creating a SortedList class, which maintains sorted order.
14:54
< Shoukanjuu>
good luck with that.
14:54
<@Vornicus>
Fortunately I know how to do this.
14:55
< Shoukanjuu>
\o/
14:56
<@Vornicus>
I don't know how to do it in C so it works in Python, but that's what throwing it at the larger Python-Dev community is for.
14:58
< Shoukanjuu>
Definitely :D
16:56 ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has quit [Operation timed out]
16:59 ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has joined #code
16:59 mode/#code [+o ToxicFrog] by ChanServ
18:42
<@gnolam>
Hmm. Anyone know which way the axes are oriented in SVG?
18:46
<@gnolam>
Screen-oriented, apparently.
18:51
<@gnolam>
Oh well. I'll just have to remember to flip my models before conversion.
19:39
< Doctor_Nick>
i feel asleep
19:46
<@McMartin>
Ahaha
19:46
<@McMartin>
http://img.thedailywtf.com/images/200807/errord/error.aspx.png
21:03
<@gnolam>
Hmm. More features or code cleanup. That is the question.
21:05 * AnnoDomini thinks he'll get some more carpal tunnel in Diablo 2 now.
21:09
<@jerith>
Cleanup.
21:09
<@jerith>
Test.
21:09
<@jerith>
(That's all I've been doing for the last month.)
21:32 Syloqs-AFH [Syloq@Admin.Nightstar.Net] has quit [Connection reset by peer]
21:46
<@gnolam>
Option 3: independent testing.
21:49 Syloq [Syloq@Admin.Nightstar.Net] has joined #code
21:50 Syloq is now known as Syloqs-AFH
--- Log closed Sat Jul 19 00:00:56 2008
code logs -> 2008 -> Fri, 18 Jul 2008< code.20080717.log - code.20080719.log >