Intel sponsors gamedev.net search:   
[Control Panel] [Register] [Bookmarks] [Who's Online] [Active Topics] [Stats] [FAQ] [Search]


Get to know nullsquared...  
Full Name null squared
Nickname nullsquared 
State/Province, Country New York
Contact Info
Homepage URL  
ICQ ID  
AIM ID  
Yahoo IM ID  
Current Occupation
Job Title 10th Grade Student 
Job Description I do homework and what-not, and I program in free-time. 
Other Interesting Details
Rating 890  (Rate this user)
Number Of Posts
In our forums
2116  
Member Since 9/1/2005 10:58:47 AM
ContributionsContact Us if a contribution of yours isn't listed
Send a Private Message to this user...

Some recent topics started on our forums
Disorder v0.08_alpha : Portals Version v0.08 of Disorder's portals. Why a new post? Because those two small 0.02 versions really changed a lot. - nicer "test level" - extremely smooth player transitions (it used to be jerky and you could see the wall when passing through - n... 
Posted November 11, 2007 2:15:19 PM
College courses and AP exams Hey guys I have a few questions for you this time: (background: USA, currently a sophomore in HS) 1) Does the AP Comp Sci exam actually mean anything to most good colleges? The AB exam used to be pretty comprehensive but now that they dropped AB... 
Posted January 29, 2010 8:26:22 AM
Linked lists are slow? Consider this code: #include <iostream> #include <list> #include <vector> int main() { std::list<int> nums; for (int i = 0; i < 1000; ++i) { nums.clear(); for (int j = 0; j < 500... 
Posted January 20, 2010 3:54:48 PM
Triangle order in VBOs Are triangles in a VBO guaranteed to be rendered in the order that they appear in the VBO? (and, assuming no Z-buffering, they would also visually appear in the same order) Or is there no such guarantee? I cannot find a source that says either po... 
Posted January 12, 2010 3:07:11 PM
A*/Dijkstra optimization I've recently gotten into path finding (especially via A* and Dijkstra's algorithm, which is essentially A* without a heuristic) and I find it very interesting and fun! My first implementation was extremely buggy and slow. I've gone to make it wo... 
Posted December 27, 2009 6:56:05 PM
Link to .exe Consider that foo.exe links to static library bar.lib. Can I now make baz.exe that uses functions from bar.lib by linking to foo.exe? AFAIK, if I know the addresses and signatures of functions in foo.exe, I can explicitly call them. But is the... 
Posted December 27, 2009 10:21:41 PM
Best SC++L Reference Book There's a competition that my school enters every year and we're allowed to bring a language reference book for every language we use. For Java we'll just bring whatever we brought last time, but what is a good reference book for C++? I'm mainly lo... 
Posted December 12, 2009 9:26:51 PM
Proving logarithm rules We're doing logarithms right now (grade 10 honours math, the US math curriculum goes incredibly slowly... but that's another topic), and one assignment was to prove logbx - logby = logbx/y This is what I did: logbx - logby = logbx/y let m =... 
Posted December 1, 2009 4:57:01 PM
Circular Breakout This is a little circular breakout game I wrote in the past 9 hours (from scratch). The screenshot is a little boring, but I didn't want to spoil the more interesting parts of the game [wink] clicky for download Details: - written in Ja... 
Posted November 28, 2009 10:20:26 PM
Field experts (not sure if this should be in the lounge since it relates to general programming) Today in AP Comp Sci (I'm a sophomore in a USA high school, 16 years old) we had a junior from college come talk to us about college (Stony Brook in his case) and p... 
Posted November 25, 2009 4:55:42 PM
View All Topics Started By This User

Some recent replies made on our forums
trying to solve encryption Things to note: 1) there are 3 numbers in decreasing order, then groups of 4 numbers in decreasing order 2) if you reverse each group of numbers, you get an increasing sequence 3) each 2 corresponding groups have the same sum for each 2 elements... 
Posted February 5, 2010 3:28:12 PM
do/while loops Quote:Original post by theOcelot I don't understand why that is even legal, and I'm not sure I want to. [sick] Essentially it uses the switch to jump into the do {} body and ask the user without complaining first, then the the actual do {} whil... 
Posted February 4, 2010 5:56:08 AM
do/while loops Quote:Original post by DevFred How about this one? :) (switch/loop interleaving magic) Newbie programmer: mind blown Intermediate programmer: mind blown Expert programmer: yup cool Grandmaster programmer: aaArRRgHHhhhHH wtffF!!?!... 
Posted February 3, 2010 8:27:27 PM
Check out my ray traced images Run your RT with a basic sphere centered dead-on in the middle (preferably unshaded, just white = sphere, black = background). It should look like a perfect circle even without AA, it shouldn't have those jaggies. See them? If you'd like to show u... 
Posted February 2, 2010 9:45:21 PM
Strict OO principles vs. speed Quote:Original post by Antheus Here is a nice problem of why "OO" (whatever that means) is problematic. Object-Oriented, nicely encapsulated linked list is 100 times slower than data-centric versions, despite doing exactly the same work. That d... 
Posted February 2, 2010 5:04:44 PM
A little confused by java Quote: Eh? awt stuff? Date? Calendar? These are all standard lib annoyances, Standard lib = part of language. Quote:just like the list's issue with sockets... These are all things that the C++ standard library doesn't even have. Yup. That's... 
Posted February 1, 2010 9:01:12 PM
A little confused by java Quote:Original post by Telastyn Right, I looked at that list, and it's next to useless since it's mostly problems that only exist if someone is coming from C/C++ No, actually, there are many issues regarding Java itself (i.e. the whole secon... 
Posted February 1, 2010 5:10:36 PM
A little confused by java Quote:Original post by Telastyn Mmhmm. How exactly is Java very broken compared to C#? There's one major issue I can think of, but that's not enough for me to make that qualification. Um, simply click on the link I previously posted... 
Posted February 1, 2010 4:32:02 PM
A little confused by java Quote:Original post by Telastyn They're also by and large a list of things C++ developers might be confused by when moving to Java, rather than Java failings (not that Java doesn't have a few). And to be honest, it's a far shorter list than C++ gotc... 
Posted February 1, 2010 3:47:12 PM
A little confused by java Quote:Original post by Fenrisulvur Quote:Original post by nullsquared You're completely right. But C# is not broken - you can write a proper swap() via generics and ref [wink] C++ has broken encapsulation, and you're worried about a swap idiom? &... 
Posted February 1, 2010 3:05:53 PM
View All Replies Made By This User