Tagged Questions
The singular tag has no wiki summary.
8
votes
2answers
1k views
Ruby on rails: singular resource and form_for
I want user to work with only one order connected to user's session. So I set singular resource for order
routes.rb:
resource :order
views/orders/new.html.erb:
<%= form_for @order do |f| %>
...
3
votes
7answers
1k views
best practice(s) for singular word or plural words?
This is about best practices in general, not specific for a single language, database or whatever
We all have to deal with generated output where you can be reporting "one products" or "two product". ...
2
votes
6answers
203 views
Fixing the singularity of a function
Assume you have a function like
F = lambda x: sin(x)/x
Evaluating F(0.0) would result in a divide by zero warning, and would not give the expected result of 1.0. Is it possible to write another ...
2
votes
4answers
349 views
Plural and Singular terms in PHP
I am doing an amount of users check for our website, below is the code. How can i use the word "user" if there is only 1 account and how can i use "users" if there is >1.
code:
$result = ...
2
votes
3answers
2k views
Test if a word is singular or plural in Ruby on Rails
Quick question.
How can I test a word to see if it is singular or plural?
I'd really like:
test_singularity('word') # => true
test_singularity('words') # => false
I bet rails is capable!
...
1
vote
0answers
65 views
SSRS Report Manager rules for generating Models from Data Source with plural table names
I am using the SSRS Report Manager web interface to generate Data Models for a SQL Server 2008 R2 Data Source.
The database contains a number of tables with names which are plurals. In the generated ...
1
vote
1answer
101 views
Rails Singular vs. Plural resources problem
I am getting an undefined method error because my code is trying to look up a singular_object_path rather than pluralized_objects_path, which it would be able to find. I'm running Rails 3.0.9 on ...
1
vote
4answers
262 views
rails singular resource still plural?
I have a search route which I would like to make singular but when I specify a singular route it still makes plural controller routes, is this how it's supposed to be?
resource :search
Gives me
...
1
vote
3answers
362 views
pluralize and singularize for spanish language
sorry for my english...
I have a rails application developed to spain, therefore, all content is in spanish, so, I have a search box to search in a mysql database, all rows are in spanish, I'd like ...
1
vote
1answer
280 views
Assigning boost::iterator_range to singular range
I'm using Boost.Range to pass around some data and a container class for this data. The data is loaded in a different thread and may in some cases not be ready yet. In this case the container is ...
1
vote
2answers
161 views
Mixing Plural AND Singular naming
here's the quick version of the situation:
We are developing some C# App and the team decided this Naming convention:
We have for example an entity called User which is stored in the DB, we have the ...
1
vote
1answer
620 views
Rails controller method going to plural form
I'm new to rails!
Ok, I am trying to set up a user signup form.
It is mapped as a singular resource in the routes
map.resource :user
And trying to create the user through the console works fine.
...
0
votes
1answer
46 views
rails singularize to a / an
Is there a method that works similiar to singularize to prepend a or an according to the word?
like f(apple) # => an apple
f(carpet) #=> a carpet
thanks
0
votes
3answers
74 views
Mysql select on word (plural, singular)
In my Mysql DB I have a list of terms like (With First letters Capital and most of the time plurals)
Hairdressers
Restaurants
Beauty Salons
Fournitures For Restaurants
On my website I have a ...
0
votes
0answers
18 views
SINGULAR (commutative algebra), how to add in the exponent: x^(2+3) doesn't work
does anyone know how to add numbers in the exponent of a variable in the computer algebra system SINGULAR?
int n=3;
ring R=0,(x,y,z,w),dp;
ideal I=x^(n+1)-yz^(n-1)w,xy^(n-1)-z^n,x^nz-y^nw;
...
0
votes
2answers
27 views
Rails: routing question
I have this in my routes:
resources :cvits
which produces these routes:
cvits GET /cvits(.:format) {:controller=>"cvits", :action=>"index"}
POST /cvits(.:format) ...
0
votes
2answers
63 views
Handle Ruby on Rails resource when the singular is also plural?
Whats the best way to handle a singular resource, that itself is plural.
For example a "settings page", that displays a selection of different settings. As I am displaying a single "Settings" ...
0
votes
0answers
144 views
Error Checking while calculating Inverse of Singular Matrix using Lapack
How to handle the error while calculating the inverse of a singular matrix using Lapack ?
Example :
Matrix :::
|3 2 1 |
|2 0 5 |
|5 1 7 |
For the above singular matrix , value returned from ...
0
votes
2answers
152 views
HTML Canvas: Saving a graphic element to be modified later by other users
I would like to face a problem for which I haven't seen a solution looking around in Internet. This is: I need to save the elements drawn by WEB users on a canvas space not as a flat image, but each ...
0
votes
1answer
95 views
Using Devise with a singular Resource
I'm a newb with Rails and am trying to get out my first Rails 3 app with Devise. I have a situation where pretty much everything on my site is specific to a user. I'm creating a kind of private ...