code logs -> 2009 -> Fri, 19 Jun 2009< code.20090618.log - code.20090620.log >
--- Log opened Fri Jun 19 00:00:14 2009
00:51 UndeadAnno [AnnoDomini@Nightstar-29030.neoplus.adsl.tpnet.pl] has quit [Quit: Reading is tech.]
01:24 gnolam [lenin@Nightstar-1382.A163.priv.bahnhof.se] has quit [Quit: Z?]
01:30 ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has quit [Operation timed out]
01:31 SmithK [~Smith@Nightstar-5161.dsl.teksavvy.com] has quit [Ping Timeout]
01:38 SmithK [~Smith@Nightstar-9316.dsl.teksavvy.com] has joined #code
01:38 ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has joined #code
01:38 mode/#code [+o ToxicFrog] by ChanServ
02:48 SmithK [~Smith@Nightstar-9316.dsl.teksavvy.com] has quit [Operation timed out]
02:49 ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has quit [Ping Timeout]
02:50 Vornicus is now known as Vornicus-Latens
03:24 SK [~Smith@Nightstar-5728.dsl.teksavvy.com] has joined #code
03:24 ToxicFrog [~ToxicFrog@Admin.Nightstar.Net] has joined #code
03:24 mode/#code [+o ToxicFrog] by ChanServ
04:55 Reiv [~Orthianz@Nightstar-8852.xdsl.xnet.co.nz] has joined #Code
05:04 * McMartin is Bane of QA
05:05
< Reiv>
McM: You bring bad news?
05:06
<@McMartin>
"Hey guys, you're already massively overworked for this release but I actually finished one of the prototype features product management wanted. Have another batch of tests~"
05:12
<@McMartin>
Important side note: We're shipping in like two weeks~
05:12 * McMartin strongly suspects QA will reply with "no, we don't pass it, this goes in next time"
06:04 Syloqs-AFH [Syloq@ServicesAdmin.Nightstar.Net] has quit [Connection reset by peer]
06:19 crem_ [~moo@Nightstar-28703.adsl.mgts.by] has quit [Connection reset by peer]
06:19 crem [~moo@Nightstar-28703.adsl.mgts.by] has joined #code
06:19 Thaqui [~Thaqui@121.98.166.ns-22683] has joined #code
06:20 mode/#code [+o Thaqui] by ChanServ
06:56 Vornicus-Latens is now known as Vornicus
07:12 crem_ [~moo@Nightstar-28703.adsl.mgts.by] has joined #code
07:13 crem [~moo@Nightstar-28703.adsl.mgts.by] has quit [Ping Timeout]
07:27 Derakon is now known as Derakon[AFK]
08:18 UndeadAnno [AnnoDomini@Nightstar-29030.neoplus.adsl.tpnet.pl] has joined #Code
08:19 mode/#code [+o UndeadAnno] by ChanServ
09:18 Rhamphoryncus [~rhamph@Nightstar-7168.ed.shawcable.net] has quit [Quit: Rhamphoryncus]
10:02 You're now known as TheWatcher
10:03 * TheWatcher readsup
10:03
<@TheWatcher>
If they do reply with that, McM, then I owe your QA team a beer, because they're actually doing their job properly
10:04
<@TheWatcher>
Which, these days, seems to be a fucking miracle
10:23
<@Vornicus>
Garg. Hate hate hate.
10:24
<@TheWatcher>
What's up, vorn?
10:27
<@Vornicus>
Trying to design stuff for Vornball and it's devastatingly clear that I've never written anything that stays around before.
10:32
<@Vornicus>
So it's an uphill battle on every front.
10:34
<@McMartin>
TW: Well, it's that or "yeah, we have time to run the workflows". It'll depend on how many iterations the rest of it needs.
10:51 gnolam [lenin@Nightstar-1382.A163.priv.bahnhof.se] has joined #Code
10:51 mode/#code [+o gnolam] by ChanServ
10:58
<@TheWatcher>
McM: Still, a QA team that doesn't go, "Oh, management wanted it? Sure, that's in there!!" seems to be a rare thing
11:03
<@McMartin>
It is unquestionable that our QA department is awesome.
11:04
<@McMartin>
(For that matter, so is PM)
11:11 * simontwo just handed in the his last exam. woohoo.
11:11
< simontwo>
s/the //
12:39
<@gnolam>
Congratulations.
13:52 Thaqui [~Thaqui@121.98.166.ns-22683] has quit [Client exited]
14:47 AbuDhabi [AnnoDomini@Nightstar-29168.neoplus.adsl.tpnet.pl] has joined #Code
14:47 UndeadAnno [AnnoDomini@Nightstar-29030.neoplus.adsl.tpnet.pl] has quit [Ping Timeout]
16:06 Syloqs_AFH [Syloq@Admin.Nightstar.Net] has joined #code
16:07 Syloqs_AFH is now known as Syloqs-AFH
16:15 gnolam [lenin@Nightstar-1382.A163.priv.bahnhof.se] has quit [Quit: Pagan rites.]
16:23
< Tarinaky>
Okay. I really don't understand why this is giving me trouble q.q
16:26
< Tarinaky>
So I'm trying to build a double linked list in C++. I'm using malloc to allocate the memory for one of the fields but for some reason I can't work out the string in the field doesn't work. When I inspect it in my debugger it's 'address out of bounds'. But the pointers and even the other variable in there is fine.
16:26
< Tarinaky>
I had this working yesterday with as far as I remember the same code and I'm really at a loss to work out why it doesn't like me today.
16:40
<@TheWatcher>
For one, why are you using malloc in c++?
16:40
<@TheWatcher>
for two, if you've got something like
16:41
<@TheWatcher>
typedef struct node { struct node *prev; struct node *next; char *strptr } Node;
16:41
<@TheWatcher>
then doing Node newnode = (Node *)malloc(sizeof(Node)); will just get you the space, with the contents set to random junk
16:42
<@TheWatcher>
you'#ll also need something like
16:42
<@TheWatcher>
newnode -> strptr = (char *)malloc(strlen(addstring) + 1); strcpy(newnode -> strptr, addstring);
16:42
<@TheWatcher>
to copy the string in
16:43
<@TheWatcher>
But, still
16:43
< Tarinaky>
I didn't know malloc got replaced.
16:44
<@TheWatcher>
You need to do a lot of reading up on c++ then.
16:44
<@TheWatcher>
given that new and delete are kinda vital to the whole concept
16:45
< Tarinaky>
I would but somebody stole my damn book >.>
16:45 * TheWatcher points at the intertubes
16:48
< Tarinaky>
Thanks.
17:03
<@ToxicFrog>
Crash introduction: Node newnode = new Node(); int * array = new int[size]; delete newnode; delete[] array;
17:03
<@ToxicFrog>
Note that for arrays you must use delete[] and not delete.
17:03
<@ToxicFrog>
In conclusion, fuck C++~
17:22 Rhamphoryncus [~rhamph@Nightstar-7168.ed.shawcable.net] has joined #code
17:48 Derakon[AFK] is now known as Derakon
18:52
< Tarinaky>
I'm not sure if this is a code or a math problem, but can anyone tell me what o1 in "If the token is an operator, o1" means?
18:53
< Tarinaky>
I think the 1 is meant to be subscripted, but it's a little hard to see.
19:05
< Tarinaky>
Oh! I see what it meant. *facepalms*
20:04 bnb [~bnb@195.112.220.ns-3152] has joined #code
20:04 bnb [~bnb@195.112.220.ns-3152] has left #code []
21:11
<@Vornicus>
It's naming the symbol o_1.
21:33 * Derakon eyes this job: http://tinyurl.com/mj6e58
21:34
<@Derakon>
The listed skill requirements are a bit enh...
23:11 Myst [~Myst@Nightstar-29731.dsl.in-addr.zen.co.uk] has left #code []
23:18 You're now known as TheWatcher[T-2]
23:22 MyCatVerbs [~mycatverb@Nightstar-13709.lurkingfox.co.uk] has quit [Connection reset by peer]
23:28 You're now known as TheWatcher[zZzZ]
--- Log closed Sat Jun 20 00:00:29 2009
code logs -> 2009 -> Fri, 19 Jun 2009< code.20090618.log - code.20090620.log >