Re: Stout

2011-06-02 Thread Andreas Kostler
Yes, soon programming clojure will be like a night out in town...
On 02/06/2011, at 4:31 PM, David Jagoe wrote:

> Well I like the name!
> 
> On 2 June 2011 06:21, Andreas Kostler  
> wrote:
>> Hi All,
>> 
>> Stout is a porter stemmer implemention using a snowball-like syntax for 
>> defining rules.
>> Rules are of the form {:c? condition :s1 "abc" :s2 "efg" :a action}
>> reading if condition is met, replace s1 with s2 and execute action.
>> 
>> ## Usage
>> 
>> (use 'stout.porter-stemmer)
>> (map porter-stemmer coll)
>> 
>> Where coll is a collection of terms you intend to stem. Stemming output is a 
>> list of stemmed terms (stems).
>> 
>> 
>> You can find stout on my github: g...@github.com:AndreasKostler/Stout.git
>> 
>> Criticism is of all sorts is very welcome.
>> 
>> Kind Regards
>> Andreas
>> 
>> 
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Clojure" group.
>> To post to this group, send email to clojure@googlegroups.com
>> Note that posts from new members are moderated - please be patient with your 
>> first post.
>> To unsubscribe from this group, send email to
>> clojure+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/clojure?hl=en
> 
> -- 
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your 
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


Re: Stout

2011-06-01 Thread David Jagoe
Well I like the name!

On 2 June 2011 06:21, Andreas Kostler  wrote:
> Hi All,
>
> Stout is a porter stemmer implemention using a snowball-like syntax for 
> defining rules.
> Rules are of the form {:c? condition :s1 "abc" :s2 "efg" :a action}
> reading if condition is met, replace s1 with s2 and execute action.
>
> ## Usage
>
> (use 'stout.porter-stemmer)
> (map porter-stemmer coll)
>
> Where coll is a collection of terms you intend to stem. Stemming output is a 
> list of stemmed terms (stems).
>
>
> You can find stout on my github: g...@github.com:AndreasKostler/Stout.git
>
> Criticism is of all sorts is very welcome.
>
> Kind Regards
> Andreas
>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your 
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


Stout

2011-06-01 Thread Andreas Kostler
Hi All,

Stout is a porter stemmer implemention using a snowball-like syntax for 
defining rules. 
Rules are of the form {:c? condition :s1 "abc" :s2 "efg" :a action} 
reading if condition is met, replace s1 with s2 and execute action.

## Usage

(use 'stout.porter-stemmer)
(map porter-stemmer coll)

Where coll is a collection of terms you intend to stem. Stemming output is a 
list of stemmed terms (stems).


You can find stout on my github: g...@github.com:AndreasKostler/Stout.git

Criticism is of all sorts is very welcome.

Kind Regards
Andreas


-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en