Welcome to Anything Forums! We are a general discussion forum that believes in freedom of expression and aim to provide a low moderation (within reasonable means) environment to discuss any topic. If you want to join, simply click HERE to be taken to our account management system where you can make an account. If you had an account at iceteks.com, anythingforums.com, uovalor.com or uogateway.com in the past it has been transfered over and you can simply do a password reset.
Computer builds, hardware and software discussion or troubleshooting, including peripherals. Essentially a general place to talk about desktop computers.
Im just a poor boy nobody loves me........ well people love me but i am poor so if anyone could tell me were to get turing or another good programming program for free i would greatly appreciate it. thnx
Archived topic from Iceteks, old topic ID:2983, old post ID:24447
Kazaa? Do you have a file sharing program? I'm sure you can find it there. Or, if you're lucky, your teacher can give it to you (If you are in programming).
Archived topic from Iceteks, old topic ID:2983, old post ID:24450
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
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.
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.
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
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
Honk if you love Jesus, text if you want to meet Him!
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
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.
If this isn't enabled, you can do so with TweakUI.
Archived topic from Iceteks, old topic ID:2983, old post ID:24462
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
Honk if you love Jesus, text if you want to meet Him!
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
Honk if you love Jesus, text if you want to meet Him!
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
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
Honk if you love Jesus, text if you want to meet Him!