Forum: IT Professionals' Lounge Oct 13th, 2008 |
| Replies: 7 Views: 1,303 Yes, another person who is entertained, and not aggravated, by programming! =)
Always keep that perspective, no matter how hard it is to learn something! You'll find programming very fulfilling! =) |
Forum: IT Professionals' Lounge Sep 21st, 2008 |
| Replies: 6 Views: 1,385 Such a cold hear you have there X_X
UML is a wonderful language. I'm starting to get the hang of it! It's just hard as hell to study from an exam book with little prior knowledge @_@ |
Forum: IT Professionals' Lounge Sep 20th, 2008 |
| Replies: 12 Views: 2,342 AD provides a good suggestion. In fact, learning anything that is .NET compatible (C#, C++, ADO, VB, J#, etc) is advantageous. |
Forum: IT Professionals' Lounge Sep 17th, 2008 |
| Replies: 6 Views: 1,385 I've recently started studying the Unified Modeling Language.
I'm currently using an exam book as a study guide, because it presents features without holding back on information-representation at... |
Forum: IT Professionals' Lounge Sep 11th, 2008 |
| Replies: 12 Views: 1,823 I strongly recommend learning PHP (or JSP) and Oracle together.
Knowing how to design a Web page and manage a database can get you MANY jobs in the IT field, especially when integrating a Database... |
Forum: IT Professionals' Lounge Sep 8th, 2008 |
| Replies: 3 Views: 664 You can try getting in touch with the recruiters to see what kind of skills they're seeking.
You may also find yourself required to read or take a course on a different subject (such as Database... |
Forum: IT Professionals' Lounge Sep 2nd, 2008 |
| Replies: 1 Views: 854 Are there any highly recommended books for file systems?
If so, I would appreciate a few titles to look into! =)
The purpose of doing this research is to further my understanding with... |
Forum: IT Professionals' Lounge Aug 26th, 2008 |
| Replies: 8 Views: 1,392 Note: Before reading below, please note that I'm no longer a Console Gamer. These are opinions based on my previous experiences with games on different platforms.
Keep that in mind before an... |
Forum: IT Professionals' Lounge Aug 22nd, 2008 |
| Replies: 13 Views: 1,688 Oh, and what about the Metaprogram compiles for languages that support templates?
Would that not be longer if there are a lot of template algorithms used? >_> |
Forum: IT Professionals' Lounge Aug 22nd, 2008 |
| Replies: 13 Views: 1,688 Except you didn't say how long compile times can be for massive projects! O_O
I recall my professors saying that compiling can take a very long time... so it's best to get things right the first... |
Forum: IT Professionals' Lounge Aug 22nd, 2008 |
| Replies: 9 Views: 1,328 It still amazes me that you've become as good as you are at such a young age =)
It'll be awhile before I can catch up to you in C++ and Assembly. Until then, I must study more! XP
Edit:... |
Forum: IT Professionals' Lounge Aug 17th, 2008 |
| Replies: 12 Views: 2,138 /*
* Author@WilliamHelmsworth
* Make sure project type is windows application
*/
#define _WIN32_WINNT 0x0500
#include<windows.h>
#include<cmath>
LRESULT CALLBACK mouseHookProc(int... |
Forum: IT Professionals' Lounge Aug 17th, 2008 |
| Replies: 12 Views: 2,138 I like williamhelmswort's mouse-hook snippet. It always makes random amusement when I use it on somebody elses computer and watch them struggle to move the mouse XD |
Forum: IT Professionals' Lounge Aug 12th, 2008 |
| Replies: 5 Views: 962 Ok, I don't know much about Scriptlance but this post sounds kind of racist =/
I know of some mean programmers (from India) on Daniweb that are very knowledgeable and reliable in terms of... |
Forum: IT Professionals' Lounge Aug 2nd, 2008 |
| Replies: 13 Views: 1,688 This thread reminds me of http://www.daniweb.com/forums/thread129415.html |
Forum: IT Professionals' Lounge Jul 22nd, 2008 |
| Replies: 8 Views: 997 "Understanding the fundamental concept is the key."
That pretty much sums up your quote. |
Forum: IT Professionals' Lounge Jul 15th, 2008 |
| Replies: 4 Views: 543 Hah! I haven't tried that yet. Sound interesting XD
I do have an amazing appetite for coffee though. I can't stand sleeping. I'd rather code or study sites like MSDN and other languages, or even... |
Forum: IT Professionals' Lounge Jul 15th, 2008 |
| Replies: 4 Views: 543 I still get here the same way I do every day - through a bookmark I have with this particular link:
http://www.daniweb.com/forums/post618391.html#post618391
and I realize how poorly I first... |
Forum: IT Professionals' Lounge Jun 4th, 2008 |
| Replies: 18 Views: 1,890 Inheritance implies that an object inherits information (was derived from) another object.
struct BASE
{
};
struct DERIVED : public BASE
{ |
Forum: IT Professionals' Lounge Jun 3rd, 2008 |
| Replies: 18 Views: 1,890 Multiple Choice: What is the value of the pointer after this syntax--
int array[] = {10, 20, -10, -20, 5}, *p = array;
p = &p[2];
array[1] = 5;
p++;
A) 10
B) 20
C) -10 |
Forum: IT Professionals' Lounge Jun 3rd, 2008 |
| Replies: 18 Views: 1,890 Here are some questions for you to answer--
"What is the difference between a constant pointer and a pointer to a constant? Write out the syntax for both and then write a block comment with... |