On 02 Jun 2012 1:57 AM, <clojure@googlegroups.com> wrote: > Today's Topic Summary > > Group: http://groups.google.com/group/clojure/topics > > - When arithmetic on a computer bite > back<#137aa7bd6d6d4f87_group_thread_0>[3 Updates] > - using -> on a nested hash-map with string > keywords.<#137aa7bd6d6d4f87_group_thread_1>[2 Updates] > - clojure.reflect annotations <#137aa7bd6d6d4f87_group_thread_2> [4 > Updates] > - [ANN] Itsy 0.1.0 released, a threaded web spider written in > Clojure<#137aa7bd6d6d4f87_group_thread_3>[4 Updates] > - [ANN] Leiningen 2.0.0-preview5 > released<#137aa7bd6d6d4f87_group_thread_4>[11 Updates] > - ANN factual-clojure-driver 1.3.1, Factual's officially supported > Clojure driver <#137aa7bd6d6d4f87_group_thread_5> [3 Updates] > - Network Visual Layout Algorithm <#137aa7bd6d6d4f87_group_thread_6>[1 > Update] > > When arithmetic on a computer bite > back<http://groups.google.com/group/clojure/t/6006f55a589b620b> > > kawas <laurent.joi...@gmail.com> Jun 01 09:19AM -0700 > > Hi, > > Can someone explain to me the behavior of this function when applied > to different kind of numbers. > > (defn prime-factors [n] > (loop [f 2 n n res []] > (cond > (<= n 1) res ...more > > > Tassilo Horn <tass...@member.fsf.org> Jun 01 07:21PM +0200 > > kawas <laurent.joi...@gmail.com> writes: > > Hi Laurent, > > > > Problem 1 (solved): If you use (= n 1) in the first cond clause, the > > function may not terminate because (= 1 1.0) may be false. ...more > > > kawas <laurent.joi...@gmail.com> Jun 01 04:53PM -0700 > > I've checked with a python repl, the correct value seems to be the one > using BigDecs > > >>> from decimal import * > >>> Decimal('1.4411518807585587E17') / Decimal(2) > Decimal('72057594037927935') > ...more > > using -> on a nested hash-map with string > keywords.<http://groups.google.com/group/clojure/t/97d713eef3ff11b1> > > "Boris V. Schmid" <boris.sch...@gmail.com> Jun 01 12:08AM -0700 > > Thanks, it was get-in that I was looking for, but couldn't find. Also > thanks to Dave for explaining that keywords have some internal magic > compared to strings. will remember! > > ...more > > > Sean Corfield <seancorfi...@gmail.com> Jun 01 03:27PM -0700 > > > Thanks, it was get-in that I was looking for, but couldn't find. > > At this point I'll give a plug for http://clojureatlas.com as a great > way to explore the Clojure core/libraries by concept. > -- ...more > > clojure.reflect > annotations<http://groups.google.com/group/clojure/t/c3b19c14318ab0a7> > > Jon Rose <jonros...@gmail.com> Jun 01 11:38AM -0700 > > Hello, > > I am wondering if anyone knows how to get method annotations from a > method > using the clojure.reflect library. I going of a Stuart Sierra ...more > > > Jon Rose <jonros...@gmail.com> Jun 01 11:42AM -0700 > > sorry, typo. My bluetooth keyboard is geeking out. I meant, is it > possible > to do this with out using the Jave Reflection classes through interop. > > On Friday, June 1, 2012 11:38:17 AM UTC-7, Jon ...more > > > Armando Blancas <abm221...@gmail.com> Jun 01 01:39PM -0700 > > That's the only way I've seen it done. > > Cool source box; how did you get it? > > > On Friday, June 1, 2012 11:42:19 AM UTC-7, Jon Rose wrote: > ...more > > > Jon Rose <jonros...@gmail.com> Jun 01 01:42PM -0700 > > Cool thanks for the info. I just pasted the code snippet in from stack > overflow so it must copy the styles too. > > On Friday, June 1, 2012 1:39:05 PM UTC-7, Armando Blancas wrote: > ...more > > [ANN] Itsy 0.1.0 released, a threaded web spider written in > Clojure<http://groups.google.com/group/clojure/t/5ea5921b15f5d3b2> > > Lee Hinman <matthew.hin...@gmail.com> May 31 09:49PM -0600 > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi all, > I'm pleased to announce the initial 0.1.0 release of Itsy. Itsy is a > threaded web spider written in Clojure. A list of some of the Itsy > ...more > > > "László Török" <ltoro...@gmail.com> Jun 01 01:24PM +0200 > > Hi, > > interesting project. I was wondering though how do you make sure two > crawlers do not crawl the same URL twice if there is no global state? > :) > > If I read it correctly you're going to have to ...more > > > Michael Klishin <michael.s.klis...@gmail.com> Jun 01 11:53PM +0400 > > László Török: > > > I was wondering though how do you make sure two > > crawlers do not crawl the same URL twice if there is no global > state? :) > > By adding sharing state, for a single app ...more > > > "László Török" <ltoro...@gmail.com> Jun 01 10:22PM +0200 > > Hi, > > don't want to turn this to a lengthy discussion about crawling, but > happy > to continue off list. ;) > > Sitemaps work surprisingly well in certain domains (web shops powered > by ...more > > [ANN] Leiningen 2.0.0-preview5 > released<http://groups.google.com/group/clojure/t/780546c654d487ab> > > Phil Hagelberg <p...@hagelb.org> May 31 10:11PM -0700 > > I'm happy to announce the release of Leiningen 2.0.0-preview5. > > This release fixes a bug where the repl would hang under certain > circumstances. It also adds support for encrypting credentials used > ...more > > > mnicky <markus.mas...@gmail.com> May 31 11:40PM -0700 > > After upgrade from preview4 and installation of OpenJDK, 'lein2 repl' > worked exactly once. Since then, it fails with: > > Exception in thread "main" java.lang.ExceptionInInitializerError > ...more > > > mnicky <markus.mas...@gmail.com> May 31 11:43PM -0700 > > Oh, I see, it's issue #616 [1] > Mnicky. > > [1] https://github.com/technomancy/leiningen/issues/616 > > On Friday, June 1, 2012 8:40:40 AM UTC+2, mnicky wrote: > ...more > > > "Jim - FooBar();" <jimpil1...@gmail.com> Jun 01 09:29AM +0100 > > After upgrading from preview4 to preview5 I get this when trying to do > "lein2 repl" inside any project folder... > Is this a known issue? I'm using Jdk 1.7... ...more > > > Baishampayan Ghose <b.gh...@gmail.com> Jun 01 02:05PM +0530 > > And I am facing a JLine related error when I launch the repl. > > Full stack trace here https://www.refheap.com/paste/2956 > > I am using Java6 on Mac OS X. > > Regards, > BG > > > -- > Baishampayan Ghose ...more > > > "Jim - FooBar();" <jimpil1...@gmail.com> Jun 01 09:43AM +0100 > > Your error seems very similar with mnicky's error which is a known > issue....My error on the other hand seems to be completely different > from yours! > > Jim > > On 01/06/12 09:35, Baishampayan Ghose ...more > > > Sun Ning <classicn...@gmail.com> Jun 01 05:57PM +0800 > > I'm running preview5 on OpenJDK 7, also got this issue both when > upgrade > and self-install. > > On 06/01/2012 02:40 PM, mnicky wrote: > ...more > > > Phil Hagelberg <p...@hagelb.org> Jun 01 10:27AM -0700 > > > unknown reasons: https://github.com/technomancy/leiningen/issues/614 > > * Credentials can only be decrypted using gpg-agent on Mac OS X due > to > > a bug in GPG: ...more > > > "Jim - FooBar();" <jimpil1...@gmail.com> Jun 01 07:38PM +0100 > > How come building preview5 from source works just fine? > > Jim > > > On 01/06/12 18:27, Phil Hagelberg wrote: > ...more > > > Michael Klishin <michael.s.klis...@gmail.com> Jun 01 11:56PM +0400 > > Phil Hagelberg: > > > tl;dr: hold off on upgrading if you use Oracle's JDK or the repl > task; > > sorry for the inconvenience. > > travis-ci.org now uses preview 5 for lein2, we fixed Oracle JDK issues > by ...more > > > Phil Hagelberg <p...@hagelb.org> Jun 01 01:16PM -0700 > > > How come building preview5 from source works just fine? > > The JLine/repl bug was due to a mistake I made while generating the > uberjar, so building from source will take care of that. > ...more > > ANN factual-clojure-driver 1.3.1, Factual's officially supported > Clojure driver <http://groups.google.com/group/clojure/t/e6a49a654a266fa4> > > dirtyvagabond <dirtyvagab...@gmail.com> May 31 07:33PM -0700 > > factual-clojure-driver is Factual's officially supported Clojure > driver: > https://github.com/Factual/factual-clojure-driver > > Version 1.3.1 has been upgraded to support the latest API feature set: > ...more > > > Sun Ning <classicn...@gmail.com> Jun 01 11:14AM +0800 > > Awesome geo-data service! Can't wait to try out your APIs. > > On 06/01/2012 10:33 AM, dirtyvagabond wrote: > ...more > > > dirtyvagabond <dirtyvagab...@gmail.com> Jun 01 09:27AM -0700 > > Thanks Sun Ning! Please let me know if there's anything I can do to > help. > Very interested in feedback and suggestions... 8-] > > > On Thursday, May 31, 2012 8:14:07 PM UTC-7, Sun Ning wrote: > ...more > > Network Visual Layout > Algorithm<http://groups.google.com/group/clojure/t/c5f574be1dd6cfe1> > > atucker <agjf.tuc...@googlemail.com> Jun 01 02:44AM -0700 > > Spectral Graph Theory? > http://cs-www.cs.yale.edu/homes/spielman/TALKS/haifa1.pdf > > On Thursday, 31 May 2012 14:37:21 UTC+1, Sean Devlin wrote: > ...more > > You received this message because you are subscribed to the Google Group > clojure. > You can post via email <clojure@googlegroups.com>. > To unsubscribe from this group, send<clojure+unsubscr...@googlegroups.com>an > empty message. > For more options, visit <http://groups.google.com/group/clojure/topics>this > group. > > -- > 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