language

reCAPTCHA-like Web Service in other Languages

Is there a CAPTCHA web service like reCAPTCHA that supports languages other than English? It would be nice to have localized CAPTCHAs for non-English users. ...

What is the fastest way for a new programmer to learn ASP.net?

Hi guys,I want to learn ASP.net 3.5 effectively, but I have no fluent knowledge of any other languages. Now the scenario is that span of time is very less and in short time I have to be upgraded with ASP.net skills. So I am interested in fast and effective way to learn ASP.net 3.5. I have to start from scratch. Please..please...........

Programming == Configuring ?

I hear a couple of people using the term 'programming' rather than configuring, for example: Have you already programmed Apache's Virtual Hosts configuration correctly, with ServerName named FOO? Program your .vimrc first before starting Vim the first time. The last is a word-by-word citation from my teacher, but I didn'...

Which is more fundamental: Python functions or Python object-methods?

I am trying to get a conceptual understanding of the nature of Python functions and methods. I get that functions are actually objects, with a method that is called when the function is executed. But is that function-object method actually another function? For example: def fred(): pass If I look at dir(fred), I see it has an att...

Loading multiple language files in CodeIgniter

Can I load multiple language files for the same view in CodeIgniter? ...

What is “E153 Updatable queries with subqueries” in the SQL standard?

I don't have the (expensive) SQL standard at hand; what are updatable queries in SQL core/foundation? I see that PostgreSQL doesn't support them, but some other databases do; can you point me to the documentation on how they work in those databases? PostgreSQL has query rewriting and updatable views with the rule system; is this very d...

C# foreach vs functional each

Which one of these do you prefer? foreach(var zombie in zombies) { zombie.ShuffleTowardsSurvivors(); zombie.EatNearbyBrains(); } or zombies.Each(zombie => { zombie.ShuffleTowardsSurvivors(); zombie.EatNearbyBrains(); }); ...

Is there a Python library/class that can take a piece of text and determine the language?

You pass the string, and it outputs the language: english/spanish/japanese. Is there such library, and is it efficient? ...

Programmers Editors on Windows for Indic language editing

Hi All, We're going to be building some J2ME apps and J2ee/Rails webapps which will have a Kannada(a south indian language, for those who don't know much about India) UI. The UI and the data will both be in Kannada for these apps. So, we will need to write code containing some of these language text in the source code. I find it irrita...

iPhone Localization - Get the phone's country/language code?

I'm localizing my iPhone app for multiple languages, and in addition to changing some of the strings I need to change some backgrounds. Is it possible to query the iPhone and get the user's language code? Thanks! ...

Implement Globalization ư

Hi everyone, im curious about doing Globalization in asp.net MVC with globalization File and a Session["lang"] the session lang can be setup quite easy to change, but the problem here is the Globalization File. What should i do and how should i do to implement this? Thank you very much PS: I've search on Google and here for some sol...

Website that recognizes user's location/IP & changes lang. based on that

Hello, title is pretty clear. My websites consists of both English-written and Spanish-written versions. You can go to the main site, which is in Spanish, by clicking http://www.chrishonn.com and to the translated version, which is in English, at http://en.chrishonn.com. At the index of each page there is a link (at the bottom) which al...

What is the best way to change the language files in Django

I want to change some of the strings in the language file for my language in Django. I can of course just change the .po file, but that seems unwise because if I update Django the file will be changed again. What is the best way to do this? I don't care if the solution is for the specific app I'm working on or for my entire Django inst...

CakePHP Routing, using a language prefix with a default prefix

I'm trying to create a routing prefix that would be default. http://localhost/heb/mycont would leave to the Hebrew page, while http://localhost/mycont would lead to the English page. Router::connect('/:language/mycont',array('controller'=>'contname','action'=>'index'),array('language'=>'[a-z]{0,3}')); This code allows me to use 0-3 ...

Technical Interviews

Prospective clients are asking for production level examples of my work. I've been stuck in Research and Development mode for the past couple years, and don't have anything that I can think of to show them. Suggestions? ENetArch ...

How to preserve language status using PHP sessions and cookies

I have this in my index.php: <?php include_once 'file.php' ?> then I have <html> some content </html> and I have this in file.php: <?php session_start(); header('Cache-control: private'); if(isSet($_GET['lang'])) { $lang = $_GET['lang']; $_SESSION['lang'] = $lang; setcookie("lang", $lang, time() + (3600 * 24 * 30)); } else if(isSe...

(ANDROID) controling the user language

hi, I have a multi language app. I want to give the user the ability to control which language to use. that mean that even if he has the English Locale he could use a different language if he wants. How can I change the Locale language? (per app) Thanks.... ...

What is the best UI Java markup language for designing applications for Google Android?

What is the best (meaning: most popular) UI Java markup language for designing applications for Google Android? So i will say something like <Application layout="vertical"> <Panel width="250" height="200" layout="vertical" horizontalAlign="center" verticalAlign="middle" title="This is a panel"> <Button label="This is a button"/> ...

C++ languages extensions.

Hi: I already read the FAQ, and i think maybe this is a subjective question, but i need to ask. Does anyine knows what exactly (i mean formally) is a C++ language extensions. I already saw examples, like nvdia CUDA c ext, Avalon transaction-based c++ ext. So the point is something like a formal definition or so. thxs anyway. ...

What is the name for [x for x in some_list] type of construct in python?

Couldn't really find it, but probably it's me not knowing how to search properly :( Just wanted to find out what the name is for: [x for x in some_list] type of construct? ...