Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
7answers
15k views

Lua vs. Other scripting languages

I wonder why a lot of programmers claim that Lua is faster then any other scripting language? What did they do that is more efficient then other languages? Is there something completely different in ...
19
votes
24answers
12k views

Why don't people use PHP for desktop applications?

Other scripting languages popular on the web, such as Python and Ruby, are used in desktop applications. However, I've rarely (if ever) seen a PHP application designed to be deployed on a desktop. Why ...
14
votes
7answers
443 views

Embedding a Low Performance Scripting Language in Python

I have a web-application. As part of this, I need users of the app to be able to write (or copy and paste) very simple scripts to run against their data. The scripts really can be very simple, and ...
13
votes
14answers
5k views

Useful PowerShell one liners

Provide one line PowerShell script that you found useful, one script per answer please. There is a similar question here, but this one gives only links to pages with scripts, lets answers one by one ...
9
votes
3answers
432 views

Clean, self-contained VM implemented in C and under 100-200K compiled code size?

I'm looking for a VM with the following features: Small compiled code footprint (under 200K). No external dependencies. Unicode (or raw) string support. Clean code/well organized. C(99) code, NOT ...
8
votes
3answers
528 views

What happened to Rhino? Is it still under active development?

The last release was in 2008-03-06. What happened to it? Is it still under active development? Are there any replacements?
8
votes
4answers
1k views

Deploying application with Python or another embedded scripting language

I'm thinking about using Python as an embedded scripting language in a hobby project written in C++. I would not like to depend on separately installed Python distribution. Python documentation seems ...
8
votes
9answers
1k views

Suggestions for writing a programming language?

What tips can you give a person who is looking to write a programming or script language? I am not worried about how to program nor design a compiler but how to develop one quickly using tools and ...
8
votes
11answers
821 views

Scripting in Java

Me and some friends are writing a MORPG in Java, and we would like to use a scripting language to, eg. to create quests. We have non experience with scripting in Java. We have used Python, but we are ...
7
votes
9answers
2k views

Scripting language for C++

I'm getting a little rusty in scripting languages, provided they're popping like mushrooms lately :) Today I thought that it would be nice to have a scripting language that talks seamlessly to C++, ...
7
votes
8answers
636 views

Why are the interpreters of all popular scripting languages written in C (if not in C at least not in C++)?

I recently asked a question on switching from C++ to C for writing an interpreter for speed and I got a comment from someone asking why on earth I would switch to C for that. So I found out that I ...
7
votes
7answers
1k views

What is the smallest Lisp-ish interpreter? Compiler?

