Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
3answers
574 views

Measure the pronounceability of a word?

I'm tinkering with a domain name finder and want to favour those words which are easy to pronounce. Example: nameoic.com (bad) versus namelet.com (good). Was thinking something to do with soundex ...
16
votes
13answers
1k views

How do you create an english like word?

How do you create words which are not part of the english language, but sound english? For example: janertice, bellagom
12
votes
10answers
472 views

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.
12
votes
9answers
7k views

Word frequency algorithm for natural language processing

Without getting a degree in information retrieval, I'd like to know if there exists any algorithms for counting the frequency that words occur in a given body of text. The goal is to get a "general ...
11
votes
16answers
814 views

Programming with English as second language. How to improve?

Since English is the Lingua Franca of programming, this question is for all programmers who need to learn English for programming related reasons. I'm Italian but most of the time I spend on the ...
11
votes
11answers
2k views

Plural form of word “mutex”

What is the correct plural form of the portmanteau mutex. Is it mutexes or mutices?
10
votes
10answers
962 views

Grammatically correct double-noun identifiers, plural versions

Consider compounds of two nouns, which in natural English would most often appear in the form "noun of noun", e.g. "direction of light", "output of a filter". When programming, we usually write ...
10
votes
5answers
470 views

Recognizing language of a short text? - Python

I'm have a list of articles, each article has its own title and description. Unfortunately, from the sources I am using, there is no way to know what language they are written. Also, text is not ...
10
votes
11answers
2k views

What are all of the allowable characters for people's names?

There are the standard A-Z, a-z characters, but also there are hyphens, em dashes, quotes, etc. Plus, there are all of the international characters, like umlauts, etc. So, for an English-based ...
9
votes
3answers
647 views

English grammar checker library for C++

Is there an open-source English grammar-checking library for C++ like language tools for Java?
8
votes
2answers
851 views

What does Bump Version stands for?

I saw this comment in git many times. What does it mean actually? P.S. for those who are not native english speakers
8
votes
8answers
834 views

How do I verify that a string is in English?

I read a string from the console. How do I make sure it only contains English characters and digits?
7
votes
1answer
64 views

Is there a way to use an Australian English dictionary in WPF

So In WPF I can declare a Rich Text Box like so <RichTextBox Text="{Binding Text}" SpellCheck.IsEnabled="True" /> and through some miracle little wibbly lines appear under misspelt words. ...
7
votes
6answers
394 views

Plural form of a word

Are there any API(s) which will provide a plural form of a certain word (e.g. cactii for cactus)
7
votes
6answers
308 views

Programmatically determine whether to describe an object with “a” or “an”?

I have a database of nouns (ex "house", "exclamation point", "apple") that I need to output and describe in my application. It's hard to put together a natural-sounding sentence to describe an item ...
7
votes
2answers
75 views

What's a good way to make a type a plural when writing comments?

