Programming/scripting languages?

33 replies [Last post]
Joined: 04/10/2009

What programming/scripting languages are you familiar with?

I have basic knowledge in SB(Small Basic)and now I'm really into ActionScript 2.0 Tongue

Please comment before deleting!

Wink

Crazeh man!

Joined: 03/31/2009

I'm not going to delete everything! Smile And don't know about scripting

My Gooish profile | Videos on YouTube | My WOG Mods

Joined: 04/10/2009

What programming languages do you use?

Here's a example of AS2:

onClipEvent(load){
        mouse.hide;
        this.startDrag(true);
      }

Crazeh man!

Joined: 03/31/2009

I know Assembler/C/C#/C++/Java/VHDL

My Gooish profile | Videos on YouTube | My WOG Mods

Joined: 04/10/2009

Guys,what's your AIM,MSN?

Crazeh man!

Joined: 12/31/2009

Aim? Let me see about my aim...
EDIT: my AIM name is Gamewatch352.

Joined: 11/29/2009

I use AutoIt3 to do all of my programming. Code example:

#cs ---------------
Code example!!!!!
#ce ---------------
 
MsgBox(0, "Some text", "This is a dialog box!")
doStuff()
 
Func doStuff()
For $var = 0 to 10
MsgBox(0, "Loopy", "This is iteration " & $var)
Next
EndFunc

History: My first programming language was BASIC, in 2003 or so. I learned it from a nice edutainment title named "Learn to Program BASIC". Pretty nice program. If you can find a copy, check it out.

Author of World of Goo Portable. Download here!

Joined: 11/29/2009

Joris wrote:
Guys,what's your AIM,MSN?

Why's it matter?

Author of World of Goo Portable. Download here!

Joined: 10/16/2009

GMMan wrote:
Joris wrote:
Guys,what's your AIM,MSN?

Why's it matter?

He wants to add everybody so that we can all chat together...

Well, Joris, we COULD use the goofans chat...

Joined: 12/31/2009

Yea, right now my computer's unblocked (sweet! Read my current sig!)
so I can do that!
EDIT: okay, I tried goofans chat....and it's kinda suckish. first of all, it says that WHATEVER name I put into it, is in use! (even really stupid or nonsensical ones!)
I like aim a little better...

Joined: 10/16/2009

James wrote:
Yea, right now my computer's unblocked (sweet! Read my current sig!)
so I can do that!
EDIT: okay, I tried goofans chat....and it's kinda suckish. first of all, it says that WHATEVER name I put into it, is in use! (even really stupid or nonsensical ones!)
I like aim a little better...

That's just a security measure. It SHOULD automatically name you...if you're logged in.

Joined: 12/31/2009

Well, it isn't doing that apparently...

Joined: 10/16/2009

Well, that's strange. Innocent

Joined: 12/31/2009

Okay, now I'm suspicious...jk Wink

Joined: 04/10/2009

I CAN'T USE GOOFANS CHAT!!!I'M BANNED >:(

Crazeh man!

Joined: 12/31/2009

Banned? Well, you do tend to say cuss words and they aren't really needed here... I dunno, that's my guess.

Joined: 04/10/2009

I never used goofans chat because somebody has the same IP like me and got banned!

BTW:connect to AIM,we need to chat.

Crazeh man!

Joined: 12/31/2009

O.K. I'll be right there.

Joined: 11/29/2009

Joris wrote:
I never used goofans chat because somebody has the same IP like me and got banned!

BTW:connect to AIM,we need to chat.


Remember what I told you on the other thread? Go to efnet's website, and find another server. Oh wait, you didn't trust me.

Author of World of Goo Portable. Download here!

Joined: 04/10/2009

I got BANNED!!!I can't chat no matter what!!!

Crazeh man!

Joined: 10/16/2009

Guys, you're all off-topic again...

Joined: 11/29/2009

Enchanter49 wrote:
Guys, you're all off-topic again...

Ha, that's for you to say. You're always off topic.

So I guess this thread's dead?

Author of World of Goo Portable. Download here!

Joined: 01/02/2009

I mainly just know php and mmf2(although mmf2 is visual so that doesent count for as much Im guessing, but you can still make really cool things with it, builds to java)

98% of the teen population believes those "98% of ... if you are one of the 2% who don't copy this into your sig" sigs. copy and paste this into your sig if you are one of the 2% who don't believe them.
-madaco

Joined: 10/16/2009

I know a lot in VB and DOS, but I've also been working with C++ lately.

Here's a short program I made in C++ just now:

#include "stdafx.h"
#include <iostream>
using namespace std;
 
int main()
{
	double first; 															//the first number in the equation
	first = 1;
	double second;  														//the second number in the equation
	second = 1;
	double ans;															//the answer to the equation
	ans = 1;
	int error;															//a binary value telling whether or not the given inputs were valid (0=valid, 1=invalid)
	error = 0;
	int ret;															//the return value (typically 1-4 for */+- symbols)
	cout << "Type in a number: ";
	cin >> first;
	cout << "\n\nType in another number: ";
	cin >> second;
	cout << "\n\nWhat do you want to see?\n 1-Multiply\n 2-Divide\n 3-Add\n 4-Subtract\n\n";
	cin >> ret;
	if (ret == 1) 														        //if the input is 1, multiply the numbers
		ans = first * second;
	else
		if (ret == 2)														//if the input is 2, divide the numbers
			ans = first / second;
		else
			if (ret == 3)													//if the input is 3, add the numbers
				ans = first + second;
			else
				if (ret == 4)												//if the input is 4, subtract the numbers
					ans = first - second;
				else													//if the input is anything besides 1-4, display the error message
					error = 1;
	if (error == 0)															//if there is no error, show the answer to the equation
		cout << "\n\nThe answer is " << ans << "\n";
		system("pause");
		exit;
	if (error == 1)															//if the binary value of "error" is 1, return an error message
		cout << "\n\nERROR - return value is unavailable.\n";
		system("pause");
		exit;
	return 0;
}

This is basically a calculator, prompting the user for two numbers, asks for an operation to use (*/+-), and then displays the answer.

Joined: 11/29/2009

I can totally do that in less lines of code than you can. (In AutoIt, that is.)

Author of World of Goo Portable. Download here!

Joined: 12/31/2009

Great stuff you got there.

Joined: 10/16/2009

GMMan wrote:
I can totally do that in less lines of code than you can. (In AutoIt, that is.)

Well, so can I. This way it's easier to read than something with crazy indents and lines pushed together on one line.

BTW What is AutoIt?

@James: I have AIM now, send me a message (clericman@yahoo.com).

Joined: 12/31/2009

woot! Now we can talk on AIM!

Joined: 03/31/2009

Oh!! Finally! Now you can talk about your wedding plans! Smile

My Gooish profile | Videos on YouTube | My WOG Mods

Joined: 12/31/2009

...wtf?

Joined: 10/16/2009

Pavke wrote:
Oh!! Finally! Now you can talk about your wedding plans! Smile

um...wtf...GAY!!!..what!?...

@James: I actually meant that I was literally online NOW...