Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
304 views

Programming Language with Inflection

Is there a programming language that uses inflections (suffixing a word to add a certain meaning) instead of operators to express instructions? Just wondering. What I am talking about is using ...
7
votes
4answers
312 views

Latin inflection:

I don't know if anyone here is able to speak (or write) the "dead language" Latin. But maybe you can even help me without knowing this language ... I have a database of words (including nouns and ...
6
votes
10answers
3k views

How to turn plural words singular?

I'm preparing some table names for an ORM, and I want to turn plural table names into single entity names. My only problem is finding an algorithm that does it reliably. Here's what I'm doing right ...
4
votes
5answers
418 views

Java: how to get arguments passed to method that called this method?

In java, it is possible to get the class and method that called the current method (the method in which you get the StackTrace). My question is, can I get the arguments that were passed to the method ...
3
votes
7answers
448 views

How do I find all peaks and troughs of tidal data?

I'm working with some ocean tide data that's structured like this: $data = array('date' => array('time' => array('predicted','observed'))); Here's a sample of real data that I'm using: ...
2
votes
1answer
362 views

Django+Haystack+Whoosh: how to deal with language inflection

Many languages in Europe are inflectional. This means that one word can be written in multiple forms in text. For example, word 'computer' in polish "komputer" has multiple forms: "komputera", ...
2
votes
1answer
317 views

JQuery Inflector as fully featured as Rails' ActiveSupport Inflector?

Is there a JQuery plugin with string utils on par with ActiveSupport's Inflector? I have found this Prototype utils port, but it's missing some of them.
2
votes
2answers
1k views

Why does CakePHP use different plural/singular naming conventions?

Can somebody perhaps explain here why on earth CakePHP has a convention of using plural names for db tables and controllers and singular for models? Why not always use singular terms, or always ...
2
votes
2answers
219 views

How do I spell out an integer in Ruby?

Does anyone know of a Ruby module that will take an integer and spell it out ( 1 => "one", 2 => "two", etc..)?
2
votes
5answers
961 views

Good inflection library for PHP?

I'm looking for a good inflection (or well, a library that can turn plural into singular and vice verse - which a kind of inflection) library for PHP, it could be a part of some current framework or a ...
1
vote
2answers
51 views

How to pluralize “There is/are N object/objects”?

Pluralizing a single word is simple: pluralize(@total_users, "user") But what if I want to print "There is/are N user/users": There are 0 users There is 1 user There are 2 users , i.e., ...
1
vote
1answer
458 views

rails 3.1 inflection problem

I have a Rails 3.1 app with the following 2 models class Listing < ActiveRecord::Base has_many :listing_saves end class Team < ActiveRecord::Base has_many :listing_saves has_many ...
1
vote
1answer
453 views

Month names inflection in Rails I18n

I would like to use different case of month name in Polish. For example now it works like this: >> I18n.l Time.now, :format => "%e %B" => "14 styczeń" but I would like to specify ...
1
vote
1answer
363 views

Ruby on Rails Inflection Issue

I am using Ruby on Rails to create a website for a game I play. I have a User model and a Starbase model. The relationship I am trying to setup is like so class User < ActiveRecord::Base ...
0
votes
1answer
42 views

How to properly define irregular words in Rails

This is a follow-up to this. What is the proper thing to do when you want Rails and all its helpers to work correctly with words like CarsForRent given that you follow conventions for database and ...
0
votes
1answer
57 views

CakePHP problem with inflections

I have problem with inflections. I created a model SentSms and a controller for it called SentSmsesController. It doesn't work properly so I've tried use Inflector::rules Inflector::rules('plural', ...
0
votes
0answers
81 views

Rails 3.0.8, inflections issue

When updating my app to rails 3.0.8, only when I use the console I got the following situation: "conta".pluralize => "contas" "contas".singularize => "conta" And the problem: Conta.first ...
0
votes
3answers
286 views

Issue with custom inflections in Ruby on Rails 3.0.3

I have a model called produccion_alternativa. I added a new inflection rule in config/initializers/inflections.rb, like this: inflect.irregular('produccion_alternativa', 'producciones_alternativas') ...
0
votes
1answer
119 views

has_many association does not respect custom inflector

I have a model called reason_to_sell. Ruby will pluralize that to reason_to_sells, so I added this: ActiveSupport::Inflector.inflections do |inflect| inflect.plural 'reason_to_sell', ...
0
votes
2answers
663 views

Cakephp inflection, how to change a plural to a singular

I have a controller called "Shops", this is the way the routing system looks for it, however I want to be able to called this controller and what not 'shop'. Is it possible to do this. Cheers!
0
votes
1answer
105 views

grammar in views

I'm displaying a string like "I'm an Actor" or "I'm a skateboarder" and need to use a or an correctly. Is there a nifty rails view helper to see if a word starts with a vowel? <p>I'm an <%= ...
0
votes
1answer
223 views

Inflections seem to not get loaded in test environment of a rails app

I have a model named Aggelia (it's greek for classified ad) and have set an inflection in RAILS_ROOT/config/initializers/inflections.rb like so: ActiveSupport::Inflector.inflections do |inflect| ...