Search found 18 matches

by arcelios
Tue May 05, 2009 3:49 pm
Forum: Programming Discussion
Topic: A Bit of a Challenge: Feeling Clever?
Replies: 8
Views: 640

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...
by arcelios
Sun Apr 26, 2009 1:01 pm
Forum: Programming Discussion
Topic: A Bit of a Challenge: Feeling Clever?
Replies: 8
Views: 640

Fail

Yep, so this little challenge has failed. Miserably. :nono:

Okay, just on the off chance that this bump renews interest, I'll leave the challenge open for one more week. Oh well.
by arcelios
Sun Apr 19, 2009 6:41 am
Forum: Programming Discussion
Topic: Microsoft DreamSpark
Replies: 20
Views: 1503

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...
by arcelios
Sun Apr 19, 2009 6:30 am
Forum: Programming Discussion
Topic: A Bit of a Challenge: Feeling Clever?
Replies: 8
Views: 640

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...
by arcelios
Sat Apr 18, 2009 2:49 pm
Forum: Programming Discussion
Topic: A Bit of a Challenge: Feeling Clever?
Replies: 8
Views: 640

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 ...
by arcelios
Fri Apr 17, 2009 6:59 pm
Forum: Programming Discussion
Topic: A Bit of a Challenge: Feeling Clever?
Replies: 8
Views: 640

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 ...
by arcelios
Sun Mar 22, 2009 1:56 pm
Forum: Programming Discussion
Topic: [Linux] Passing Commands to Shell?
Replies: 4
Views: 399

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? ...
by arcelios
Sun Mar 22, 2009 10:45 am
Forum: Programming Discussion
Topic: [Linux] Passing Commands to Shell?
Replies: 4
Views: 399

[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...
by arcelios
Fri Jan 02, 2009 1:17 pm
Forum: Programming Discussion
Topic: OGRE and OpenGL and Crystal Space, oh my!
Replies: 8
Views: 991

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.
by arcelios
Fri Jan 02, 2009 12:01 pm
Forum: Programming Discussion
Topic: OGRE and OpenGL and Crystal Space, oh my!
Replies: 8
Views: 991

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...
by arcelios
Fri Jan 02, 2009 10:26 am
Forum: Programming Discussion
Topic: OGRE and OpenGL and Crystal Space, oh my!
Replies: 8
Views: 991

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 ...
by arcelios
Sat Nov 15, 2008 7:58 am
Forum: Programming Discussion
Topic: Cross-Platform GUI Framework
Replies: 2
Views: 429

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 ...
by arcelios
Mon Nov 10, 2008 5:40 pm
Forum: Game Development
Topic: Crapy Language Game
Replies: 10
Views: 1702

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...
by arcelios
Mon Oct 13, 2008 6:04 pm
Forum: Game Development
Topic: Crapy Language Game
Replies: 10
Views: 1702

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...
by arcelios
Tue Oct 07, 2008 4:01 pm
Forum: Game Development
Topic: Linux Game Dev and Ports
Replies: 12
Views: 2085

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!