When writing comments, I sometimes find myself needing to talk about a type (class, struct, etc.) in plural when writing comments, such as: /* * getThings * Get a list of --> Things <-- ...
7
votes
3answers
3k views

English dictionary as txt or xml file with support of synonyms

Can someone point me to where I can download English dictionary as a txt or xml file. I am building a simple app for myself and looking for something what I could start using immediately without ...
7
votes
8answers
9k views

How do I do word Stemming or Lemmatization?

I've tried PorterStemmer and Snowball but both don't work on all words, missing some very common ones. My test words are: "cats running ran cactus cactuses community communities", and both get less ...
6
votes
0answers
110 views

Parsing Author name out of a string [closed]

Ok I'm working on a little program to rip short stories out of a website (actually a couple of sites) And then rewrite them as say .EPUB, so that i can read them on my ebook reader. Now I'm using ...
6
votes
2answers
706 views

How do I express this logic?

I am having trouble trying to express certain types of information using clojure/core.logic so that the information is readily available and can be queried. Take the following as an example: Red ...
6
votes
4answers
309 views

How is this statement making sense? (Sun's naming convention for Java variables)

I've been quoting this segment from Sun's document for the past few days, and only now do I stop and think about what it's saying, and I can't make sense out of it. Please keep in mind that English is ...
6
votes
4answers
3k views

English Error Messages in German Visual Studio 2008 / ASP.NET

This might be a bit weird question, but I'll give it a shot: HELP, my Visual Studio 2008 / ASP.NET is giving me GERMAN error messages. Besides the fact that translations tend to be not as good as the ...
5
votes
1answer
79 views

How to return the adverbial form of the word

I am wondering if there is a method in Ruby to turn a word such as month to monthly. Similar to pluralize(word)
5
votes
2answers
175 views

Software to inflect English

Is there any software out there which can do the following? Given an English sentence like "He likes baked beans", I change "he" to "I" and the sentence changes to "I like baked beans" ...
5
votes
5answers
2k views

How to get english language word database?

I need a database of every single valid word in English. I checked the /usr/share/dict/words file, it contains less than 100k words. wikipedia says English has 475k words. Where do I get the ...
5
votes
3answers
392 views

How to Convert English to Cron?

I did some searching but haven't landed anything that looks useful yet but I am wondering if anyone knows of something (tool,lib etc) that can parse English phrases and translate them into a cron ...
5
votes
11answers
380 views

Where to get a list of almost all the words in English language?

I want to get some random text generated. I tried writing a basic Java programme, int nowords = r.nextInt(2000); int i, j; for (i = 0; i < nowords; i++) { int ...
5
votes
4answers
443 views

Scalable Regex for English Numerals

I'm trying to create a regex to recognize English numerals, such as one, nineteen, twenty, one hundred and twenty two, et cetera, all the way to the millions. I want to reuse some parts of the regular ...
5
votes
9answers
503 views

Cultural issues in programming languages [closed]

I'm wondering if productivity can be correlated to whether a programmer is a native English speaker or not. I work in Japan and I can tell you that Japanese programmers struggle in getting the English ...
4
votes
4answers
110 views

Is there a CPAN module for converting seconds to English?

Is there a CPAN module that can convert a number of seconds to a human-readable English description of the interval? secToEng( 125 ); # => 2 min 5 sec secToEng( 129_600 ); # => 1 day 12 h The ...
4
votes
3answers
307 views

Random sentence generation in JavaScript

I'm looking for a random sentence generator in JavaScript that doesn't require an external GET to a web resource to get dictionary data. I've seen a lot of in perl and Python but I need this to work ...
4
votes
4answers
415 views

Regexp for Tokenizing English Text

What would be the best regular expression for tokenizing an English text? By an English token, I mean an atom consisting of maximum number of characters that can be meaningfully used for NLP ...
4
votes
6answers
293 views

library to determine indefinite article of a noun

Are there any libraries for .NET that deal with determining the Indefinite Article of a noun? My crude attempt is below, which will probably work for 99% of my usage (which is acceptable) just ...
4
votes
7answers
877 views

generate a list of english words containing consecutive consonant sounds

Start with this: [G|C] * [T] * Write a program that generates this: Cat Cut Cute City <-- NOTE: this one is wrong, because City has an "ESS" sound at the start. Caught ... Gate Gotti Gut ... ...
3
votes
2answers
56 views

English to babel-lang

Recently I was checking up on some AI possibilities and found out about babel-lang ( http://babelproject.com/ ) , which seems to be an interesting concept. The project appears to be abandoned but the ...
3
votes
2answers
114 views

Algorithm to determine if a word could be English?

I have a list of strings that I need to check against an English dictionary. However I don't want to start checking every piece of gibberish in the list. First, I want to check if the string could be ...
3
votes
5answers
352 views

Determine the difficulty of an english word

I am working a word based game. My word database contains around 10,000 english words (sorted alphabetically). I am planning to have 5 difficulty levels in the game. Level 1 shows the easiest words ...
3
votes
5answers
87 views

Which is the best among GetCountOfObjects, GetNumberOfObjects, and GetObjectCount?

I am a C++ programmer from a non-English country. I am always confused about how to choose one of the following function names: GetCountOfObjects GetNumberOfObjects GetObjectCount Who can tell me ...
3
votes
4answers
386 views

Reading hexadecimal values in English

I've been reading hexadecimal on a digit by digit basis for many years and am now fed up with translating hex values for numbers requiring more than 16 bits into English. Does a more elegant form of ...
3
votes
4answers
597 views

Download an English dictionary

I wondered if anyone could point me in the direction of a English dictionary download (free). I do NOT want: Spelling check dictionaries Links to websites that don't provide me with an actual ...
3
votes
7answers
190 views

Help with English

I need to define an element from linkedList in a object:     A   /    \ X     Y How could I name the entire object and its ...
3
votes
2answers
154 views

Does .Net / Visual Studio support foreign language keywords for non English speaking cultures?

I was wondering whether the majority of non English speaking cultures, especially in Europe, tend to develop their .Net code in their native language or in English? My personal assumption is that ...
3
votes
9answers
745 views

What programming language is the most English-like?

I'm mainly a Python programmer, and it is often described as being "executable pseudo-code". I have used a little bit of AppleScript, which seems to be the most English-like programming language I ...
3
votes
5answers
194 views

What should I call the operation that limits a string's length?

This is a language-agnostic question - unless you count English as a language. I've got this list of items which can have very long names. For aesthetic purposes, these names must be made shorter in ...
3
votes
2answers
239 views

Free or open source dictionaries

I'm working on a multi-lingual search engine. I need to map keywords in English to corresponding words in following languages: Bulgarian Catalan Chinese Crotian Czech Danish Dutch Finish French ...
3
votes
9answers
342 views

Proper language to use in form field labels: A linguistic question

I wish to use the following sentence as the comment on a form field. I have already come up with a short-form label for the field. This text is meant to explain the field in a bit more detail: The ...
3
votes
5answers
5k views

Can I get an English dictionary word list somewhere?

I'm creating this cool answer engine that answers "who" questions. I will share the URL soon. However, I need a list of English words for that, so find "proper nouns". Can I get an English dictionary ...
3
votes
4answers
275 views

Why can't I set $LIST_SEPARATOR in Perl?

I want to set the LIST_SEPARATOR in perl, but all I get is this warning: Name "main::LIST_SEPARATOR" used only once: possible typo at ldapflip.pl line 7. Here is my program: #!/usr/bin/perl -w ...
3
votes
16answers
458 views

looking for a phrase that expresses convoluted code

We have all seen this type of code. A calls B, which calls back A, which delegates to C which does a few difficult to understand tests and depending on results calls a single method of D with ...
3
votes
6answers
416 views

NLP: Building (small) corpora, or “Where to get lots of not-too-specialized English-language text files?”

Does anyone have a suggestion for where to find archives or collections of everyday English text for use in a small corpus? I have been using Gutenberg Project books for a working prototype, and ...

1 2 3 4