Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


I'm DLing Python.
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
Oblivious
Grandmaster Cheater Supreme
Reputation: 45

Joined: 12 Mar 2008
Posts: 1732

PostPosted: Wed Jun 23, 2010 1:12 am    Post subject: I'm DLing Python. Reply with quote

1. Get excited to learn a programming language and make a game.
2. Open programming language of choice.
3. Get less enthusiastic.
4. Lose motivation.
5. Depression.
Back to top
View user's profile Send private message
Fifty Shades of J
Expert Cheater
Reputation: 32

Joined: 11 Aug 2007
Posts: 236
Location: New York

PostPosted: Wed Jun 23, 2010 1:12 am    Post subject: Re: I'm DLing Python. Reply with quote

Oblivious wrote:
1. Get excited to learn a programming language and make a game.
2. Open programming language of choice.
3. Get less enthusiastic.
4. Lose motivation.
5. Depression.


Read Python for dummy's ebook.

_________________
Back to top
View user's profile Send private message
Oblivious
Grandmaster Cheater Supreme
Reputation: 45

Joined: 12 Mar 2008
Posts: 1732

PostPosted: Wed Jun 23, 2010 1:13 am    Post subject: Re: I'm DLing Python. Reply with quote

The Hobo wrote:
Oblivious wrote:
1. Get excited to learn a programming language and make a game.
2. Open programming language of choice.
3. Get less enthusiastic.
4. Lose motivation.
5. Depression.


Read Python for dummy's ebook.

Will do.
Back to top
View user's profile Send private message
Aviar³
Grandmaster Cheater
Reputation: 50

Joined: 03 Jan 2008
Posts: 655
Location: Canada

PostPosted: Wed Jun 23, 2010 1:13 am    Post subject: Reply with quote

If you cannot learn Python, the only other thing I can imagine for you is either a BASIC style language (visual basic) or HTML.
_________________
This is the inception of deception, checking the depth of your perception.
Back to top
View user's profile Send private message
gogodr
I post too much
Reputation: 125

Joined: 19 Dec 2006
Posts: 2041

PostPosted: Wed Jun 23, 2010 1:13 am    Post subject: Reply with quote

I never understood how Python works. never got interested neither.
Back to top
View user's profile Send private message MSN Messenger
Oblivious
Grandmaster Cheater Supreme
Reputation: 45

Joined: 12 Mar 2008
Posts: 1732

PostPosted: Wed Jun 23, 2010 1:14 am    Post subject: Reply with quote

Random Memory wrote:
If you cannot learn Python, the only other thing I can imagine for you is either a BASIC style language (visual basic) or HTML.

Oh I haven't started yet.

I'm just saying that's what I expect will happen.
Back to top
View user's profile Send private message
Aviar³
Grandmaster Cheater
Reputation: 50

Joined: 03 Jan 2008
Posts: 655
Location: Canada

PostPosted: Wed Jun 23, 2010 1:16 am    Post subject: Reply with quote

Oblivious wrote:
Random Memory wrote:
If you cannot learn Python, the only other thing I can imagine for you is either a BASIC style language (visual basic) or HTML.

Oh I haven't started yet.

I'm just saying that's what I expect will happen.


I know, that is just what I recommend for you should the outcome be as you stated.

P.S.: Python ebook isnt necessary, just use their online tutorials, covers EVERYTHING from basics to more advanced material (including Python Internals if you know C).

_________________
This is the inception of deception, checking the depth of your perception.
Back to top
View user's profile Send private message
Oblivious
Grandmaster Cheater Supreme
Reputation: 45

Joined: 12 Mar 2008
Posts: 1732

PostPosted: Wed Jun 23, 2010 1:17 am    Post subject: Reply with quote

Random Memory wrote:
Oblivious wrote:
Random Memory wrote:
If you cannot learn Python, the only other thing I can imagine for you is either a BASIC style language (visual basic) or HTML.

Oh I haven't started yet.

I'm just saying that's what I expect will happen.


I know, that is just what I recommend for you should the outcome be as you stated.

P.S.: Python ebook isnt necessary, just use their online tutorials, covers EVERYTHING from basics to more advanced material (including Python Internals if you know C).

Oh cool, thanks for the advice.
Back to top
View user's profile Send private message
compactwater
I post too much
Reputation: 8

Joined: 02 Aug 2006
Posts: 3923

PostPosted: Wed Jun 23, 2010 1:20 am    Post subject: Reply with quote

Learn Perl, it's better! ...unless your sole purpose is to make games.

