Why not register?
|
Page 1 of 1
|
[ 20 posts ] |
|
Author |
Message |
TaKYoN
|
Posted: Wed Apr 20, 2005 10:22 am Post subject: Creating my own apps. |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
OK I am interested in learning to create my own apps, would something like C++ be cool or what?
Also, I need to know some reference points, preferably some kind of tutorials or the like to actually teach me. Any suggestions guys?
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
wargand
|
Posted: Wed Apr 20, 2005 10:42 am Post subject: Re: Creating my own apps. |
|
The Devil, Probably Joined: Mon Jun 09, 2003 1:04 pm Posts: 2497 Location: In the darkest spot of your soul.
|
TaKYoNtheKoRRuPTeD wrote: | OK I am interested in learning to create my own apps, would something like C++ be cool or what? |
Actually this question makes not that much sense. C++ is cool for some apps, for others it isn't. What tool you use best depends on what you want to do.
|
|
Top |
|
 |
TaKYoN
|
Posted: Wed Apr 20, 2005 10:57 am Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
That is why I was asking Mr Wargand. I have no experience whatsoever at programing, whatever language would be best is the one I would learn.
The thing is I know I could do it, prolly quite easily once I learnt. I am a very fast learner and almost always find things easy when I put my mind to it.
My brother does all this shit for a living, and I am just waiting for him to get back to me aswell.
As to what I want to do, dunno exactly, just getting pissed off sitting here doing not a lot really. I need to use my brain nefore it turns to mush LOL
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
tweye
|
Posted: Wed Apr 20, 2005 11:34 am Post subject: |
|
Dead But Dreaming Joined: Sat Aug 28, 2004 12:40 pm Posts: 333
|
supposing you mean a "windows" application (the one that pops up a window and has e.g. "file-->open.." menus on top), be prepared that it is a difficult task. the first step into programming usually involves creating "command line" applications, e.g. the ugly ones you launch from e.g. a "dos" prompt.
Code: | C:\> hello.exe Hello world!
C:>
|
The choice now is if you want to create "stand alone" applications, e.g. an "exe" file which can run without anything else, or ,er.., let's call'em "bytecode" applications which need an "interpreter" to run.
With C++ you can create "stand alone" applications. Pro: (guess what?) they're stand-alone. Someone claims they're faster to execute than the other type. Cons: the language is difficult to master and needs some efforts to debug, because you're allowed e.g. to mess with every single byte of memory (and a wrong instruction of your program could make you bang your head on the wall for hours trying to understand what's wrong with your application).
With e.g. Java you create "bytecode" applications. Pro: easy and fast programming, cause you're not allowed to mess too much with inner representation of data structures (technically: you cant mess with pointers). Cons: they cant run "out of the box", but you need to install a "runtime environment" (which for e.g. java it's roughly 50MB of stuff to download and install before you can launch you application).
I suggest to try and play with both of these to see which one fits you more.
For a start, i suggest the books by Bruce Eckel (free download):
Thinking in C++ Vol.1 and 2
Thinking in Java
have fun! 
_________________ https://images.dead-donkey.com/images/glennzm9.jpg
|
|
Top |
|
 |
PC_Arcade
|
Posted: Wed Apr 20, 2005 11:38 am Post subject: |
|
Mod of the Living Dead Joined: Thu Jul 24, 2003 12:16 pm Posts: 6898 Location: Desolation
|
Nice sig tweye 
_________________ Small Time Rippers : 2003 - 2008 R.I.P
|
|
Top |
|
 |
tweye
|
Posted: Wed Apr 20, 2005 11:45 am Post subject: |
|
Dead But Dreaming Joined: Sat Aug 28, 2004 12:40 pm Posts: 333
|
_________________ https://images.dead-donkey.com/images/glennzm9.jpg
|
|
Top |
|
 |
PC_Arcade
|
Posted: Wed Apr 20, 2005 11:48 am Post subject: |
|
Mod of the Living Dead Joined: Thu Jul 24, 2003 12:16 pm Posts: 6898 Location: Desolation
|
|
Top |
|
 |
wargand
|
Posted: Wed Apr 20, 2005 12:01 pm Post subject: |
|
The Devil, Probably Joined: Mon Jun 09, 2003 1:04 pm Posts: 2497 Location: In the darkest spot of your soul.
|
TaKYoNtheKoRRuPTeD wrote: | That is why I was asking Mr Wargand. I have no experience whatsoever at programing, whatever language would be best is the one I would learn. |
What I meant was: Noone can tell you what the best language is when it is unknown what you want to program and in what environment. It is as if you asked, what the best means of transportation is and I answer 'the plane'. Would be stupid if you intend only to get over the street to buy a new pack of cigarettes.
|
|
Top |
|
 |
