Re: [ANN] Grimoire 0.3.0

2014-08-02 Thread Bozhidar Batsov
On August 2, 2014 at 8:52:48, Bozhidar Batsov (bozhi...@batsov.com) wrote:


On Saturday, August 2, 2014, Reid McKenzie  wrote:
For those of you who didn't notice the ten minutes of 500 pages as I
upgraded, I'm delighted to announce the Grimoire's 3rd release!

This version would not have been possible without Robert Stuttaford, who
was a huge help in porting Grimoire off of the original Jekyll back end
to a real Ring server. Thanks also to Andy Fingerhut, thanks to whom
Grimoire now incorporates the Thalia extended docstrings.

So what's new?
 - HTML and plain text API! see http://grimoire.arrdem.com/api for details.
 - Extended & unofficial docstrings from Andy.
 - Pervasive edit links. If it's templated, you can submit edits to it.
 - Redesigned examples system which allows for even easier contribution.
 - Changes to symbol munging which may have broken bookmarks.

This release breaks the "cider-grimoire" command for symbols with
punctuation and probably breaks some favorites as I took the opportunity
to discard some symbol munging which was really a Jekyll workaround. In
retrospect I shouldn't have mucked with that for backwards
compatibility, but live and learn. Andyf's cheat sheet should be updated
later today and the updated munge function should appear in next week's
Cider 0.7.0.

Just a quick note. I actually updated cider-grimoire for 0.3 a few hours before 
you released it, so everybody using the latest snapshot should be fine.  I hope 
that we'll finally get to release CIDER 0.7 on Monday. I've also implemented 
support for the text API (but haven't commited yet) which should make it into 
the release. 
Another update - I’ve pushed the feature upstream. `M-x cider-grimoire` now 
uses the Grimoire text api. The old command is still around under a new name - 
`cider-grimoire-web` (C-c C-d h). It has a few rough edges, but it’s definitely 
better than nothing.



Comments and complaints are welcome here and on the bug tracker over at
https://github.com/arrdem/grimoire/issues.

Cheers!
Reid

--
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 unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ANN: ClojureScript 0.0-2280

2014-08-02 Thread Ivan L
As always, thanks for your hard work.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Sequential processing of the data

2014-08-02 Thread Alexandr M.
Hello everyone,

I have started learning Clojure recently. 

Could you please point me out what is the best way to replicate the next 
Python script in Clojure:
https://gist.github.com/alexvmblog/a3e3bfffa732ca3d3738#file-seqprocess-py

Quite frequently I have this kind of tasks when it's needed to process the 
data in a sequential manner 
when we have two or more sliding windows within which various statistics 
are calculated and further decision are taken.

---
Alexander

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Sequential processing of the data

2014-08-02 Thread Scott Nielsen
Hi Alexander,

The partition function is the tool you're looking for to help create the 
windows in your example.

http://grimoire.arrdem.com/1.6.0/clojure.core/partition/

I made a comment on your gist that shows how it would be used in your example.

Scott Nielsen

On Aug 2, 2014, at 12:03 PM, Alexandr M.  wrote:

> Hello everyone,
> 
> I have started learning Clojure recently. 
> 
> Could you please point me out what is the best way to replicate the next 
> Python script in Clojure:
> https://gist.github.com/alexvmblog/a3e3bfffa732ca3d3738#file-seqprocess-py
> 
> Quite frequently I have this kind of tasks when it's needed to process the 
> data in a sequential manner 
> when we have two or more sliding windows within which various statistics are 
> calculated and further decision are taken.
> 
> ---
> Alexander
> 
> 
> -- 
> 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 unsubscribe from this group and stop receiving emails from it, send an 
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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 unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.