language

Are there any programming languages targeting PHP, besides haXe?

PHP doesn't get much love but is still a winner at easy deployment (for cheap hosting). Are there any programming languages (besides haXe) that target PHP? Writing applications in this language and then translating it into PHP, like some languages target C as an intermediate language? The Scheme implementation Chicken compiles into C....

Invent new language, syntax check?

i been thinking of a new programming language. Before trying to implement it i would like to check the syntax of code to see if there is much ambiguity. (i find it funny that its possibly to do var++++ to a class) ...

Free D tutorials?

Hello, I wondered where I could find any free and preferably good tutorials about the D programming language. The homepage only suggests the following: The D book Learn to Tango with D by Kris Bell, Lars Ivar Igesund, Sean Kelly and Michael Parker is now out. But I don't really want to spend any money on it (yet). So do you have ...

Your first serious programming project

As programmers, what was your first personal (not professional), serious, programming project? In which language was it written? Did it came to an end? Made it community wiki after advice. ...

OK Programming language from USB stick with no installation

I'm looking for a compiler or interpreter for a language with basic math support and File IO which can be executed directly from a memorystick in either Linux or Windows. Built in functionality for basic datastructures and sorting/searching would be a plus. (I've read about movable python, but it only supports windows) Thank you ...

If you are working in a non-English speaking country do you write your development documentation in your mother tongue?

I know that the "native" language of programming is English, but I was wondering on how many programmers dare to write the development comments/documentation in a language other than English or on the contrary take extra burden of using English everywhere to make their code international. UPDATE: The general wisdom is (based on the answ...

What is the best framework for desktop applets to begin with?

I would like to make a simple desktop application to learn this kind of thing. What language would you recommend for beginner? Would you recommend using framework for beginners? I'm experienced only in javascript and little bit of PHP. What do you say about cappuccino? ...

Is there open source software available that analyses a string and guesses the gender of the author?

I can't find anything other than closed-source web applications. Are there any active projects? I'd be interested in using the software in something I'm developing and getting involved. ...

Best Java library for automatic language identification?

Which is the best Java library for automatic language identification/classification? Hypothetical syntax: String languageCode = LanguageIdentificationAPI.identifyLanguage("Hello world."); // languageCode would now contain "en" for English. Thanks a lot in advance! ...

Anyone got any plans to use Cryptol from Galois?

I saw in a Dr Dobb's email report for 2008-12-29 that there's a new DSL (domain-specific language) for designing crypto systems. It is called Cryptol and is available from Galois. Has anybody taken a look at it? Does anyone have plans to use it? Is it worthwhile, do you think? Robert Gamble notes: Cryptol is not new, it has been ...

Joomla problem: where does "$mainframe->getCfg('lang')" come from?!

Hi all, Happy New Year! :D In Joomla: $mainframe->getCfg('lang'); will return "english" (i think this is a default value), anyone can tell me where defined it? can i change it? Thanks ...

How many languages are used in your team?

I've heard two good pieces of advice when it comes to choosing which language to use in a development team. To paraphrase: Use the language you're most familiar with unless you have a compelling reason not to. It'll provide the best return on investment. and Different languages have different strengths. Be fluent in ...

UI Terminology: Logon vs Login

I am crafting an application and cannot decide whether to use the terms Login/out or Logon/off. Is there a more correct option between these two? Should I use something else entirely (like "Sign on/off"). In terms of usability, as long as I am consistent it probably doesn't matter which terms I choose, but I did wonder about the origins...

Has anybody had real experience with the Terse Assembler ?

I'm interested in playing with assembler (again) as a diversion from high level languages like Smalltalk, and came across the Terse Assembler Site. The syntax looks quite interesting, and appears to be a useful development on Assembler Languages, but I was wondering if anyboy has used Terse in a real world project and did it offer adva...

Is there any extendable editor out there with vi-like modes?

I'm looking for a perfect text editor :) The "must have" list: vim-like modal editing, keybindings similar to vim emacs like extendibility - same "real" language for plugins and the editor itself, so that the extension can affect almost anything in the editor and outside... vim script is not enough, python plugin is not enough either ...

How do I identify language of a text document in Java?

Is there an existing Java library that could tell me whether a String contains English language text or not (e.g. I need to be able to distinguish French or Italian text -- the function needs to return false for French and Italian, and true for English)? ...

C# Switch with String.IsNullOrEmpty

Is it possible to have a switch in C# which checks if the value is null or empty not "" but String.Empty? I know i can do this: switch (text) { case null: case "": break; } Is there something better, because I don't want to ...

What's a more polite word for "code smell"?

In relation to my other question: http://stackoverflow.com/questions/432440/as-our-favorite-imperative-languages-gain-functional-constructs-should-loops-be What's the politer word we can use for horrendous(for lack of better term again) codes when doing code reviews? ...

Java or Python or Ruby for Web Application?

If I were to implement a web application from scratch today, which app stack should I go for? Three main candidates are java, python and Ruby on Rails (RoR). There is also .NET, but its biased towards M$. Pro-java: 1) Stacks of thick books 2) Largest developer community 3) Typed languages, which prevents subtle bugs 4) Augmented with ...

You say Topic or Thread? (Progamming question about English idiom from non-English speaker)

Topic or thread any difference? what do you english speakers think is the correct? im working on a forum and i wonder if you say "topic" or "thread". Hope you understand. Thanks in advance ...