TaKYoN
|
Posted: Wed Apr 20, 2005 12:45 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
Well TBH Wargand, I am more interested in learning something new more than anything else. Apps is just the first thing that popped into my head.
I will prolly try to just get a basic knowledge of a few, see where it goes from there.
Oh and cheers to you too tweye, will give that stuff a read.
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
wargand
|
Posted: Wed Apr 20, 2005 12:50 pm Post subject: |
|
The Devil, Probably Joined: Mon Jun 09, 2003 1:04 pm Posts: 2497 Location: In the darkest spot of your soul.
|
TaKYoNtheKoRRuPTeD wrote: | Well TBH Wargand, I am more interested in learning something new more than anything else. Apps is just the first thing that popped into my head. |
A quick and easy way just to try something would be an interpreter language. Python might be good. You can learn about object oriented programming, you can see some results quickly, no compilation times, large pool of available modules.
|
|
Top |
|
 |
tweye
|
Posted: Wed Apr 20, 2005 1:39 pm Post subject: |
|
Dead But Dreaming Joined: Sat Aug 28, 2004 12:40 pm Posts: 333
|
PC_Arcade wrote: | :lol: I've got that tatooed on my arm |
cool!
my car stereo is playing the discography you found for some weeks now
back OT: re: Python, i'm playing with it these days in spare time and i can say it's pretty cool and you can do really fast programming!
_________________ https://images.dead-donkey.com/images/glennzm9.jpg
|
|
Top |
|
 |
TaKYoN
|
Posted: Wed Apr 20, 2005 1:58 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
Yeah, I am sorta coming to the conclusion I should get a basic understanding of a few languages and what happens after that.
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
spudthedestroyer
|
Posted: Wed Apr 20, 2005 4:13 pm Post subject: |
|
Site Admin Joined: Sat Nov 02, 2002 1:35 am Posts: 19779 Location: En España
|
you might want to try something simple at first before jumping into c++. I think if your brand new, your soon going to realise that such a sloppy and ugly language, although powerful, is going to piss you off.
Java is a great academic language, well documented, and well you should know how much that's used. Syntax is a lot easier that c++, but in many ways is very similar, you just don't need all the bloat as such (you get that in the form of runaway libraries!  )
Python is programmed in c++, but has simplified syntax so you get concepts down and done. Bare in mind, even though its ultra simple, its a very powerful net programming language. See BT.
_________________ Mouse nipple for the win! Trackpoint or death!
|
|
Top |
|
 |
TaKYoN
|
Posted: Wed Apr 20, 2005 5:37 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
Cheers Spud, this opinion is invaluable to me as I wish to, atleast over time, learn the basics of the different languages.
You, and the others, have given me some brain food to digest for a while before I start.
Python and Java seem to be a decent place to start, might learn the basics to HTML whilest I am at it, tho I have been assured HTML is extremely easy to learn.
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
spudthedestroyer
|
Posted: Wed Apr 20, 2005 7:26 pm Post subject: |
|
Site Admin Joined: Sat Nov 02, 2002 1:35 am Posts: 19779 Location: En España
|
html also isn't a programming language mind, its a simple markup language, and as such all you can acheive with it is marking up text and images.
If you want to impress people with reports, books, etc., you also want to take a look at latex markup language. Windows binary is ported to a package called MiTek.
_________________ Mouse nipple for the win! Trackpoint or death!
|
|
Top |
|
 |
TaKYoN
|
Posted: Wed Apr 20, 2005 8:31 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
Er, yeah. I am gonna have to re-read that when my mind is straight.
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
goober
|
Posted: Fri Jun 10, 2005 8:08 pm Post subject: |
|
Servant Of The Dead Donkey Joined: Wed Jun 08, 2005 8:07 pm Posts: 100
|
Just curious, this thread hasn't updated since April - how's the programming thing working out if I may ask? I've always wanted to learn a bit myself but I don't think I have the patience to get into anything too heavy - especially if it's self-taught - fairly ambitious undertaking Takyon.  So, any luck at all?
|
|
Top |
|
 |
TaKYoN
|
Posted: Mon Jun 13, 2005 12:25 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
Well, I have not started yet. Things have been a bit hectic lately for me, I am waiting for a nice quiet period in my life and then I will have a go.
I have no doubts I can do it, but I work best when I can work fast, so cramming all the way with a few hours a day.
I have pencilled in a time frame in my organiser, in a few weeks, so I will let ya know.
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
goober
|
Posted: Mon Jun 13, 2005 7:24 pm Post subject: |
|
Servant Of The Dead Donkey Joined: Wed Jun 08, 2005 8:07 pm Posts: 100
|
Hopefully if all goes well we'll see 'Learn C++ in 24 Hrs. by TaKYoNtheKoRRuPTeD' or 'C++ for Dummies by TaKYoNtheKoRRuPTeD'? 
|
|
Top |
|
 |
TaKYoN
|
Posted: Mon Jun 13, 2005 8:38 pm Post subject: |
|
The Ancient One Joined: Mon Mar 31, 2003 3:28 pm Posts: 4096 Location: Somewhere between dimensions, waiting.
|
How to hack the White House by TaKYoNtheKoRRuPTeD?
_________________ FIRST SEAL BRINGS PESTILENCE. Small Time Rippers - 2003-2008 - R.I.P. 'Do I look like someone who cares what God thinks?'
|
|
Top |
|
 |
 |
Page 1 of 1
|
[ 20 posts ] |
|
Who is online |
Users browsing this forum: No registered users and 1 guest |
Moderator: Help Mods
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|