Search found 594 matches
- Mon Apr 02, 2012 1:00 pm
- Forum: Programming Discussion
- Topic: Quick .Net Reflection question
- Replies: 13
- Views: 4148
Re: Quick .Net Reflection question
Is there a reason you cannot just update the entire assembly (keeping the interface the same) when you do an update rather than relying on reflection. Maybe it's because we don't have all the details but I can't see why you would use reflection.
- Mon Apr 02, 2012 12:51 pm
- Forum: General/Off-Topic
- Topic: forum theme
- Replies: 13
- Views: 4680
Re: forum theme
Mmmmm, this new theme is nice... I approve!
- Mon Oct 17, 2011 1:11 pm
- Forum: General Gaming
- Topic: you first video game console?
- Replies: 28
- Views: 39996
Re: you first video game console?
Sega Mega Drive (Genesis) in 1991. God I loved that thing...
- Sun Oct 09, 2011 9:06 am
- Forum: General/Off-Topic
- Topic: Are you addicted to programming?
- Replies: 9
- Views: 3507
Re: Are you addicted to programming?
LOL got the same.treyrust wrote:http://www.takefunquizzes.com/are-you-a ... rogramming
Got a "Whoa! You are addicted to programming. And seem to be proud of that fact." Very accurate :p
- Thu Aug 11, 2011 6:58 am
- Forum: Programming Discussion
- Topic: The Demise of the Low-Level Programmer
- Replies: 29
- Views: 7320
Re: The Demise of the Low-Level Programmer
I agree with pretty much all your points qp. I think that as a learning tool assembly helps you write better high level code. You said that hardware knowledge is essential, i couldn't agree more but I think that assembly is the best way to quickly learn about hardware. Plus it gives you an appreciat...
- Wed Aug 10, 2011 3:46 am
- Forum: Programming Discussion
- Topic: The Demise of the Low-Level Programmer
- Replies: 29
- Views: 7320
Re: The Demise of the Low-Level Programmer
If your only starting out in assembly a good introduction book is Assembly Language Step by Step Programming with Linux by Jeff Duntemann. He doesn't even go into assmbly syntax for the first 200 pages because he explains memory models and cpu architechture first. I think this is a great approach be...
- Tue Aug 09, 2011 5:03 pm
- Forum: Programming Discussion
- Topic: The Demise of the Low-Level Programmer
- Replies: 29
- Views: 7320
Re: The Demise of the Low-Level Programmer
Nowadays most programmers barely touch assembly. I think this is true and it's a god damn shame. I really enjoy assembly programming. I may not use it much in large projects, but at least once every couple of weeks I sit down and write some assembly just to keep myself from getting rusty. It might ...
- Sat Aug 06, 2011 5:47 am
- Forum: General/Off-Topic
- Topic: Starting on electrical projects
- Replies: 28
- Views: 8581
Re: Starting on electrical projects
God damn right he is, that's freaking awesome! I wouldn't mind having a bash at making a console myself when I get the time.GyroVorbis wrote:This guy is a badass.
- Fri Aug 05, 2011 9:54 am
- Forum: Game Development
- Topic: ATMega32 Project
- Replies: 6
- Views: 3176
Re: ATMega32 Project
Ha, that's cool man!
- Fri Aug 05, 2011 3:02 am
- Forum: General Gaming
- Topic: Falco's Biweekly Game Purchases
- Replies: 74
- Views: 75696
Re: Falco's Biweekly Game Purchases
Of course you did. Better to enjoy them than have them factory sealed and valuable IMO.GyroVorbis wrote:of course I had to open them in my excitement...
- Fri Jul 29, 2011 10:04 am
- Forum: Programming Discussion
- Topic: My Own Lua Graphics Thing
- Replies: 29
- Views: 5362
Re: My Own Lua Graphics Thing
I had no idea luajit was so... awesome! That's damn nice.
- Wed Jul 27, 2011 5:31 am
- Forum: General/Off-Topic
- Topic: Capital W-T-F
- Replies: 5
- Views: 2314
Re: Capital W-T-F
Dear God, this is mad, what a load of balls!
- Mon Jul 11, 2011 5:49 am
- Forum: Game Development
- Topic: Minecraft remake- Crafter
- Replies: 129
- Views: 43338
Re: Minecraft remake- Crafter
I was thinking of doing the same once I learnt OpenGL, too bad you bet me to it haha. Would've taken me ages to get to that stage anyways, but either way grand job :D If I'm going to do better than Notch, someone needs to do better than me ;) I don't know about better, but I'll ante up different. W...
- Fri Jul 08, 2011 4:05 pm
- Forum: Programming Discussion
- Topic: C++ boost alternitive.
- Replies: 7
- Views: 2138
Re: C++ boost alternitive.
You need to add the lib folder to your library files (similar to Include Directories). Then you need to go into your linker options for the project and add the actual lib files to your additional dependencies. I went to the file but I did not see a single .lib or .dll in there 0.0 Which boost libs ...
- Fri Jul 08, 2011 5:02 am
- Forum: Programming Discussion
- Topic: C++ boost alternitive.
- Replies: 7
- Views: 2138
Re: C++ boost alternitive.
Why do you need to use boost::any? You can probably achieve the same result using a different way. It sounds to me like he's asking what that "different way" is. And if you got runtime errors, then you probably didn't install boost correctly. I say reinstall it, so you learn how to correc...