search for: nouns

Displaying 20 results from an estimated 137 matches for "nouns".

2007 Dec 19
1
noun-verb vs verb-noun aka dogs black vs black dogs
Wow. I wasn't expecting such a voluminous reply -- some I agree with and some I don't. My apologies for an equally voluminous reply. On Wed, 19 Dec 2007, Tony Plack wrote: > > We're not discussing code or the inner workings of Asterisk or even > > changing the functionality of Asterisk, just what the proper order of > > the words should be. > > > >
2007 Jul 06
1
Using nouns
Luke, I thought about what you said about nouns, but having trouble coming up with an example of what you mean. Would you be willing to rework my example into the words your talking about? I''m not asking for a solution here...this is more about how to think about the problem being solved. Mike B. ----------------------------------...
2007 Oct 01
3
How to beat Google aka Xapian & Natural Language Processing.
...uage processing when placing infrastructure for Xapian. So far we have the following OP_AND, OP_AND_MAYBE, OP_AND_NOT, OP_ELITE_SET, OP_FILTER, OP_NEAR, OP_OR, OP_PHRASE, OP_VALUE_RANGE, OP_XOR search operators and we could add one more OP_NLP. What we can do now is to implement OP_NLP to tagged nouns, adjectives, adverbs, punctuations, foreign words etc. Calculate relation between them and assign boost value to the most occurred terms in query for example noun. Search query example: What is Kevin Duraj doing? OP_NLP would analyze sentence as follow: [what = pronoun, question|is = werb|kevin=...
2006 May 20
3
Repost: Pluralization of non-noun names
...wl p_sdiv p_seq p_wrkrs p_xaddr Each policy may or may not have a corresponding record in one of these other tables - if it does it could be a one-to-many or a one-to-one relationship. Is there a way to create new nouns in RoR so that I could create the corresponding plurals like: p_2quots p_addrs p_ccs . . etc and the system would work as normal? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney NSW 2001...
2006 Aug 04
4
REST
...lked about earlier. What gives?" O.k., this is where the pedal hits the metal. "Resource", as a term is used by RESTafarians to refer to a conception of data that is richer than we normally think of data. Remember the REST theme: transmission verbs are simple; resources (nouns) are rich. So, it''s not just your models that are resources. Resources are not just simple nouns like products or users or dogs (that one''s for you, Lelu). Your models will mostly map to db tables that are probably simple nouns like these. Rich data tracks not just si...
2006 Jun 12
4
Modelling: A table of domains
Greetings! I''m thinking of setting up a table of "domains", consisting of the core fields id, code, name, description, and type. Users is a domain, orders is a domain, recipes is a domain, etc. Domain attributes other than those covered by the core fields will go to, say, a user_other_fields table, recipe_other_fields, etc. I see the advantage of having all
2006 May 12
2
Pluralization of non-noun names
...wl p_sdiv p_seq p_wrkrs p_xaddr Each policy may or may not have a corresponding record in one of these other tables - if it does it could be a one-to-many or a one-to-one relationship. Is there a way to create new nouns in RoR so that I could create plurals like: p_2quots p_addrs p_ccs . . etc and the system would work as normal? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney NSW 2001 Australia Mobile:...
2012 Sep 19
7
Renaming Journey and avoiding libraries with common noun names
...y much consists of journeys, or Journey models, for which there is practically no other name in the English language, I''m sure you can appreciate how much of a PITA refactoring would be for us. Looking through Rails 3.2''s fresh Gemfile.lock, its clear there are very few common nouns used to name libraries, the exception being Rack, which maybe annoyed a few data center managers but little more. As a long term strategy, I''d like to suggest avoiding generic or common nouns for projects, so as to avoid conflicts like this. Cheers, sam -- You received this message b...
2014 Oct 13
16
[LLVMdev] RFC: variable names
...with a lowercase letter disambiguates variables from types. For instance, the following are ambiguous using LLVM’s conventions: Xxx Yyy(Zzz); // function prototype or local object construction? Aaa(Bbb); // function call or cast? 3. Allows name re-use. Since types and variables are both nouns, using different capitalization allows you to use the same simple name for types and variables, for instance: Stream stream; 4. Dubious history. Years ago the LLVM coding convention did not specify if variables were capitalized or not. Different contributors used different styles. Then in a...
2013 Jan 10
1
Add an example to the community page and contribute more code
Hi guys.I've finished an example indexer which acts like a grep replacement for a file.It indexes each line containing a proper noun in a given text file.The line containing the proper noun will be displayed upon searching for that noun.I would like to add it to the community code examples.I'm planning to write more examples which demonstrate some advanced features of Xapian along similar
2010 Jul 09
0
Uncountable nouns in resource routes with Rails 3
I have a model called Aircraft, inflected as uncountable, and it''s driving me nuts. What is the correct way to handle this in Rails 3 beta 4? resources :aircraft do member do get :flights end end # Of course these work for some actions and not others. match ''aircraft'', :to => ''aircraft#index'', :as =>
2018 Jul 05
7
RFC: should we spell lambdas like functions?
I argue we should spell C++ lambdas (and other function-like variables) like functions, not like variables. - Use verbs, not nouns. - Use lowerCamelCase. Here's a patch that implements the change to the coding standards: https://reviews.llvm.org/D48991 <https://reviews.llvm.org/D48991> Thoughts? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-...
2016 Aug 09
1
Man page for idmap_rid
On 08/09/2016 03:18 PM, Rowland Penny via samba wrote: > On Tue, 9 Aug 2016 16:04:04 -0300 > francis picabia via samba <samba at lists.samba.org> wrote: > >> On Tue, Aug 9, 2016 at 3:35 PM, Rowland Penny via samba < >> samba at lists.samba.org> wrote: >> >>> On Tue, 9 Aug 2016 15:21:53 -0300 >>> francis picabia via samba <samba at
2008 Mar 27
2
Proper noun stemming
Hi All I was wondering if anyone had a solution for the following problem. I user QueryParser to stem my documents before adding them to a database. During the stemming process I would like to find a way of keeping proper nouns that span two or more words together as a phrase. For example "New York" or "Gordon Brown" or "Prime Minister" get spilt up. I see the STEM_SOME allows some operators, but I can't see how these might help in this situation. Any ideas would be appreciated as...
2006 Aug 09
1
[LLVMdev] Re: llvm 1.8 release notes draft
On Tue, 08 Aug 2006 23:19:52 -0700, Bil wrote: > > * The following Unix system functionality has not been tested and may > not work: > > "functionalities have" > "functionality" seems more of a substance noun than a thing noun. More like "water" than ike "cup"/ So I think the singular is appropriate here. -- hendrik
2016 Aug 09
2
Man page for idmap_rid
On Tue, Aug 9, 2016 at 3:35 PM, Rowland Penny via samba < samba at lists.samba.org> wrote: > On Tue, 9 Aug 2016 15:21:53 -0300 > francis picabia via samba <samba at lists.samba.org> wrote: > > > I've been working with the third statement being true and exercising > > the rid option. > > Can I suggest you put it back, or add the RFC2307 attributes and use
2015 Jun 16
2
[LLVMdev] AliasAnalysis refactoring for the new pass manager
> On 2015-Jun-15, at 16:29, Chandler Carruth <chandlerc at gmail.com> wrote: > > On Mon, Jun 15, 2015 at 3:56 PM Duncan P. N. Exon Smith <dexonsmith at apple.com> wrote: > I like this colour: > > enum class AliasKind /* or AliasCategory? */ { > Null, > Unknown, > Partial, > Complete > }; > > So, the only
2014 Apr 15
3
[LLVMdev] local lambdas: request for coding standard clarification/judgement call
Do local lambdas get named like variables or like functions? E.g. void foo() { auto helper = [](...){...}; // or auto Helper = [](...){...}; } My gut is that it should be lowercase (named like a function) since I got a weird feeling in my stomach seeing an upper-case name being called like a function in new code. -- Sean Silva -------------- next part -------------- An HTML attachment
2006 May 03
5
Finding the rhyme for has_many :through
Hi all, I am NOT a person with English as my mother language and I haven''t been programming long enough to be natural in these kind of things. And if that isn''t bad enough, I am a newbie on Rails too... So please enligthen. I am trying to build a simple tool for my shop. I have many products that I sell in my shop and of course I have many suppliers for the products. Thus
2011 Sep 30
3
error while using shapiro.test()
hey all, I'm just getting used to R and i'm having issues when it comes to reading my data in rows rather than columns. any good advice would be much appreciated ! here is the error: > data1 <- read.table(file.choose(),header=T) > x1 <- c(data1[1,1:5]) > shapiro.test(x1) Error in sort.int(x, na.last = na.last, decreasing = decreasing, ...) : 'x' must be atomic