Since 4/3/2012 7:42:37 AM, jbieger has written 6 articles and participated in 11 conversations. jbieger signature: jbieger
jbieger's articles:
Items(6) /1
Problem with copying array1122 (12/24/2007 3:18:53 PM) comp.lang.ruby Hi, I'm a total newbie with Ruby and I was trying to make this function that would get a (multidimensional) array, make a copy, make some changes to the copy and then return the copy, without altering the origi... jbieger
inheritance - public, private, protected?618 (6/28/2006 7:58:14 PM) comp.lang.c++ I was wondering, in C++ the syntax for inheritance is basically this: class Descendant : public Parent { .... }; Can someone tell me what would happen when I would replace 'public' by 'private' or 'protected'?... Jordi
Weird output when using more samples (help)026 (6/27/2006 10:01:22 PM) comp.lang.c I'm making a feature-file to train a Neural Network, but now that I've added a new feature, the output becomes corrupted. The output is as follows: 3000 25 1_002858 5 0 0 0 0 2 2 0 0 0 0 2 2 0 0 0 0 0 4 0 0 0 0... Jordi
Alternative to system("pause");?41086 (6/27/2006 12:39:56 AM) comp.unix.programmer Is there a UNIX alternative to using system("pause");, which pauses a program on Windows computers while prompting "Press any key to continue..." or something like that? ... jbieger
C sucks at math? (help)2474 (6/27/2006 12:21:39 AM) comp.lang.c I have made a little C program that generates the following output: 227.000000 / 5 = 45.400002 Here's the code: int main (int argc, char* argv[]) { float var = 227; printf("%f / 5 = %f\n", var, var / 5); re... Jordi
Singleton class scope problem1025 (5/19/2005 1:14:09 PM) comp.lang.php On my site I want to make two classes. One that can be instantiated normally and one with extended functionality that can only be instantiated once. The Singleton pattern thus seems like a logical choice for th... jbieger
jbieger's replies:
Items(6) /1
Singleton class scope problem1025 (5/19/2005 1:14:09 PM) comp.lang.php On my site I want to make two classes. One that can be instantiated normally and one with extended functionality that can only be instantiated once. The Singleton pattern thus seems like a logical choice for th... jbieger(17)
Will php ever do strong typing?5318 (5/23/2005 10:33:58 PM) comp.lang.php Will php 6 do strong typing and/or namespaces? I was shocked to find out today that there are some people who actually argue that weak typing is somehow better. I didn't even know there was a debate. Shocki... dterrors(113)
C sucks at math? (help)2474 (6/27/2006 12:21:39 AM) comp.lang.c I have made a little C program that generates the following output: 227.000000 / 5 = 45.400002 Here's the code: int main (int argc, char* argv[]) { float var = 227; printf("%f / 5 = %f\n", var, var / 5); re... jbieger(17)
inheritance - public, private, protected?618 (6/28/2006 7:58:14 PM) comp.lang.c++ I was wondering, in C++ the syntax for inheritance is basically this: class Descendant : public Parent { .... }; Can someone tell me what would happen when I would replace 'public' by 'private' or 'protected'?... jbieger(17)
Problem with copying array1122 (12/24/2007 3:18:53 PM) comp.lang.ruby Hi, I'm a total newbie with Ruby and I was trying to make this function that would get a (multidimensional) array, make a copy, make some changes to the copy and then return the copy, without altering the origi... jbieger(17)