Last edited by compactwater on Wed Jun 23, 2010 1:30 am; edited 1 time in total
Back to top
View user's profile Send private message
Oblivious
Grandmaster Cheater Supreme
Reputation: 45

Joined: 12 Mar 2008
Posts: 1732

PostPosted: Wed Jun 23, 2010 1:29 am    Post subject: Reply with quote

compactwater wrote:
Learn Perl, it's better! ...unless you're sole purpose is to make games.

Eh, guess I'll try it.

documentation, beginning projects etc?
Back to top
View user's profile Send private message
compactwater
I post too much
Reputation: 8

Joined: 02 Aug 2006
Posts: 3923

PostPosted: Wed Jun 23, 2010 1:33 am    Post subject: Reply with quote

Oblivious wrote:
compactwater wrote:
Learn Perl, it's better! ...unless you're sole purpose is to make games.

Eh, guess I'll try it.

documentation, beginning projects etc?
Oh god I made a typo...

All you need to know (Windows-wise) is to prevent yourself from corrupting your knowledge early on by being lax with yourself. That is:
Code:
use strict;
use warnings;
Strict will refuse to execute the program even if the syntax could be corrected easily.
Warnings will give you helpful information.
A hashbang isn't needed under Windows. A hashbang just gives the path of which Perl to use (in case of multiple versions)

Code:
print "Hello, world!";
Back to top
View user's profile Send private message
Oblivious
Grandmaster Cheater Supreme
Reputation: 45

Joined: 12 Mar 2008
Posts: 1732

PostPosted: Wed Jun 23, 2010 1:36 am    Post subject: Reply with quote

compactwater wrote:
Oblivious wrote:
compactwater wrote:
Learn Perl, it's better! ...unless you're sole purpose is to make games.

Eh, guess I'll try it.

documentation, beginning projects etc?
Oh god I made a typo...

All you need to know (Windows-wise) is to prevent yourself from corrupting your knowledge early on by being lax with yourself. That is:
Code:
use strict;
use warnings;
Strict will refuse to execute the program even if the syntax could be corrected easily.
Warnings will give you helpful information.
A hashbang isn't needed under Windows. A hashbang just gives the path of which Perl to use (in case of multiple versions)

Code:
print "Hello, world!";

Also, my programming fluency pretty much stops at Game Maker, if that gives you an idea of how shitty I am and how much learning this is going to take.
Back to top
View user's profile Send private message
compactwater
I post too much
Reputation: 8

Joined: 02 Aug 2006
Posts: 3923

PostPosted: Wed Jun 23, 2010 1:40 am    Post subject: Reply with quote

Oblivious wrote:
compactwater wrote:
Oblivious wrote:
compactwater wrote:
Learn Perl, it's better! ...unless you're sole purpose is to make games.

Eh, guess I'll try it.

documentation, beginning projects etc?
Oh god I made a typo...

All you need to know (Windows-wise) is to prevent yourself from corrupting your knowledge early on by being lax with yourself. That is:
Code:
use strict;
use warnings;
Strict will refuse to execute the program even if the syntax could be corrected easily.
Warnings will give you helpful information.
A hashbang isn't needed under Windows. A hashbang just gives the path of which Perl to use (in case of multiple versions)

Code:
print "Hello, world!";

Also, my programming fluency pretty much stops at Game Maker, if that gives you an idea of how shitty I am and how much learning this is going to take.
Use a Syntax highligher, such as Notepad++. If you ever need to show someone some long code, use PasteBin as it supports Syntax highlighting as well.
For Windows, get ActiveState Perl.
If you ever need to install a package, open the Perl Package Manager via CMD (or just open the exe): ppm
CPAN will help you with much of your Perl needs and function documentations. http://www.cpan.org/
Back to top
View user's profile Send private message
Oblivious
Grandmaster Cheater Supreme
Reputation: 45

Joined: 12 Mar 2008
Posts: 1732

PostPosted: Wed Jun 23, 2010 2:06 am    Post subject: Reply with quote

I'M SO CONFUSED

TAKE ME STEP THROUGH STEP TO DO SOMETHING

LIKE HELLO WORLD OR SUM SHIT
Back to top
View user's profile Send private message
Aviar³
Grandmaster Cheater
Reputation: 50

Joined: 03 Jan 2008
Posts: 655
Location: Canada

PostPosted: Wed Jun 23, 2010 2:07 am    Post subject: Reply with quote

For which? Perl or Python?
_________________
This is the inception of deception, checking the depth of your perception.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
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 vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites