0  |  skin: 1 2 3  | Login | Join  | 

Audioindy.com

Mail discussion to a friend Search forums House rules Live chat Login to access your admin About 7161 forums Forum home New Topic

Forums   -   The lounge

Subject: want to program?


Viewing all 45 messages  -  View by pages of 10:  1 2 3 4 5


Original Message 1/45                 Date: 26-Mar-03  @  05:32 PM   -   want to program?

xoxos

Posts: 6231

Link?: Link

File?:  No file



trying to learn c++ with no money was a total pain in the ass.. after all this time i finally found a language that's free, has decent power (can create exportable .exes.. want one??) and is well documented (after giving up several years ago back when the old people saying 'qbasic is in dos' still thought it was.)

i don't believe it codes .dlls (for vsti) directly but it handles a lot of other things, ie. com ports. i wouldn't expect the performance of c++ but if you've ever wanted to build your own midi sequencer, audio arranger and are as abhorrent of finance as i, here you go.

already written my own 'wordpad' app after about 5 hours! successfully opened, created, edited files!



[ back to forum ]               [quote]

Message 2/45                 Date: 26-Mar-03  @  06:03 PM   -   RE: want to program?

BJT

Posts: 90

Link?:  No link

File?:  No file



Basic...yech



[ back to forum ]               [quote]

Message 3/45                 Date: 26-Mar-03  @  08:20 PM   -   RE: want to program?

Zazza

Posts: 1502

Link?:  No link

File?:  No file



i love basic..



[ back to forum ]               [quote]

Message 4/45                 Date: 26-Mar-03  @  08:50 PM   -   RE: want to program?

Paullyboy8440

Posts:

Link?:  No link

File?:  No file



Haven't done anything in basic for so long - I don't even know if I even still have it. I learned basics of C++ though. then after learning that I decided that programming was not my thing.  



[ back to forum ]               [quote]

Message 5/45                 Date: 26-Mar-03  @  09:12 PM   -   RE: want to program?

Zazza

Posts: 1502

Link?:  No link

File?:  No file



C++ is very cool, but evil...



[ back to forum ]               [quote]

Message 6/45                 Date: 26-Mar-03  @  11:17 PM   -   RE: want to program?

milan

Posts: 5701

Link?: Link

File?:  No file



baaaaaaaasic! havent seen that since i did a programming course in the 80's as a kid... glad to see its still alive at least!



[ back to forum ]               [quote]

Message 7/45                 Date: 26-Mar-03  @  11:58 PM   -   RE: want to program?

cheddar

Posts: 673

Link?:  Link

File?:  No file



i say its interesting the relationships between languages and time, what can go in now



[ back to forum ]               [quote]

Message 8/45                 Date: 28-Mar-03  @  12:56 AM   -   RE: want to program?

xoxos

Posts: 6231

Link?: Link

File?:  No file



rapid q. best running interactive web media i've ever used. the centipede's rather gilliamesque.



[ back to forum ]               [quote]

Message 9/45                 Date: 28-Mar-03  @  01:30 AM   -   RE: want to program?

psylichon

Posts: 4573

Link?: Link

File?:  No file



long live pascal :P



[ back to forum ]               [quote]

Message 10/45                 Date: 28-Mar-03  @  08:02 AM     Edit: 28-Mar-03  |  09:57 AM   -   RE: want to program?

Zazza

Posts: 1502

Link?: Link

File?:  No file



Brainfuck programming language

The Brainfuck programming language consists of eight commands, each of which is represented as a single character.

> Increment the pointer.

< Decrement the pointer.

+ Increment the byte at the pointer.

- Decrement the byte at the pointer.

. Output the byte at the pointer.

, Input a byte and store it in the byte at the
pointer.

[ Jump past the matching ] if the byte at the pointer is zero.

] Jump to the matching [.



[ back to forum ]               [quote]

Message 11/45                 Date: 28-Mar-03  @  06:59 PM   -   RE: want to program?

queasy00

Posts: 80

Link?:  Link

File?:  No file



what do you mean by "learning c++ with no money is a pain in the ass"? i learned it without money... just grab a book from the library and dL a free compiler.

if you're on linux, fire up gcc.

i dunno.. i love c/c++ (psy metnioned pascal.. yeah, that was the bomb too, but i've forgotten most of that though occassionally the := slipts through ;))...

anyway.. i'm waiting for swan to come by.. he mentioned darkbasic (? haven't taken a look yet)  

-j



[ back to forum ]               [quote]

Message 12/45                 Date: 28-Mar-03  @  07:22 PM   -   RE: want to program?

nomad

Posts: 192

Link?: Link

File?:  No file



that language looks like generic turing machine  

borland also used to give away an older version of turbo C++ or the big borland C++.... should still be on their website... i think it was 5.0...



[ back to forum ]               [quote]

Message 13/45                 Date: 28-Mar-03  @  08:03 PM   -   RE: want to program?

Steve Roughley

Posts: 1178

Link?:  No link

File?:  No file



Yeah, Borland do the very good JBuilder and C++Builder environments. Both industry standards and both available free as a 'Personal' versions.

As for Basic/VB and Pascal/Delphi, if I ever hear of those languages again I'll shoot someone!  

Regards.

Steve.



[ back to forum ]               [quote]

Message 14/45                 Date: 28-Mar-03  @  08:28 PM   -   RE: want to program?

swanofnever

Posts:

Link?:  No link

File?:  No file



hey,
i too have a fondness for "toy" languages, such as the new wave of BASIC-based langs (darcbasic/realbasic/etc.).. but at the same time, there's a certain degree of limitation.

it's great that a language lets you get programing quick+easy, but when you have to design your app to get around the limitations of the language.. it's almost more work than just learning c++. (i speak from intensely frustrating personal experience.)

rapid-q looks decent.. (um.. why is it running in the java VM though?!). i suppose it's just a clever BASIC-style wrapper around a few core parts of java?! (i.e a simple cut-down version of java..) um.. it might just be easier to learn "basic" java or even javascript.

recently i had to actually code in BASIC (i.e no function calls, etc. etc.) and it really made me realise how much i love modern languages.

i MUST recommend ActionScript ("scripting" lang of flash.. almost identical to javascript); it's probably _the_ slowest language, but.. it's sooooooo easy to use. i realise it involves having $$$ to buy flash... but, it's an extremely small, friendly-to-use lang. dynamic EVERYTHING. (the tradeoff is, it can check very little beyond syntax errors at "compile"-time)

anyway, let me just correct xoxox: if you want to learn programming, try AS. it's VERY simple; much prettier/nicer/cleaner/etc. than BASIC-style stuff. and you'll learn a bit of OOP too, instead of all that nasty SUB/FUNC "bollocks". (and the built-in graphics and sound APIs are, while basic, very simple to use. AAAND.. who doesn't love anti-aliased gfx?)

having said that, it's nowhere near as poweful, in terms of speed and capabilities (i.e no directX, etc.). BUT: if i had to learn programming in BASIC, i would kill myself. soooo ugly! and.. isn't it statically typed? etc.. kind of "unfriendly". not the kind of stuff "newbies" want to worry about...

anyway xoxox.. "rapid q. best running interactive web media i've ever used.".. um.. what about flash?!

raigan

p.s - also -- java and c++ are free, aren't they?! there are TONS of online books and tutorials.. and good compilers... etc.

p.p.s - AS is also cross-platform... haha!

p.p.p.s - sadly, it's also quasi-proprietary.. (the language spec/etc. are free/open, so technically someone could write a free AS compiler.. and a few people have, but not a fully-functional one like the embeded-in-flash one.. more like for use as a UI scripting tool for playstation games/etc..)

p.p.p.p.s - sorry about this deranged post...



[ back to forum ]               [quote]

Message 15/45                 Date: 28-Mar-03  @  10:14 PM   -   RE: want to program?

queasy00

Posts: 80

Link?:  Link

File?:  No file



oh no... actionscript. nooo!! don't! just don't do it! ;) hahah..

how 'bout vb if you don't want to learn c? then you get access to dx and it's reaaallly easy now.

-j



[ back to forum ]               [quote]

Message 16/45                 Date: 28-Mar-03  @  10:34 PM   -   RE: want to program?

xoxos

Posts: 6231

Link?: Link

File?:  No file



swan - there's a large amount of .cgi stuff for rapid q.. sort of amusing, the yahoo! groups files section is packed with .bas scripts 'to receive free pictures in your email..' i'm just trying to write a game and i've already learned 1/2 dozen ways to fuck up somebody's computer going thru the docs. it's like a language for evildoers.

that's the thing.. i started with borland's free c++ (fclt) AND bought a book, but it didn't have information on compile codes i was picking up bits of info from various places on the net.. i went thru some gnu sites but generally in reference to fclt, i felt like i didn't have a chance of actually putting anything together because i was finding a reference to one compile code in one place that sounded like i should be using it, but wasn't in my text. i guess it's all there for gnu then.

this was pretty bad as well.. there's several ways to put a bitmap on your form, and i had to go through 4 different databases before i could write a script that did what i wanted that worked despite what i took as a complete documentation. it's diaspora.. i don't like haivng to pester people "i know you write programming languages all day long, do you mind taking a second to tell me how to put a flippinmg box on my screen?" then you have to be all "thank you thank you"

so basically right now i'm kidding myself and saying "when i can buy an official c++ package, there will be sufficient documentation and examples.." even tho i know i'll probably have to write at least 15 pleading emails, go thru 30 sites et c. and pay several thousand dollars for the .dlls that make it work after you buy it, if i know the commercial market..

i figured this bastard out, i've had enough of sniffing chocolate starfishes trying to discern why the hell someone wouldn't just write one plain, simple, effective graphics call.. this works now.. i'll have some tutorials up soon since no one else realises that if you want to know how to put a box on the screen you don't want to pick apart some way-outta-your-way proprietary directx script to do it.

i think c++ is just an excuse to see who can come up with the longest variable/function names. damn, it might be antidisestablishmentarianismcount but you can just call it x, peeps! just a little tip from a basic person.



[ back to forum ]               [quote]

Message 17/45                 Date: 28-Mar-03  @  11:54 PM   -   RE: want to program?

Steve Roughley

Posts: 1178

Link?:  No link

File?:  No file



While on the subject, I am just on a 15 minute break from learning Server Side Java (J2EE for web apps) and I must say that I am very impressed. This is just what I expected from enterprise application development environments, but was let down with PHP and Allaire. This is such a brilliant and robust set of tools. If any of you get the chance, give it a go. You won't be able to create plugins with it, but it is really neat to learn.

Regards.

Steve.



[ back to forum ]               [quote]

Message 18/45                 Date: 29-Mar-03  @  05:30 AM   -   RE: want to program?

cheddar

Posts: 673

Link?:  Link

File?:  No file



any of zou bozs getting busy on xml. I never do but i want to know whz IBM and microshaft left W3C



[ back to forum ]               [quote]

Message 19/45                 Date: 29-Mar-03  @  07:35 AM   -   RE: want to program?

Zazza

Posts: 1502

Link?:  No link

File?:  No file



left W3C?



[ back to forum ]               [quote]

Message 20/45                 Date: 29-Mar-03  @  07:43 AM   -   RE: want to program?

Zazza

Posts: 1502

Link?:  No link

File?:  No file



x, if u want to do cross platform gui programming check put QT from www.trolltech.com

Free version: http://www.trolltech.com/download/qt/noncomm.html

Gives you gui designer etc.. then you just fill in the specific code in c++..

Id suggest gnu c++, free etc.. run cygwin on windows http://www.cygwin.com/setup.exe

And there's no shortage of help/examples on the web..



[ back to forum ]               [quote]

Message 21/45                 Date: 29-Mar-03  @  08:42 AM   -   RE: want to program?

cheddar

Posts: 673

Link?: Link

File?:  No file



erm not the whole thing just choreography group



[ back to forum ]               [quote]

Message 22/45                 Date: 29-Mar-03  @  01:32 PM   -   RE: want to program?

Zazza

Posts: 1502

Link?:  No link

File?:  No file



ok, yah, web services.. wel MS will want to make them proprietary .. politics.. usual crap..

MS, you gotta love 'em



[ back to forum ]               [quote]

Message 23/45                 Date: 01-Apr-03  @  10:48 PM   -   RE: want to program?

99devils

Posts: 2707

Link?: Link

File?:  No file



Web services.. Cold Fusion MX = fucking heaven for building web services...

I'd suggest Java if you want to learn a real-deal language that might actually be useful to you later on. There's lots of good suggestions for "learner" languages that have been mentioned above, I'd add Eiffel, but they're useless in the real world.

The JDK is free from Sun and includes a compiler. Java also has one of the most active online communities around, so lots of people can help you out.

-Craig



[ back to forum ]               [quote]

Message 24/45                 Date: 01-Apr-03  @  11:05 PM   -   RE: want to program?

swanofnever

Posts:

Link?:  No link

File?:  No file



hi,
i really don't know about java; the thing is, for a newbie, it seems a bit "heavyweight"; not much different from c++ (i.e both langs are equally complex).

like.. it's going to be hard to see the fundamental concepts involved in programming. again.. i REALLY must stress how clean and simple actionscript is. yes, it's not really much of a language, but it is DEFINITELY the best "learn the concepts" language i've used.

like.. if i show non-coder friends some source, they usually understand most of what's going on. which i doubt could be said for java.

also, there are like 3-4 different openGL-for-java libs, and NONE of them are any good!

but i definitely agree that it would be a good choice for learning how to "really" program once you get the basics.

aaaanyway..
raigan



[ back to forum ]               [quote]

Message 25/45                 Date: 02-Apr-03  @  10:45 PM   -   RE: want to program?

xoxos

Posts: 6231

Link?: Link

File?:  No file



this stuff works, really...

i've just created an app for batch processing renaming duties.. you know, when you have a sample library with some stupid naming designation or a load of mp3s with !!s or Layer3 in their name, you run them through this and get them all tidy.. or when your prog only uses so many characters of the name.. et c.

i've looked for something like this a few times before (not for a while tho :p) but now the bastard's built. have to put in a few different name formatting options and perhaps add a script function ie. to automatically deal with !!s scenario or ?? suggestions?

freeware 1 motherfuckers 0



[ back to forum ]               [quote]

Message 26/45                 Date: 03-Apr-03  @  07:29 AM   -   RE: want to program?

cheddar

Posts: 673

Link?:  Link

File?:  No file



I am also amazed free pdf writer exists. pdf995



[ back to forum ]               [quote]

Message 27/45                 Date: 04-Apr-03  @  12:16 AM   -   RE: want to program?

xoxos

Posts: 6231

Link?: Link

File?:  No file



well rename's been done since i last searched a year or so ago. i was always shocked no one else seemed to think it useful.



[ back to forum ]               [quote]

Message 28/45                 Date: 04-Apr-03  @  04:29 PM   -   RE: want to program?

swanofnever

Posts:

Link?:  No link

File?:  No file



doesn't soundforge do that? at least.. i'm pretty sure i managed all my renaming crap via .bat files and/or whatever editor i was using..

i'll check that thing out though, for sure.. once i manage to find some time....

raigan



[ back to forum ]               [quote]

Message 29/45                 Date: 07-Apr-03  @  04:52 PM   -   RE: want to program?

99devils

Posts: 2707

Link?: Link

File?:  No file



I have to disagree about ActionScript swanofnever.. That language is way too easy to pick up bad habits in, and the paradigm of programming Flash doesn't translate to any other paradigm I know of. I wouldn't do it as a first language, definately not as a learning exercise. It's great if you're only going to program in Flash though   FYI - ActionScript is ECMA script which is for most intents and purposes JavaScript. These are scripting languages and not full blown programming languages.

See, the thing is learning how to program PROPERLY is ery different from learning how to program. Sure you can hang yourself in Java   You can hang yourself in anything!

-Craig



[ back to forum ]               [quote]

Message 30/45                 Date: 07-Apr-03  @  05:17 PM   -   RE: want to program?

nobody

Posts: 81

Link?: Link

File?:  No file



I fucking hate Flash animation. It's just plain annoying, in every single instance I've ever been subjected to. Fuck you macromedia, fuck you Flash enthusiasts if there are such a thing. Pre-emptive fuck you to them. There.



[ back to forum ]               [quote]

Message 31/45                 Date: 07-Apr-03  @  08:34 PM   -   RE: want to program?

Steve Roughley

Posts: 1178

Link?:  No link

File?:  No file



Heheheh   Lol @ nobody! I know exactly how you feel!

Steve.



[ back to forum ]               [quote]

Message 32/45                 Date: 08-Apr-03  @  07:10 AM   -   RE: want to program?

cheddar

Posts: 673

Link?:  Link

File?:  No file



but you got to agree it is accessable beauty



[ back to forum ]               [quote]

Message 33/45                 Date: 08-Apr-03  @  10:39 AM   -   RE: want to program?

Zazza

Posts: 1502

Link?:  No link

File?:  No file



I call it 'Skip-Intro' technology...



[ back to forum ]               [quote]

Message 34/45                 Date: 08-Apr-03  @  06:03 PM   -   RE: want to program?

99devils

Posts: 2707

Link?: Link

File?:  No file



True dat.. I was never interested until the latest version which introduced data-binding. Now I can use it for user interfaces to web applications. It saves a lot of work over straight HTML and/or Java.

-Craig



[ back to forum ]               [quote]

Message 35/45                 Date: 08-Apr-03  @  07:03 PM     Edit: 08-Apr-03  |  07:04 PM   -   RE: want to program?

nobody

Posts: 81

Link?: Link

File?:  No file



Skip-Intro technology, yes..

That I agree with.

Accessible beauty? I don't happen to think so.

I'm sure you do have your uses for it, Craig, and I'm glad you don't think I'm saying anything against you - but I never figured you as the misinterpreting type.. So..

The thing that really pisses me off about Flash animation is how carried away people get with it, and how coooooooool they think it is to bombard you with this.. stuff.. eh. Now appearing on your screen whether you like it or not! "Slick" ads for bullshit movies like Bulletproof Monk! Eh. I just wanted to look up an actor on imdb.com, not be slapped with the lastest money-making scheme of some idiots.. blablabla..

Hi Craig.



[ back to forum ]               [quote]

Message 36/45                 Date: 08-Apr-03  @  08:18 PM   -   RE: want to program?

swanofnever

Posts:

Link?:  No link

File?:  No file



hey,
well.. i agree, but -- there's a big difference between flash animation, and AS. it's kind of like "virus presets" vs. "virus synth engine". you know?

what i wanted to say was:

"These are scripting languages and not full blown programming languages"

well.. yes, it's javascript. but.. it supports inheritance, encapsulation, etc.. what makes it not "full blown"? the fact that "script" is part of it's name?

i suppose it's really semantics -- i don't know what the difference between a scripting language and a real language is. but...

what bad habits?! i disagree with the "it doens't apply to other langs" thing -- all it does is abstract much of the machine-dependant stuff, like data types/etc.

i just don't think knowing about the difference between chars/strings/floats/longs/etc. is integral to programming. it's just language-specific syntax.

any examples of bad habits?

raigan



[ back to forum ]               [quote]

Message 37/45                 Date: 08-Apr-03  @  08:19 PM   -   RE: want to program?

xoxos

Posts: 6231

Link?: Link

File?:  No file



you might even say "it's cool when you go to a site to look for it, but it sucks if it's there and it's not the thing you're looknig for."



[ back to forum ]               [quote]

Message 38/45                 Date: 09-Apr-03  @  02:12 PM   -   RE: want to program?

99devils

Posts: 2707

Link?: Link

File?:  No file



What makes it a scripting language is that it doesn't do a whole hell of a lot without the host environment (Flash). With Java or C you build from scratch. I'd say you're better off learning Javascript because it's more linear in nature.

As far as bad habits, the idea of stashing code in multiple layers or in different frames is whack. Of course this is less of an issue if you're following the best practices, but the best languages for learning to program FORCE you into the best practices by design of the language.. That's why they often teach things like Eiffel and Modula-2 in universitites. These languages are designed so that the way to accomplish something is laid out along the best practices for doing so in a more open language.

I don't know.. A lot of the things I have to bitch about in Flash I'd bitch about with any 4GL, like Powerbuilder or Visual FoxPro, or VB or whatever.. I don't think they make good learning tools. Put it this way, someone who knows C++ can easily pick up something like FoxPro. Someone who knows FoxPro isn't going to have a prayer at C++, they have a lot more learning to do.

These are just my opinions remember   I'm biased because I came through the standard university computer science program, and compared to my peers who didn't have the foundations I had, I write cleaner, faster, more maintainable code. I also pick up new languages more easily, and understand new concepts more easily than they do.

-Craig

Hi Nobody!
-Craig



[ back to forum ]               [quote]

Message 39/45                 Date: 09-Apr-03  @  06:24 PM   -   RE: want to program?

swanofnever

Posts:

Link?:  No link

File?:  No file



hey,

i'm in 4th-year compsci (minor).. and it appears i've had a somewhat different experience ;)

i definitely agree with "they have a lot more learning to do." but.. i really don't think this is a bad thing.

it's mostly my experience with non-coding friends: looking at AS source, they can get the gist of what's what. this lets them gradually understand the basics in a more abstract setting. i.e they understand what a variable is.

they DON'T need to understand the 132586 niggling details about data types. when they move to c++, they _will_ need to learn this, but they'll probably find it easier to expand their knowledge of variables than to have to swallow both the abstract idea of what a variable IS, and million implementation-specific things about how variables work in c++, simultaneously.

i suppose my argument is, AS is better to learn in because it allows you to learn in small increments, from the very abstract to the very specific. in c++, both abstract concept and implementation are both sort of lumped together, and that makes it harder for people to grasp the specifics as simple implementations of a more eneral, abstract concept. like, it's harder to seperate the ideal thing from the way c++ handles the thing. but.. to each his own i suppose.

however, i think that AS is the future in terms of programming, because to be honest, i don't CARE about how the machine is storing my numbers, and i shouldn't HAVE to care -- eventually (hopefully), machines will be too complex for us to be able to really map our though-concepts onto physical processes in a meaningful way.

20 years ago, human-written asm ruled over compilers. now, most of the time the compiler wins, because CPU architecture is soooooo much more complex now -- we can no longer really fit all of the processes involved into our minds at the same time. but.. well, whatever. blahblahblah..

to me, the important part of programming is the abstract "devellop an algorithm to solve a problem" part, and actually expressing the algo in terms a computer can understand is sort of the boring, crappy, hopefully-soon-fully-automated task. [having said that, one course i'm taking right now is numerical methods, so i definitely see how sometimes, the implementation details need to influence the algo. but.. i don't agree that this is how things SHOULD be.]

aaaaaaaaanyway..

i know exactly what you mean about frame crap -- i HATED that shit. and then flashMX arrived, and guess what? now things work the way they should -- you can write an entire program all in a single text file, without doing anything flash-specific (i.e nomucking w/ movie clips, _all_ you need is a text file). woo!

also, you don't need flash to write in AS, there are a few 3rd party apps which will generate bytecode from txt. [and, just in case you miss c, you can hack the byte-code (as close as you get to assembly) with flasm.]

since the specs for AS are open, a lot of people have develloped various open tools..

aaanyway.. maybe it's simply due to lazyness on my part, but.. i prefer writing in AS to java/c++ simply because, most of the time i don't CARE about writing a "real" program, i care about the algos. like: does my solution work?

once i get a stable stack of boxes in my *!%$*% physics sim, THEN i'll worry about porting it to a real lang. until then, i want to be able to know that the instability is due to a problem with my approach/solution, and not simply a problem with my description of my solution.

okay, end of rant.

raigan



[ back to forum ]               [quote]

Message 40/45                 Date: 10-Apr-03  @  02:22 PM   -   RE: want to program?

99devils

Posts: 2707

Link?: Link

File?:  No file



See, again I have to disagree. A weakly typed language like ActionScript sets you up for lots of problems later on. How data is stored and accessed is THE fundamental building block of programming. A weakly typed language allows you to bend the rules - this is often convenient for the programmer but depending on a user's inputs you can experience anything from wierdness to outright crashes at runtime. Strongly typed languages offer a measure of security against this. They are also easier to maintain.

A lot of this doesn't become apparent until you graduate, get a real job, and inheirit maintenance duties to a 5 year old program, and nobody has any idea how it works. With C++, you could look at the parameters to the function you're working on and see what's coming in, what type it is (which often gives you a clue to what it's use will be). If the variables aren't carefully named and the code carefully commented (hahaha!! Good fucking luck!), then you're screwed and you'll waste hours going through the code trying to figure out exactly what goes into the variable "v1_c" and what it's purpose is.

4GLs and script-based languages are great tools, and they're useful - much of my professional life has been spent in 4GL tools (Cold Fusion, Visual FoxPro).. If you ever have to do database programming though, like Oracle stored procedures, you're going to have a steep learning curve. If you were trained in Modula-2 or C, or preferably ADA (the syntax is very similar), then you're going to have a much easier time of it. You can also program the DB in Java now..

But anyways, back to the point... What you cite as an advantage is something I see as a bad habit, because it results in code that's more difficult to maintain. You really need to pay attention to everything your professors tell you where your gut reaction is "That's stupid, this way is easier"... It's easier when it's one guy writing a 200 line program that he's going to submit for a project and never see again.. But when you're part of a 4 person team collaborating on a million-line program that's going to be in use for 5-10 years, then it's a whole different ball game.

It's not that you can't learn using ActionScript (although I'd recommend Javascript over ActionScrit for previously mentioned reasons).. And it's going to depend on what you intend to do with that knowlege. Xoxos probably just wants to learn how to program so he can build various widgets for himself and basically just learn for learning's sake, but if you intend to apply that knowlege in the business world it's going to get you into habits that wind up producing inferior code.

My 2 cents anyways...

-Craig



[ back to forum ]               [quote]

Message 41/45                 Date: 10-Apr-03  @  05:50 PM   -   RE: want to program?

swanofnever

Posts:

Link?:  No link

File?:  No file



hey,

the main difference between AS and other langs is that you the programmer are forced to have more discipline (i.e there's no formal/automatic mechanism present in the language for "making" a process private or public. however, if you simply treat/use it as private/public, there's no difference)...

sadly, i learnt the "you can ace all your assignments but still know nothing abour real programming" thing in 2nd year. that really sucked. to be honest, i'm hoping to never have to face "real" programming, by getting into game coding -- smaller teams, and WAY looser practices.

and.. i ALWAYS comment and label things. i HAVE to, because (due to AS), flash can't really tell me anything about anything -- i need to tell my(future)self.

aaaanyway, i have no doubt that you know what you're talking about, but.. i say ;P to the business world. it's gross!! i want some damn creativity with my coding! otherwise i'm just another of the legion of IT monkeys.

raigan



[ back to forum ]               [quote]

Message 42/45                 Date: 10-Apr-03  @  06:25 PM   -   RE: want to program?

99devils

Posts: 2707

Link?: Link

File?:  No file



Hmmm.. There's some truth in that, but I run across things all the time which require very creative and intricate solutions. Business problems are just another set of requirements to be met..

-Craig

PS - the real world pays better  



[ back to forum ]               [quote]

Message 43/45                 Date: 11-Apr-03  @  04:37 AM   -   RE: want to program?

xoxos

Posts: 6231

Link?: Link

File?:  No file



no it doesn't   i'm part of a team for a 'shamanic journey' vid game.. player enters into different realms by acquiring entheogens and battles against manipulatuve moneyed enterprises in medieval mileu... way more rewarding than money  



[ back to forum ]               [quote]

Message 44/45                 Date: 11-Apr-03  @  10:25 AM     Edit: 11-Apr-03  |  10:27 AM   -   RE: want to program?

Fhalyndon'gan

Posts: 1444

Link?: Link

File?:  No file



"Darkbasic"? Isn't that like Joy Division or something.  



[ back to forum ]               [quote]

Message 45/45                 Date: 11-Apr-03  @  02:11 PM   -   RE: want to program?

99devils

Posts: 2707

Link?: Link

File?:  No file



Xoxos - maybe, but the real world just rewarded me with a Nord Modular so there  

-Craig



[ back to forum ]               [quote]

Viewing all 45 messages  -  View by pages of 10:  1 2 3 4 5

There are 45 total messages for this topic





Reply to Thread

You need to register/login to use the forum.

Click here  to Signup or Login !

[you'll be brought right back to this point after signing up]



Back to Forum