Search found 18 matches
- Tue May 05, 2009 3:49 pm
- Forum: Programming Discussion
- Topic: A Bit of a Challenge: Feeling Clever?
- Replies: 8
- Views: 782
Re: A Bit of a Challenge: Feeling Clever?
I have my program displaying all of the possible combinations, that is, only if you know the length of the original string. In other words, I gave up when I found that the length of the output of the hash is not always going to have a constant similarity to the length of the string given. I got tir...
- Sun Apr 26, 2009 1:01 pm
- Forum: Programming Discussion
- Topic: A Bit of a Challenge: Feeling Clever?
- Replies: 8
- Views: 782
Fail
Yep, so this little challenge has failed. Miserably.
Okay, just on the off chance that this bump renews interest, I'll leave the challenge open for one more week. Oh well.
Okay, just on the off chance that this bump renews interest, I'll leave the challenge open for one more week. Oh well.
- Sun Apr 19, 2009 6:41 am
- Forum: Programming Discussion
- Topic: Microsoft DreamSpark
- Replies: 20
- Views: 1968
Re: Microsoft DreamSpark
I just signed up for the Dreamspark program by Microsoft which gives you free software for being a student. The only catch is If You use the Software to create software programs, You may only commercially use or distribute them upon the purchase of appropriate commercial license(s) for the Software...
- Sun Apr 19, 2009 6:30 am
- Forum: Programming Discussion
- Topic: A Bit of a Challenge: Feeling Clever?
- Replies: 8
- Views: 782
Re: A Bit of a Challenge: Feeling Clever?
Are you sure that function is even invertible? If the output of 2 different (or more) inputs it the same, how can you know which one was the correct one after decrypting? That's the point of most cryptographic hash functions anyway. Well, fantastico, you've hit it on the proverbial head! There is n...
- Sat Apr 18, 2009 2:49 pm
- Forum: Programming Discussion
- Topic: A Bit of a Challenge: Feeling Clever?
- Replies: 8
- Views: 782
Re: A Bit of a Challenge: Feeling Clever?
Given your key and algorithm, and assuming that the current character in question is 'e' in the string "hamburger," then x = 5, and y = 8, and if x * y = 40, then t = 5 (given the number of times that 10 can go into x * y until it reaches a length of 1 digit, which is a number < 10), and ...
- Fri Apr 17, 2009 6:59 pm
- Forum: Programming Discussion
- Topic: A Bit of a Challenge: Feeling Clever?
- Replies: 8
- Views: 782
A Bit of a Challenge: Feeling Clever?
Bored? Need a little bit of a programming challenge, or something to keep you busy? Perhaps this isn't a challenge for some - there may or may not be a perfectly simple solution. You'll just have to find out! Without further delay, here's the challenge: Synopsis: I have created an algorithm to hash ...
- Sun Mar 22, 2009 1:56 pm
- Forum: Programming Discussion
- Topic: [Linux] Passing Commands to Shell?
- Replies: 4
- Views: 461
Re: [Linux] Passing Commands to Shell?
here's a code snippet for a way to take and execute shell commands (should work on all OS's): string command = ""; std::cout << "Enter command: "; getline(std::cin, command); system(command.c_str()); It's really as simple as making a "system" call? So I could do this? ...
- Sun Mar 22, 2009 10:45 am
- Forum: Programming Discussion
- Topic: [Linux] Passing Commands to Shell?
- Replies: 4
- Views: 461
[Linux] Passing Commands to Shell?
All right, so there are many GUI's written for popular command-line only programs on Linux; they're written for Nmap, Memtest, etc. So I have 2 questions: 1. What languages allow you to do this. 2. And, quite simply: how? I know that in C++ there are "SYSTEM" commands that allow you to uti...
- Fri Jan 02, 2009 1:17 pm
- Forum: Programming Discussion
- Topic: OGRE and OpenGL and Crystal Space, oh my!
- Replies: 8
- Views: 1157
Re: OGRE and OpenGL and Crystal Space, oh my!
Thanks for your replies,
As opposed to really deciding between OpenGL and SDL (though my interest is piqued by OpenGL), I would more ask for assistance deciding between OpenGL/SDL and OGRE 3D/Crystal Space/Irrlicht.
As opposed to really deciding between OpenGL and SDL (though my interest is piqued by OpenGL), I would more ask for assistance deciding between OpenGL/SDL and OGRE 3D/Crystal Space/Irrlicht.
- Fri Jan 02, 2009 12:01 pm
- Forum: Programming Discussion
- Topic: OGRE and OpenGL and Crystal Space, oh my!
- Replies: 8
- Views: 1157
Re: OGRE and OpenGL and Crystal Space, oh my!
I would highly recommend SDL for 2d games and OpenGL for 3d games. I'm working on a project with SDL right now, and it definitely gives you control without being as difficult as it first seems. As far as OpenGL, that seems to be the standard for 3d (alongside Direct3D, microsoft's version). I haven...
- Fri Jan 02, 2009 10:26 am
- Forum: Programming Discussion
- Topic: OGRE and OpenGL and Crystal Space, oh my!
- Replies: 8
- Views: 1157
OGRE and OpenGL and Crystal Space, oh my!
Hello, I already have what I would consider an intermediate level of skill in C++. That is, I read Sam's Teach Yourself C++ in 24 Hours, and have a firm understanding of everything discussed there. I am now looking into game development, and I have decided to learn graphics programming first. After ...
- Sat Nov 15, 2008 7:58 am
- Forum: Programming Discussion
- Topic: Cross-Platform GUI Framework
- Replies: 2
- Views: 494
Cross-Platform GUI Framework
Hello Gentle(wo)men, I have been looking at various cross-platform GUI frameworks, such as Trolltech's "QT" and wxWidgets, and I am having trouble deciding which one you find to be the most advantageous? I have already learned the basics of C++ (functions, arrays, etc. I've even dabbled a ...
- Mon Nov 10, 2008 5:40 pm
- Forum: Game Development
- Topic: Crapy Language Game
- Replies: 10
- Views: 1928
Re: Crapy Language Game
I was running the Windows binary that was included with the tar.gz I downloaded from the link you provided in your original post. I haven't attempted to compile the Linux source yet. Why did you use DarWINE when the project is built for Linux? If DarWINE is what it says it is, then why would you try...
- Mon Oct 13, 2008 6:04 pm
- Forum: Game Development
- Topic: Crapy Language Game
- Replies: 10
- Views: 1928
Re: Crapy Language Game
I attempted to run it under DarWINE on my Macbook, but I got the old OpenGL error. Log: err:wgl:X11DRV_wglGetProcAddress No libGL on this box - disabling OpenGL support ! err:wgl:X11DRV_wglGetProcAddress No libGL on this box - disabling OpenGL support ! err:wgl:X11DRV_wglGetProcAddress No libGL on t...
- Tue Oct 07, 2008 4:01 pm
- Forum: Game Development
- Topic: Linux Game Dev and Ports
- Replies: 12
- Views: 2541
Re: Linux Game Dev and Ports
Linux is constantly criticized for its lack of games-it's great to know that someone is working to change that. Keep it up!