I'm looking at ways to embed Lisp or Scheme in a C program, but I want to do so without growing the program size considerably. It doesn't need to be fast, or support lots of features. (Though macros ...
7
votes
8answers
437 views

What is your preferred scripting language in java world (scripting language on JVM) and way?

What is your preferred scripting language in java world (scripting language on JVM) and way? When do you prefer your scripting language over java (in what situations for example for prototyping)? Do ...
7
votes
12answers
3k views

What's the best Scripting Language for Natural Language Processing?

My graduate research is in Arabic Speech Recognition. My work involves dealing with text alot for different kinds of tasks such as: Cleaning up messy transcriptions, I work with diacritized text and ...
7
votes
11answers
4k views

When to use a scripting language?

When should one use a scripting language over a more verbose, compiled language like C++. C# or Java? And to make the question a little more interesting, let's answer the questions like this: You ...
6
votes
5answers
407 views

What do people mean when they say “Perl is very good at parsing”? [closed]

What do people mean when they say "Perl is very good at parsing"? How is Perl any better or more powerful than other scripting languages such as Python or Ruby?
6
votes
11answers
390 views

Debugging a scripting language like ruby

I am basically from the world of C language programming, now delving into the world of scripting languages like Ruby and Python. I am wondering how to do debugging. At present the steps I follow is, ...
5
votes
4answers
402 views

Which scripting languages support long (64 bit) integers well?

Perl has long been my choice scripting language but I've run into a horrible problem. By default there is no support for long (64 bit) integers. Most of the time an integer is just a string and they ...
5
votes
5answers
123 views

Where does scripting fit in today

I was wondering what place scripting has in today's world of IDEs and GUIs. I'm new to programming and am wondering at what point I should, if at all, open up the PowerShell terminal for a particular ...
5
votes
7answers
310 views

How fast should an interpreted language be today?

Is speed of the (main/only viable) implementation of an interpreted programming language a criteria today? What would be the optimal balance between speed and abstraction? Should scripting languages ...
5
votes
2answers
926 views

Scripting Language in a Sandbox for a C#/.NET Application

[This question is similar to this one, but I am also interested in the possibility of a sandbox.] I am considering embedding a scripting language in my C#/.NET application and then exposing some of ...
5
votes
13answers
3k views

Scripting language choice for initial performance

I have a small lightweight application that is used as part of a larger solution. Currently it is written in C but I am looking to rewrite it using a cross-platform scripting language. The solution ...
5
votes
1answer
301 views

Writing a language for the Windows Scripting Host (WSH)

Has anyone had any experience targetting WSH in the way that VBScript, JScript, PerlScript, xbScript and ForthScript (among other) do, such that the language can be used from the command line and ...
4
votes
2answers
263 views

Scripting languages on iOS games

First of all, there are other topics covering this subject but they were posted before Apple made the latest changes in its licenses this year. I'm quite confused with Apple's iOS developer agreement ...
4
votes
1answer
250 views

JSR-223 vs JSR-241 - Scripting language

What is main difference between JSR-223 and JSR-241? If I understood correctly: JSR -223: introduces a scripting language engine in Java, thats it! You are free to use whatever scripting language ...
4
votes
3answers
115 views

Looking for a new language that supports both interpreted and native compilation modes

I currently program in Perl, Python, C#, C, C++, Java, and a few other languages, and I'm looking for a new language to use as a primary when doing personal projects. My current criteria are: can ...
4
votes
3answers
233 views

Why are most scripting languages loosely typed?

why most of the scripting languages are loosely typed ? for example javascript , python , etc ?
4
votes
3answers
414 views

Simple, secure scripting language implemented in JavaScript?

For a specific web application, I would like to implement a scripting language to assist in partially automating certain tasks. I cannot modify the web application itself, but I can send JavaScript ...
4
votes
5answers
360 views

Looking for an embeddable scripting language for C++ with 64-bit support and Cross Platform

I'm looking for a scripting language that works on 32-bit and 64-bit machines as well as on Windows and Linux. I will be embedding it into a C++ application so I prefer it to be natively written in ...
4
votes
6answers
514 views

Using Groovy as a scripting language

I prefer to use scripting languages for short tasks, anything such as a really simple http bot, bulk importing/exporting data to/from somewhere, etc etc... Basic throw-away scripts and simple stuff. ...
4
votes
3answers
1k views

Erlang Scripting Language Interpreter

Does anyone know of an implementation of a scripting language interpreter (something appropriate for a game) in Erlang? Something like Javascript or Lua would be great.
4
votes
2answers
415 views

How can I automate and share sessions between Firefox and Perl?

Is it possible to do part of a web flow in Perl and then transfer the rest of the session to Firefox? I need to retry(with Perl) logging in to a website which returns 500 every now and then on a ...
4
votes
6answers
271 views

New languages

Does anybody know of a website that lists new scripting/programming languages (or old ones). I'm not talking about new versions of existing languages, just new or old ones that probably nobody has ...
4
votes
4answers
814 views

Best way to automate tasks in windows

Mac has applescript 'built in' and I've found its pretty nice to work with for automating stuff. What's the best windows equivalent?
4
votes
12answers
995 views

Is there a “safe” subset of Python for use as an embedded scripting language?

In the many Python applications I've created, I often create simple modules containing nothing but constants to be used as config files. Additionally, because the config file is actually a Python ...
4
votes
4answers
333 views

Why would one want to use ruby over python or vice versa?

I wanted to know, while deciding which language or technology to use for implementing an idea; a design, what are the factors involved in making a decision? Specifically talking about popular ...
3
votes
3answers
214 views

Is there any scripting language that's fast, easy to embed, and well-suited for high-level game-programming?

First off, I'm aware that there are many questions related to this, but none of them seemed to help my specific situation. In particular, lua and python don't fit my needs as well as I could hope. It ...
3
votes
4answers
180 views

statically typed, embeddable, compilable scripting langage

I'm lookign for a langage with the following features : SWIG-compatible, or similar. Compatibility with C++ should be easy : C, C++, AllegroCL, C# - Mono, C# - MS .NET, CFFI, CHICKEN, CLISP, ...
3
votes
1answer
385 views

How do I set up jsr223 scripting with scala as scripting language

So far I have tried the sling implementation for jsr223 scripting for scala, but was not able to get it set up correctly. when I do this: public static void main(String[] args) { try { ...
3
votes
1answer
306 views

fsi.exe Assembly: Anyone know how to embed it?

Long time reader, very first question. fsi.exe is a .NET executable and therefore contains its own assembly complete with all the yummy methods and whatnot fsi uses to execute F# scripts. Looking at ...
3
votes
5answers
456 views

VB6 Parser/Lexer/Scripter

I've got a game in VB6 and it works great and all, but I have been toying with the idea of creating a scripting engine. Ii'm thinking I'd like VB6 to read in flat text script files for me and then ...
3
votes
3answers
136 views

How to get started with embeddable scripting?

I am working on a game in C++. I've been told, though, that I should also use an embeddable scripting language like Lua or Angelscript, but to be honest, I have no idea how or why. What advantages ...
3
votes
1answer
282 views

Please recommend good reading about Squirrel

Please, share your favorite links on this language where one can learn the best of it. And also, please describe in few words the most important features of this language differing it form others ...
3
votes
4answers
1k views

Java 6: Examples for implementing own scripting language using javax.script?

I really can't find good examples for implementing own scripting language using javax.script ... I need just something to start. Documentations Examples Tutorials Videos Presentations slides (PDF) ...
3
votes
8answers
2k views

Game Engine Scripting Languages

I am trying to build out a useful 3d game engine out of the Ogre3d rendering engine for mocking up some of the ideas i have come up with and have come to a bit of a crossroads. There are a number of ...
2
votes
3answers
189 views

Is Ruby a scripting language or an interpreted language?

I just noticed that in the wikipedia page of Ruby, this language is defined as interpreted language. I understood that probably there's something missing in my background. I have always known the ...
2
votes
3answers
256 views

Code Validation Tools for Scripting Languages

I spent some two hours trying to understand why the JavaScript file I am including in my Facebook application is not showing when I view the source of my page. Then guess what the problem turned out ...
2
votes
8answers
562 views

Good compilers for compiling perl/python/php scripts into linux executables?

I am working on a project that requires reading text files, extracting data from them, and then generating reports (text files). Since there are a lot of string parsing, I decided to do it in Perl or ...
2
votes
3answers
248 views

Storing date and time as epoch vs native datetime format in the database

For most of my tasks I find it much easier to work with date and time in the epoch format: it's trivial to calculate timespan or determine if some event happened before or after another, I don't ...
2
votes
7answers
417 views

What are modern and old compilers written in?

As a compiler, other than an interpreter, only needs to translate the input and not run it the performance of itself should be not that problematic as with an interpreter. Therefore, you wouldn't ...

1 2 3