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 


new language.

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
deleted user 111213
Grandmaster Cheater
Reputation: 0

Joined: 09 Nov 2007
Posts: 714

PostPosted: Sat Jan 03, 2009 3:28 pm    Post subject: new language. Reply with quote

i'm thinking about taking up a new language. what should i learn.
Back to top
View user's profile Send private message
manc
Grandmaster Cheater
Reputation: 1

Joined: 16 Jun 2006
Posts: 551

PostPosted: Sat Jan 03, 2009 3:36 pm    Post subject: Reply with quote

New language would imply that you already know one, maybe? It would sort of depend on your primary language. It all depends on your intentions, really...
_________________
Back to top
View user's profile Send private message
deleted user 111213
Grandmaster Cheater
Reputation: 0

Joined: 09 Nov 2007
Posts: 714

PostPosted: Sat Jan 03, 2009 3:36 pm    Post subject: Reply with quote

well, i know a bit of php, html, javascript and vb.
Back to top
View user's profile Send private message
92Garfield
I'm a spammer
Reputation: 57

Joined: 20 Dec 2007
Posts: 5871
Location: Banana Republic Germany

PostPosted: Sat Jan 03, 2009 3:53 pm    Post subject: Reply with quote

ghostrider1337 wrote:
well, i know a bit of php, html, javascript and vb.

php -> not compiled, scripting language
i dont think you can create a new language based on it
or at least, everyone woul see its PHP

html -> not even a programming language
so how you want to make on based on it?

Javascript -> same then PHP just client sided

VB -> would be possible
But even slower than .Net languages, and they are realy SLOW!

Best for creating a new one: C/C++
after them.. for windows C#

_________________
Back to top
View user's profile Send private message
Cheat Engine User
Something epic
Ban
Reputation: 61

Joined: 22 Jun 2007
Posts: 2071

PostPosted: Sat Jan 03, 2009 4:03 pm    Post subject: Reply with quote

92Garfield wrote:
ghostrider1337 wrote:
well, i know a bit of php, html, javascript and vb.

php -> not compiled, scripting language
i dont think you can create a new language based on it
or at least, everyone woul see its PHP

html -> not even a programming language
so how you want to make on based on it?

Javascript -> same then PHP just client sided

VB -> would be possible
But even slower than .Net languages, and they are realy SLOW!

Best for creating a new one: C/C++
after them.. for windows C#


..

Just learn C++, and stick to it.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Jan 03, 2009 5:09 pm    Post subject: Reply with quote

92Garfield wrote:
VB -> would be possible
But even slower than .Net languages, and they are realy SLOW!

Best for creating a new one: C/C++
after them.. for windows C#


what.

.NET is pretty damn fast usually.
Back to top
View user's profile Send private message
compactwater
I post too much
Reputation: 8

Joined: 02 Aug 2006
Posts: 3923

PostPosted: Sat Jan 03, 2009 7:04 pm    Post subject: Reply with quote

He means learn a new language, not make one. Razz

I suggest (in no particular order) PHP, Perl, Python, Pascal. The four P's of programming.
Although not many are attracted to Python.
Back to top
View user's profile Send private message
yoyonerd
Grandmaster Cheater
Reputation: 0

Joined: 26 Apr 2008
Posts: 699
Location: -->formerly yoyonerd<--

PostPosted: Sat Jan 03, 2009 7:08 pm    Post subject: Reply with quote

yay c# =D

im learning c++ atm, so you could give that a try

c# is good if you like immediate GUI making, but c++ if you wanna start with actual code first

atleast thats what ithink

_________________
Back to top
View user's profile Send private message AIM Address
92Garfield
I'm a spammer
Reputation: 57

Joined: 20 Dec 2007
Posts: 5871
Location: Banana Republic Germany

PostPosted: Sat Jan 03, 2009 7:13 pm    Post subject: Reply with quote

slovach wrote:
92Garfield wrote:
VB -> would be possible
But even slower than .Net languages, and they are realy SLOW!

Best for creating a new one: C/C++
after them.. for windows C#


what.

.NET is pretty damn fast usually.

even compared to VB its extremly slow
small flash game trainers in VB.net need like 10 second to start
and less then 1 when u use VB

_________________
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Jan 03, 2009 8:11 pm    Post subject: Reply with quote

92Garfield wrote:
slovach wrote:
92Garfield wrote:
VB -> would be possible
But even slower than .Net languages, and they are realy SLOW!

Best for creating a new one: C/C++
after them.. for windows C#


what.

.NET is pretty damn fast usually.

even compared to VB its extremly slow
small flash game trainers in VB.net need like 10 second to start
and less then 1 when u use VB


that's because it has to invoke the JIT compiler. Rolling Eyes

if you really care that much about it taking a few seconds, you can run NGEN on the image, and compile it that way... possibly at the loss of some speed because you miss out on some optimizations.
Back to top
View user's profile Send private message
rapion124
Grandmaster Cheater Supreme
Reputation: 0

Joined: 25 Mar 2007
Posts: 1095

PostPosted: Sat Jan 03, 2009 8:35 pm    Post subject: Reply with quote

Native code is always the fastest. C or C++ is the best language for that. .NET is mostly for website applications and making fancy GUIs.
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Jan 03, 2009 8:41 pm    Post subject: Reply with quote

rapion124 wrote:
Native code is always the fastest. C or C++ is the best language for that. .NET is mostly for website applications and making fancy GUIs.


Or you know... DEVELOPING FAST.

Time = $$$
Back to top
View user's profile Send private message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Sat Jan 03, 2009 8:51 pm    Post subject: Reply with quote

slovach wrote:
rapion124 wrote:
Native code is always the fastest. C or C++ is the best language for that. .NET is mostly for website applications and making fancy GUIs.


Or you know... DEVELOPING FAST.

Time = $$$


Aren't most of microsoft's products written in native and MFC code, not .net? Even when they say .net is the future. I know VS, and MSOffice is MFC and native

_________________
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sat Jan 03, 2009 9:26 pm    Post subject: Reply with quote

a huge amount of the codebase for their shit is probably draped in legacy bullshit.

god have mercy if someone using a 400 year old computer could not use an obscure feature.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
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