time to say goodbye

General discussion for topics related to the FreeBASIC project or its community.
Post Reply
Hard
Posts: 135
Joined: Aug 29, 2008 21:13

time to say goodbye

Post by Hard »

hey there

at this point i have to say goodbye. freebasic helped me alot and therefore i wanna thank everyone who helped becoming freebasic what it is right now.

freebasic brought me from my hobby to my profession. but as my skills evolved, my requirements grew. i now came to the point where i quite need to use c++.

just to name a few reasons:
stability (longint >> double)
ability (dynamic arrays inside a udt - vector)

i dont wanna start a discussion here, but i really just wanted to thank you all for this neat community and say goodbye.

best wishes for the future - hard
angros47
Posts: 2323
Joined: Jun 21, 2005 19:04

Post by angros47 »

Goodbye, and best wishes for your work!

Come back sometimes to visit us!
technoweasel
Posts: 70
Joined: Aug 06, 2008 22:47

Post by technoweasel »

Good bye. I also moved on to C(++) after awhile. Good luck, and don't forget to return to the forum sometimes.
rdc
Posts: 1741
Joined: May 27, 2005 17:22
Location: Texas, USA
Contact:

Post by rdc »

I use both, so don't be surprised if you get the urge to FB. :) C++ can be really a pain sometimes, and the simplicity of FB is refreshing.
Dr_D
Posts: 2451
Joined: May 27, 2005 4:59
Contact:

Post by Dr_D »

rdc wrote:I use both, so don't be surprised if you get the urge to FB. :) C++ can be really a pain sometimes, and the simplicity of FB is refreshing.
I concur. At any rate, see ya later dude. :)
lemontree
Posts: 21
Joined: Apr 12, 2008 14:37
Location: Bac Ninh, Vietnam
Contact:

Post by lemontree »

I would never use the terms C++ and stability in the same breath.
C was developed to make programming 8-bit microprocessors easier.
C++ was for 16 bit microprocessors and there it should have stopped.
Up to you if you want to spend years learning C++. It is unlikely that you will be able to do anything productive in the medium of that language.
Better to chose Java, C# or ActionScript 3, particularly if employment is a goal.
angros47
Posts: 2323
Joined: Jun 21, 2005 19:04

Post by angros47 »

Better to chose Java, C# or ActionScript 3, particularly if employment is a goal.
They are much slower than C++, because they require a virtual machine.

A good alternative could be D (more modern than C++, supports much features of Java/C#/Actionscript, built-in string support, and compiles to native code)
DaveUnit
Posts: 239
Joined: Apr 20, 2006 15:47
Location: Central MA

Post by DaveUnit »

angros47 wrote:
Better to chose Java, C# or ActionScript 3, particularly if employment is a goal.
They are much slower than C++, because they require a virtual machine.

A good alternative could be D (more modern than C++, supports much features of Java/C#/Actionscript, built-in string support, and compiles to native code)
Actually java is VERY fast now. the Just In-Time(JIT) compiler is great. Java is approaching speeds of C/C++ type languages. Don't underestimate the java vm!
Landeel
Posts: 777
Joined: Jan 25, 2007 10:32
Location: Brazil
Contact:

Re: time to say goodbye

Post by Landeel »

Hard wrote: stability (longint >> double)
http://cia.vc/stats/project/fbc/.message/3f5b28
Hard
Posts: 135
Joined: Aug 29, 2008 21:13

Re: time to say goodbye

Post by Hard »

thanks guys for the farewell
thats awesome - but alas too late for me ^^
Mel_3
Posts: 17
Joined: Feb 23, 2009 17:36

Is there a "Free C++"

Post by Mel_3 »

This thread made me wonder... is there a "Free C++"

If so would some kind soul post what and where and any comments.

Thanks for the help.

PS

Also would like references to other "free" compilers for other languages like "D" and others. Thanks again.
angros47
Posts: 2323
Joined: Jun 21, 2005 19:04

Post by angros47 »

The "free C++" is GCC (http://gcc.gnu.org): it's self-hosting (like freebasic), uses binutils (like freebasic), and Linux has been written with it.

For D, have a look at http://dgcc.sourceforge.net/
srvaldez
Posts: 3379
Joined: Sep 25, 2005 21:54

Post by srvaldez »

there are also free IDE's usung gcc, there's Dev C++ http://wxdsgn.sourceforge.net/
Galeon
Posts: 563
Joined: Apr 08, 2009 5:30
Location: Philippines
Contact:

Post by Galeon »

Java is very slow in my Linux box. I think Python is faster, the same speeds with compiled programs in my comp.
DaveUnit
Posts: 239
Joined: Apr 20, 2006 15:47
Location: Central MA

Post by DaveUnit »

Galeon wrote:Java is very slow in my Linux box. I think Python is faster, the same speeds with compiled programs in my comp.
python faster than java? noooo way that would happen unless something is terribly wrong on your linux box. I used to hate java but I've really grown to like it a lot. Especially since I'm using it constantly in college. Even android smartphones run java code. it's really not that slow anymore.
Post Reply