Anyone have any ideas for a console application
Moderator: Coders of Rage
Anyone have any ideas for a console application
i just want to make something other than calculators and random text adventures
- Ginto8
- ES Beta Backer
- Posts: 1064
- Joined: Tue Jan 06, 2009 4:12 pm
- Programming Language of Choice: C/C++, Java
Re: Anyone have any ideas for a console application
learn SDL and go graphical!
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
Re: Anyone have any ideas for a console application
One application that wouldn't require a gui but would still be useful would be a simple image format converter. you could have it so that the app takes a 24 bit bitmap (or any other image formats you know how to work with) and outputs a 32 bit image. This is useful for people who need an alpha channel for their images but are stuck with imaging software like paint. Doing this would give you a useful app as well as exposure to how image data is stored and how to manipulate it.
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Anyone have any ideas for a console application
An encryption algorithm? Or perhaps a sorting algorithm.
Re: Anyone have any ideas for a console application
You could try making Skynet
Re: Anyone have any ideas for a console application
Do what I did when I was 12 and asked the same thing:
Make a porn encryptor.
Make a porn encryptor.
<qpHalcy0n> decided to paint the office, now i'm high and my hands hurt
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Anyone have any ideas for a console application
Like what? We need more to work with than "I want to make something." What sorts of things interest you the most? Motivation is always easiest to find while working on a project you want to work on.richred20 wrote:i just want to make something other than calculators and random text adventures
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Anyone have any ideas for a console application
Like what? We need more to work with than "I want to make something." What sorts of things interest you the most?dandymcgee wrote:richred20 wrote:i just want to make something other than calculators and random text adventures
Motivation is always easiest to find with projects you have a passion for.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- JGorard159
- Chaos Rift Newbie
- Posts: 44
- Joined: Sun May 09, 2010 3:05 pm
- Current Project: Azareal Online: MMO
- Favorite Gaming Platforms: Virtual Boy. LOL WUT!?
- Programming Language of Choice: Javascript
- Contact:
Re: Anyone have any ideas for a console application
Make an ASCII cartoon, because they're always fun.
Or, better still, make some software to convert a regular .avi video into an ASCII cartoon...
Or, better still, make some software to convert a regular .avi video into an ASCII cartoon...
Savannah Cart of Ollege and Design
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com
- Trask
- ES Beta Backer
- Posts: 738
- Joined: Wed Oct 29, 2008 8:17 pm
- Current Project: Building a 2D Engine
- Favorite Gaming Platforms: Sega Genesis and Xbox 360
- Programming Language of Choice: C/C++
- Location: Pittsburgh, PA
- Contact:
Re: Anyone have any ideas for a console application
#include skynet.hajtgarber wrote:You could try making Skynet
Dear god, they actually ported ES to a piece of celery!MarauderIIC wrote:You know those people that are like "CHECK IT OUT I just made Linux run on this piece of celery [or other random object]!!"? Yeah, that's Falco, but with ES.
Martin Golding wrote: "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live."
Re: Anyone have any ideas for a console application
Im really just want something to do before i go into graphics anything would be nice but i haven't had any work with a gui yet.
- JGorard159
- Chaos Rift Newbie
- Posts: 44
- Joined: Sun May 09, 2010 3:05 pm
- Current Project: Azareal Online: MMO
- Favorite Gaming Platforms: Virtual Boy. LOL WUT!?
- Programming Language of Choice: Javascript
- Contact:
Re: Anyone have any ideas for a console application
If you really don't want to go graphical using SDL or something similar (which I would recommend at this point), and you're bored of making text adventures, why don't you try something in between? Maybe code a game which is in a console window, where the player is physically denoted with an asterisk; you give the player text commands like 'walk forward' or 'turn left' and he moves inside the console. You could even try and make walls denoted with '|'s, and the player has to avoid them. That might be quite cool.
Savannah Cart of Ollege and Design
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com
-
- Chaos Rift Junior
- Posts: 209
- Joined: Thu Feb 12, 2009 8:46 pm
Re: Anyone have any ideas for a console application
What gives you—or anyone for that matter—the impression that the OP is prepared to advance into graphical programming? Have you considered the OP's previous posts to ensure that the OP is not lacking in any fundamental areas? It seems empirical that the OP selects something that would increase their general programming knowledge before moving into a field that relies on many aspects which the OP has not fully comprehended; this is how poor habits are won.JGorard159 wrote:If you really don't want to go graphical using SDL or something similar (which I would recommend at this point).
- JGorard159
- Chaos Rift Newbie
- Posts: 44
- Joined: Sun May 09, 2010 3:05 pm
- Current Project: Azareal Online: MMO
- Favorite Gaming Platforms: Virtual Boy. LOL WUT!?
- Programming Language of Choice: Javascript
- Contact:
Re: Anyone have any ideas for a console application
OK, maybe that was poorly said . I was simply trying to say that there's only so much that you can learn with simple console applications, and it would seem that the poster has nearly exhausted all the capabilities of a console application (hence this post's creation), and provided that he/she has a good enough grasp of the basics of C++ (up to pointers, arrays, memory allocation), then in my opinion, a graphical API such as SDL is probably the best step.wearymemory wrote:What gives you—or anyone for that matter—the impression that the OP is prepared to advance into graphical programming? Have you considered the OP's previous posts to ensure that the OP is not lacking in any fundamental areas? It seems empirical that the OP selects something that would increase their general programming knowledge before moving into a field that relies on many aspects which the OP has not fully comprehended; this is how poor habits are won.
Savannah Cart of Ollege and Design
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com
Current Project: Azareal Online. Visit us at: http://azareal-online.comuv.com