Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » script writer = computer programmer? or NO??
Closed Thread
Old 09-09-2006, 01:03 AM   #1 (permalink)
OnlyCurious's Avatar
 
Ultra Techie

Join Date: Dec 2004

Posts: 611

OnlyCurious

Send a message via AIM to OnlyCurious Send a message via Yahoo to OnlyCurious
Question script writer = computer programmer? or NO??

Hey guys,

Thought I might ask the programmers here.

What is the difference between a programmer and a script writer??


I know someone who said he was a script writer and told me that he wasn't a programmer. Can somebody please tell me the difference between the two? I searched everywhere and cannot find what a script writer does...... if there is a difference.

Thanks!
__________________
Use my advice at your own risk.

My rig:
CoolerMaster Centurion 5
SamSung 20" LCD
Intel E6750 @ 2.66Ghz
Gigabyte p35-ds3r
Patriot Extreme 2gb 4-4-4-12
Sapphire X1950XT 256mb
Samsung 500gb @ 7200
PSU Xclio GreatPower 550W
Samsung DVD Burner
Logitec X-230 2.1
OnlyCurious is offline  
Old 09-09-2006, 01:13 AM   #2 (permalink)
Vybuni's Avatar
 
Monster Techie

Join Date: Sep 2005

Location: Cleveland

Posts: 1,486

Vybuni is on a distinguished road

Default

Script Writers write scripts. (duh). Scripts are like mini programs. They are basically made to do certain tasks automatically. Whereas programming is writing full blown programs.

wikipedia on scripts
__________________
Vybuni is offline  
Old 09-09-2006, 03:19 PM   #3 (permalink)
OnlyCurious's Avatar
 
Ultra Techie

Join Date: Dec 2004

Posts: 611

OnlyCurious

Send a message via AIM to OnlyCurious Send a message via Yahoo to OnlyCurious
Default

That's a very vague explanation... what do you mean by mini programs? Nobody can explain this for some reason. What are scripts?
__________________
Use my advice at your own risk.

My rig:
CoolerMaster Centurion 5
SamSung 20" LCD
Intel E6750 @ 2.66Ghz
Gigabyte p35-ds3r
Patriot Extreme 2gb 4-4-4-12
Sapphire X1950XT 256mb
Samsung 500gb @ 7200
PSU Xclio GreatPower 550W
Samsung DVD Burner
Logitec X-230 2.1
OnlyCurious is offline  
Old 09-09-2006, 05:45 PM   #4 (permalink)
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,410

office politics will become famous soon enough

Default

how about this? scripts require a application to execute the tasks whereas a application gets converted to machine code and is executed by the OS.

examples:

vbscipts are executed by wscript.exe or cscript.exe
php scripts are executed by the webservers php installation

c, vb, python, etc gets compiled into machine code that can be executed by windows


things is im now starting to study c# .net and the book tells me that when i compile code, its turned into code to be used by the CLR which will pass it to the JIT compiler to produce the machine code. Can anyone elaborate on this? You must have the .net framework installed to run .net apps so its not executed by the OS?
office politics is offline  
Old 09-10-2006, 12:41 AM   #5 (permalink)
 
Software Developer

Join Date: Mar 2006

Location: Columbus, OH

Posts: 569

jaeusm is on a distinguished road

Default

Technically, programs are sets of instructions that your computer executes. Scripts are programs.

People tend to differentiate between scripts and programs for various reasons. Scripts are typically written in a very high level language that is often very limited in scope, like shell scripts. However, there are other very high level languages that are full featured, like Python, that are dubbed "scripting languages". Thus, sometimes python programs are referred to as "scripts". There really is no consensus, but in the most technical sense, a script writer is a programmer. Your friend is most likely avoiding the "programmer" designation because he doesn't work in a lower-level language, like C or C++.

Quote:
things is im now starting to study c# .net and the book tells me that when i compile code, its turned into code to be used by the CLR which will pass it to the JIT compiler to produce the machine code. Can anyone elaborate on this? You must have the .net framework installed to run .net apps so its not executed by the OS?
C#, like java, is compiled into an intermediate language (called byte code in java, and Microsoft Intermediate Language (msil) in C#). The java byte code is then interpreted line-by-line as the program executes. In .NET, msil is compiled on the fly as needed. So, yes, .NET is doing the work here -- not Windows directly.
jaeusm is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On