Turing...
Turing...
I've tried to get it from the Board of ed. but they refused me oh well... im trying to learn C++ to so like i said any programs that have a help and will allow me to write in it such as turing... id greatly appreciate it.
Archived topic from Iceteks, old topic ID:2983, old post ID:24455
Archived topic from Iceteks, old topic ID:2983, old post ID:24455
Turing...
Use command-line tools. The experience will pay off for years, and you won't spend all of your time figuring out which button to click.nilloc wrote: I've tried to get it from the Board of ed. but they refused me oh well... im trying to learn C++ to so like i said any programs that have a help and will allow me to write in it such as turing... id greatly appreciate it.
And don't start with C++. It's a big, complex, scary language where bugs can be very subtle and hard to find.
Archived topic from Iceteks, old topic ID:2983, old post ID:24457
- Red Squirrel
- Posts: 29209
- Joined: Wed Dec 18, 2002 12:14 am
- Location: Northern Ontario
- Contact:
Turing...
Actually I started with C++ and I find it was good in a way since when I learned php it was like nothing as the syntax is very similar. visual basic is a joke, we're doing that in college now. (we may actually be allowed to use if statements soon lol but I prefer the C++ way of doing them)
But yes C++ is more scary then languages like turing and the "word" based ones. (ex: if then instead of { )
I personally find IDE type compilers better since I tend to store files in large paths with long file names making command line tools a pain to use in that situation, but that's just a preference. But command line tools tend to have better performance so I encourage using it too even though I don't.
Archived topic from Iceteks, old topic ID:2983, old post ID:24458
But yes C++ is more scary then languages like turing and the "word" based ones. (ex: if then instead of { )
I personally find IDE type compilers better since I tend to store files in large paths with long file names making command line tools a pain to use in that situation, but that's just a preference. But command line tools tend to have better performance so I encourage using it too even though I don't.
Archived topic from Iceteks, old topic ID:2983, old post ID:24458
Honk if you love Jesus, text if you want to meet Him!
Turing...
Syntax isn't the issue, though it is a problem.
Consider linker errors, for instance. You write a program that compiles fine, but then you get some cryptic hexidecimal error message. That doesn't serve a beginner at all.
As for big long filenames... that's why tab completion is a beautiful thing.
Archived topic from Iceteks, old topic ID:2983, old post ID:24460
Consider linker errors, for instance. You write a program that compiles fine, but then you get some cryptic hexidecimal error message. That doesn't serve a beginner at all.
As for big long filenames... that's why tab completion is a beautiful thing.
Archived topic from Iceteks, old topic ID:2983, old post ID:24460
- Red Squirrel
- Posts: 29209
- Joined: Wed Dec 18, 2002 12:14 am
- Location: Northern Ontario
- Contact:
Turing...
What's tab completion?
Archived topic from Iceteks, old topic ID:2983, old post ID:24461
Archived topic from Iceteks, old topic ID:2983, old post ID:24461
Honk if you love Jesus, text if you want to meet Him!
Turing...
Type the first few letters of a file or directory (folder) name, and hit tab. As long as there aren't several options that fit that criteria, it'll write out the rest of the name for you.Red Squirrel wrote: What's tab completion?
If this isn't enabled, you can do so with TweakUI.
Archived topic from Iceteks, old topic ID:2983, old post ID:24462
- Red Squirrel
- Posts: 29209
- Joined: Wed Dec 18, 2002 12:14 am
- Location: Northern Ontario
- Contact:
Turing...
Does it work in win2k's cmd.exe? Since if I hit tab it just does a tab. I typed cd d:prog [tab] (folder is programmingprocessing(other folders))but did not work, is that what I do?
Archived topic from Iceteks, old topic ID:2983, old post ID:24465
Archived topic from Iceteks, old topic ID:2983, old post ID:24465
Honk if you love Jesus, text if you want to meet Him!
- Red Squirrel
- Posts: 29209
- Joined: Wed Dec 18, 2002 12:14 am
- Location: Northern Ontario
- Contact:
Turing...
Oh I see. I'll know next time I need to compile something with command line, if I decide to switch to a different compiler... now that I think of it I have not programmed any application language in a long time. Only php which is server side scripting and not something you can use to build actual applications.
Archived topic from Iceteks, old topic ID:2983, old post ID:24468
Archived topic from Iceteks, old topic ID:2983, old post ID:24468
Honk if you love Jesus, text if you want to meet Him!
Turing...
Of course you can use PHP to write "actual aplications". There's no fundamental difference between server-side programming and client-side. It's all just data structures, functions, procedures, input, output, etc.
PHP's a bad language, but it's not enough just to know which tools to use. You have to understand why those tools are ideal.
Archived topic from Iceteks, old topic ID:2983, old post ID:24471
PHP's a bad language, but it's not enough just to know which tools to use. You have to understand why those tools are ideal.
Archived topic from Iceteks, old topic ID:2983, old post ID:24471
- Red Squirrel
- Posts: 29209
- Joined: Wed Dec 18, 2002 12:14 am
- Location: Northern Ontario
- Contact:
Turing...
By application I meant something that you can run on a system, php is basically run then stop. Give it some parameters etc then run the script then it stops. While with C++ and what not you can have a window or console, multithreading, interactione etc...
But I'm sure it would be possible to use php in application design, off a server. I know you can get a special library so you can actually run php scripts on a server the same way you would run a bash script so I'm sure there's even more you can do.
I've been too constrained on php though I need to learn more C++ and maybe even another language.
Archived topic from Iceteks, old topic ID:2983, old post ID:24472
But I'm sure it would be possible to use php in application design, off a server. I know you can get a special library so you can actually run php scripts on a server the same way you would run a bash script so I'm sure there's even more you can do.
I've been too constrained on php though I need to learn more C++ and maybe even another language.
Archived topic from Iceteks, old topic ID:2983, old post ID:24472
Honk if you love Jesus, text if you want to meet Him!