It doesn't make this falsedeps wrote:iirc, it was Linus Torvalds who said it.2. One guru-programmer said that if you write your best code then you, by definition, has not enough skill to debug it. (it means also "to assess" it )
Search found 35 matches
- Mon Mar 01, 2004 1:25 pm
- Forum: Project Announcements
- Topic: Centaur Force
- Replies: 41
- Views: 14418
- Fri Feb 27, 2004 12:39 pm
- Forum: Beginners Help
- Topic: DevC++ / VC6 :: WinMain() Hell?
- Replies: 18
- Views: 3364
- Tue Feb 24, 2004 1:14 pm
- Forum: Beginners Help
- Topic: DevC++ / VC6 :: WinMain() Hell?
- Replies: 18
- Views: 3364
Ok :) 2Liquidream : Couple advices to a great supplier :) (really, no offence) What I would do in such situation 1. I'm pretty sure that your program's entry point is not WinMain function, but you can debug it (set breakpoint in the very beginning of your WinMain function and check if program goes t...
- Mon Feb 23, 2004 4:29 pm
- Forum: Beginners Help
- Topic: DevC++ / VC6 :: WinMain() Hell?
- Replies: 18
- Views: 3364
If you're a little newbie with C++ and have access to MSVC then use it. And don't be so rude to call it M$ cause anyway atleast it's the best Development Environment for C++ today. BTW, you don't give any chance o DevC++ by using it instead of MSVC cause they are not even competitiors and never will...
- Mon Feb 23, 2004 3:47 pm
- Forum: Project Announcements
- Topic: Centaur Force
- Replies: 41
- Views: 14418
Robomaniac: it's a kind of storming - I know this. A little advice: think a lot before write a single line of code. No offence it really helps. I mean, firtst try to determine how your project will look like: 1. Technical tasks. 2. GUI (according to 1) 3. Development stuff... Development stuff doesn...
- Mon Feb 23, 2004 3:20 pm
- Forum: FAQs, Tutorials, Howtos, and external tool lists
- Topic: Howto: Resolution Independent GUIs
- Replies: 7
- Views: 12650
I think that the way of rt is better mainly because of one simple reason: Saigumi has to change his wrapper every time new function appears in the ISceneManager intereface, but rt doesn't ;) P.S.: just a mall not for Saigumi: I hope you posted here not your code but just an example from your mind ca...
- Mon Feb 23, 2004 1:56 pm
- Forum: Advanced Help
- Topic: Any way to detect colision when it happens?
- Replies: 2
- Views: 881
- Fri Feb 20, 2004 5:57 pm
- Forum: Beginners Help
- Topic: EventReceiver question
- Replies: 8
- Views: 815
2keless: I have MSDN - thank you. But if you have ever tested your code for meeteing any code style then you should know that almost all of them give exactly this situation as an example how you don't have to write your code ;) 2Guest: almost the same ;) it's always better to set brackets than do no...
- Fri Feb 20, 2004 12:12 pm
- Forum: Beginners Help
- Topic: Visual C++ Users - 0.5 update
- Replies: 8
- Views: 1041
- Fri Feb 20, 2004 12:03 pm
- Forum: Beginners Help
- Topic: Visual C++ Users - 0.5 update
- Replies: 8
- Views: 1041
yes, I agree, VA is good. But don't tell that VS is MUCH worse - you just have to know how to set it up with your own color scheme and so on. As about defines then VA shows them in tooltip and if they are long enough (which is very common case) it's not very useful... BTW, in VS you just need to pre...
- Fri Feb 20, 2004 10:43 am
- Forum: Beginners Help
- Topic: EventReceiver question
- Replies: 8
- Views: 815
no. it useless cause 'break' breaks switch :) 1. I would recommend you ALWAYS use brackets when you are not sure about operators precedence. I have 7 years experience in C/C++ but I'm not sure which one is the first - 'comparison' or 'logical and'. Of course, you can use help but this makes your cod...
- Thu Feb 19, 2004 4:47 pm
- Forum: Advanced Help
- Topic: 0.5 bug report
- Replies: 13
- Views: 2850
BTW, there is one more obvious... with CGUIFileOpenDialog, actually with its ScrollBar... It doesn't calculate the size of the scroll thumb correctly until you don't move it. Initially it's always very thin. Try Userinterface demo. And one more: it's not a bug but a useful feature. It would be very ...
- Thu Feb 19, 2004 4:19 pm
- Forum: Advanced Help
- Topic: 0.5 bug report
- Replies: 13
- Views: 2850
- Thu Feb 19, 2004 1:07 pm
- Forum: Beginners Help
- Topic: Visual C++ Users - 0.5 update
- Replies: 8
- Views: 1041
- Thu Feb 19, 2004 1:03 pm
- Forum: Beginners Help
- Topic: dynamic resolution?
- Replies: 4
- Views: 683
0. Sorry for a long post:) 1. In Windows OS it is possible a little bad horrible terrible HACK (here and almost always when you'd like to do something with Irrlicht window). You can obtain window's HWND indirectly (e.g. by calling ::FindWindow function). And then you can send messages to this window...