Thanks for the tutorial
On Thu, Jun 9, 2016 at 2:36 PM, Miguel Ping wrote:
> I highly recommend you to learn some kind of interactive tool for clojure,
> such as emacs+cider.
>
> I wrote a mini tutorial about it:
> http://mping.github.io/2015/11/17/clojure-emacs-cider.html
>
> On Thursday, June
Racket has this feature.
On Wed, Apr 27, 2016 at 11:29 AM, Jason Felice
wrote:
>
>
> On Tue, Apr 26, 2016 at 7:42 PM, Plínio Balduino
> wrote:
>
>>
>> * Is there a way to compile C++ code at runtime? This would be essential
>> for the REPL and for Macros.
&
LISP Flavoured Erlang:
http://lfe.io/
On Tue, Apr 26, 2016 at 9:45 PM, Timothy Baldridge
wrote:
> >> would you consider a Clojure port to Erlang VM a viable idea for
> production workloads? I know Elixir comes pretty close, but I still prefer
> Lisp : ) .
>
> I looked into that at one point, but
Hi, J
Based on my yet small experience:
Can the Immutable Persistent Data Structures be implemented with a
reference-counting scheme rather than a garbage collector? This may
improve performance.
- Yes, using Smart Pointers. I'm trying something like this, but I'm still
in the very beginning. I
So, as Andy pointed, transients would do the trick for you. And maybe type
hints could also help but, as Stuart said, benchmark it all the way down.
Regards
Plinio
On Wednesday, April 20, 2016, JvJ wrote:
> I don't think I'll go with primitive arrays. A big part of the reason I'm
> using Cloj
Awesome, Klaus
Thank you
Plínio
On Sat, May 30, 2015 at 4:31 PM, Klaus Wuestefeld wrote:
> Prevalence is the fastest possible and third simplest ACID persistence
> technique, combining the two simplest ones.
>
> https://github.com/klauswuestefeld/prevayler-clj
>
> --
> You received this messag
Hi, Timur
AFAIK, JavaDocs are just comments with some predefined tags that are
completely ignored by Java compiler. As Clojure works directly with
bytecode, I think it's not possible to insert any kind of JavaDoc in
Clojure compiled interface or class.
Regards
Plínio Balduino
On Tue, M
Mr Herwig
"That said: I'd love to see a set of well-maintained, well-documented
project templates to emerge from a common brand, for the benefit of
beginners and 10h website creators."
THIS is exactly what I was discussing right now with a friend.
I think you nailed it.
On Sun, May 3, 2015 at 1
Excuse me, Fluid. I have to agree with gvim.
But I have the same impression. I think the state of Clojure development
for web is quite immature if you compare with other languages.
To be clear, I could spend lines and lines talking about all the high
quality Clojure library related to web applica
Hi Alan
Excuse me if I didn't understand your question, but I think a type hint
would solve. Maybe you could abstract this for the final user in Clojure.
(.add (Complex. 1.0 2.0) ^double 2)
On Sat, May 2, 2015 at 8:53 AM, Alan Forrester <
alanmichaelforres...@googlemail.com> wrote:
> Hello
>
>
Hi
Before we try to guess what Rich will or won't think or want, are you
interested in a proof of concept? So we could evaluate performance and
complexity issues before the subject is definitively buried.
What do you think about it?
Plínio
On Wed, Apr 29, 2015 at 12:56 AM, Mikera
wrote:
> You
Not that tricky, really. But there's a lot of repetitive work.
I changed the Clojure readers to understand the a+bi format, created a
ComplexNumber class and changed the class on charge of arithmetic to work
with complex numbers.
So it's possible to make any operation mixing Numbers, Ratios and
C
My two cents:
I started to develop some support to complex numbers in Clojure, but I
don't know if the Core Team/Rich Hickey has any intererest in this subject.
Even it's an unfinished work, I didn't notice any lost of performance so
far.
Regards
Plínio Balduino
On Tue, Apr 2
This is awesome, Leonardo
On Fri, Jan 23, 2015 at 9:39 AM, Leonardo Borges <
leonardoborges...@gmail.com> wrote:
> bouncer is a validation library for Clojure apps
>
> Github: https://github.com/leonardoborges/bouncer
> Clojars: https://clojars.org/bouncer
>
> The main change with 0.3.2 is that b
My one cent:
But I think (and it's just my humble opinion) is in the scope of Clojure
keep its consistency, am I right?
I mean, if doubles and floats are different, and they are, I think we
should always get equality test as false. Or always as true, if they're
nominally the same value.
Regards
Hi there, Alex and Clojure team
Is there a planned date for the stable version release?
Regards
Plínio
On Sun, Jan 11, 2015 at 12:34 PM, Alex Miller wrote:
> I would greatly appreciate hearing any feedback about this (or any other)
> alpha, even if it's just: everything looks ok.
>
> We've ha
Hi Dan
Please accept my two cents.
"I prefer the indentation; it makes more sense to me."
No, he didn't misunderstand, sorry.
Anyway, Batsov's Style Guide is an awesome resource, even though you won't
follow the items ipsis literis, is good to understand how to work and think
in the 'Clojure Wa
Hi, Cecil
Because java.lang.Math#round supports only two types: float and double.
Java won't find the equivalent signature with Ratio or Number.
https://docs.oracle.com/javase/7/docs/api/java/lang/Math.html#round(double)
https://docs.oracle.com/javase/7/docs/api/java/lang/Math.html#round(float)
I noticed that. You're correct.
I updated my local copy of httpclient to 4.3.5
Plínio
On Thu, Nov 6, 2014 at 11:23 AM, Christian Egli
wrote:
> Hi Plínio
>
> Plínio Balduino writes:
>
> > I just forked friend, updated the library versions and opened a pull
> > re
hird-party libraries.
Regards
Plínio Balduino
On Thu, Nov 6, 2014 at 9:47 AM, Christian Egli
wrote:
> Andy Fingerhut writes:
>
> > Try running 'lein deps :tree >& deps.txt' in each of those projects,
> > and diff them. I can't explain why the differences are
Hi, Christian
Did you try the issue list on GitHub?
https://github.com/cemerick/friend/issues
Regards
Plínio Balduino
On Wed, Nov 5, 2014 at 8:20 AM, Christian Egli
wrote:
> Hi all
>
> I have a strange interaction between clj-http and com.cemerick/friend. I
> don't know if
Awesome, Juan
It's a very fast way to focus on the major issues.
Regards
Plínio
On Wed, Oct 29, 2014 at 12:00 PM, juan.facorro
wrote:
> Hi All,
>
> In case someone was interested in the results and how I got to them, I
> wrote an article about my attempt to visualize the free-form text answer
I wrote a sample code to process the English Wikipedia file dump (+- 40GB) and
didn't use nothing but the core Clojure and a bzip library.
I'll put on GitHub to show you. I hope it helps.
Plinio Balduino
11 982 611 487
> On 26/10/2014, at 23:51, Alan Busby wrote:
>
>> On Mon, Oct 27, 2014 a
I'm using Win 7 with Clj 1.6 and 1.7-alphas and the last version of Leiningen,
without any problem.
My team is using a similar configuration (+ lightrable, sublime or Emacs) to
develop some company systems.
Could you share the error message, if any?
Regards
Plinio Balduino
> On 25/10/2014,
Hi Laurens
Are you trying to access http or https? If you use HTTPSEverywhere like me,
the browser will try to load the https version, that really doesn't work
and you'll see only an horizontal strip.
I hope it can help you
Xfeep: thank you very much. I'm moving my web applications to nginx-cloj
That's also my explanation about the use of exclamation mark.
IMHO, +1 for volatile, without !.
Plínio
On Wed, Sep 10, 2014 at 1:05 PM, Mark Engelberg
wrote:
> When I explain to new Clojurists what the ! means, I explain that it calls
> attention to a mutation function that is unsafe to call i
Hi there
Is there any discussion list about Instaparse?
Thank you
Plínio
--
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 patien
Hi, Fred
I never used Friend and I don't have parameters to compare so, why Qarth?
I didn't get the "Qarth's goal is to fix the problem of Ring/Compojure
and/or Friend apps reinventing the wheel for OAuth." explanation.
Regards
Plínio
On Fri, Jul 25, 2014 at 3:47 AM, Robin Heggelund Hansen <
Hi Cecil
Clojure has a clojure.lang.PersistentQueue to work with queues. I don't know
why it doesn't have a reader macro, but works fine and returns you a Clojure
collection you can handle with cons and peek.
You can start with an empty queue with clojure.lang.PersistentQueue/EMPTY or
insert y
IMO, ! is used when change any global state. A side effect like print on
screen is not enough to cause a ! in the name. I think that's why the
functions print/println don't have ! =)
Plínio
On Thu, Jul 10, 2014 at 12:28 PM, Cecil Westerhof
wrote:
> When a function returns a true/false value yo
I could guess that the problem is in the dot in the project name.
Could you try to change it to zilch-mq or zilchmq and test?
Plínio
On Tue, Jul 8, 2014 at 8:39 AM, zhenxuanpan wrote:
> when i run lein install
>
> lein install
> Compiling zilch.mq
> Exception in thread "main" java.io.FileNotF
Thank you, Mark and Mike
Awesome explanation and examples
Plínio
On Sat, Jun 7, 2014 at 8:46 AM, Mike Fikes wrote:
> Thanks for the historical perspective, puzzler!
>
> In addition to performance considerations, Clojure Programming points to an
> inconsistency between hash codes for longs and B
\o/
On Mon, Jun 9, 2014 at 3:34 PM, Michael Klishin
wrote:
> 2014-06-09 21:23 GMT+04:00 Alex Miller :
>
>> Starting today, we have updated the Clojure Contributor Agreement process.
>> The prior process which involved signing and mailing a form has been
>> replaced with an online e-signing proces
Hi there.
I read old threads and I didn't understand why Clojure has bigint and
biginteger.
Could you explain better?
Thank you
Plínio
--
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
No
I'm also using Java 8 and I didn't have any problem so far.
On Tue, Jun 3, 2014 at 1:20 PM, Rafal Lewczuk wrote:
>
> Java8+Clojure seems to work for me (not [yet] in production though).
>
>
> On 03.06.2014 18:17, Dave Tenny wrote:
>>
>> The clojure site says 1.6.0 is supported with java 6 and hig
Hi, Randy
ClojureDocs has lots of examples with documentation, 4clojure and Clojure Koans
are excellent start points and you can learn a lot reading the Clojure portion
of Clojure source code.
Regards
Plinio Balduino
11 982 611 487
> On 27/05/2014, at 08:58, Randy Chiu wrote:
>
> Hi all,
>
My one cent:
(defn count-vowels
([^String text]
(count-vowels text "aeiouAEIOU"))
([^String text ^String accepted-vowels]
(let [vowel? (set accepted-vowels)]
(->> text
(filter vowel?)
count
user=> (count-vowels "Plínio Balduino&
That's true. My Leiningen is using 1.5.1 yet.
Thank you Stephen.
On Wed, May 7, 2014 at 3:18 PM, Stephen Gilardi wrote:
>
> On May 7, 2014, at 12:55 PM, Plínio Balduino wrote:
>
> But the documentation also shows that I can set the depth of stacktrace,
> what I guess tha
Hi there
Inside REPL there's a function pst that shows the stacktrace of last
exception:
(doc pst)
-
clojure.repl/pst
([] [e-or-depth] [e depth])
Prints a stack trace of the exception, to the depth requested. If none
supplied, uses the root cause of the
most recent rep
Hi Dave
Sorry if I didn't get it, but doesn't sort already return a list?
Could explain?
Plínio
On Fri, May 2, 2014 at 11:53 AM, Dave Tenny wrote:
> I have a sequence from a call to 'sort'.
> I want a list.
>
> What is the best way to do this?
>
> (apply list (sort ...))?
>
> Will it have p
lojure/lang/PersistentHashMap.java#L141
>
>
> On Tue, Apr 29, 2014 at 1:21 PM, Plínio Balduino wrote:
>
>> Hi there
>>
>> Where is the class clojure.lang.Box used in Clojure?
>>
>>
>> https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/Box.ja
Hi there
Where is the class clojure.lang.Box used in Clojure?
https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/Box.java
Regards
Plínio
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@
A nice post by Nikola Peric about this subject with what to read and what
to avoid.
http://deltadata.wordpress.com/2014/04/19/learning-clojure-tutorial-books-and-resources-for-beginners/
Plínio
On Wed, Apr 23, 2014 at 1:27 PM, Cecil Westerhof wrote:
> 2014-04-23 15:05 GMT+02:00 Stefan Kamphaus
book shows you.
>
>
> On Tue, Apr 22, 2014 at 3:45 PM, Cecil Westerhof
> wrote:
>
>> 2014-04-22 20:32 GMT+02:00 Plínio Balduino :
>>
>> Some will say that Joy of Clojure is not the best choice for the newcomer.
>>>
>>> I read all the books mor
Some will say that Joy of Clojure is not the best choice for the newcomer.
I read all the books more in your list more than once and had the better
comprehension with JoC.
The important thing is that I didn't get Clojure reading the first or second
book. I just really understood after read the
Got it. Awesome.
Good job, Zach
On Mon, Apr 21, 2014 at 1:52 AM, Zach Tellman wrote:
> I could represent the map {0 :foo, 100 :bar} as an array, but it would
> have to be a million element array with a lot of empty space. This would be
> (maybe) faster w.r.t. lookups, but would be vastly s
"it's an immutable map that can only have positive integers as keys" -- Like
an array?
(My question is child of my complete ignorance, and I'm not questioning
your knowledge or motivation)
Plínio
On Mon, Apr 21, 2014 at 1:40 AM, Zach Tellman wrote:
> This one's pretty simple: it's an immutabl
.com/clojure/core.incubator>
>- Build An Arrow ← <http://www.clojure.net/2013/10/16/Build-an-arrow/>
>
>
>
> Hth
>
> Tim Washington
> Interruptsoftware.com <http://interruptsoftware.com>
>
>
>
> On Mon, Apr 7, 2014 at 10:02 PM, Plínio Bald
Thank you
On Wed, Apr 9, 2014 at 5:16 PM, Tim Visher wrote:
> On Wed, Apr 9, 2014 at 4:06 PM, Plínio Balduino wrote:
>
>> Hi there
>>
>> Is there any restriction about the usage of Clojure logo in magazines,
>> books and printed materials?
>>
>
> Yes.
Hi there
Is there any restriction about the usage of Clojure logo in magazines, books
and printed materials?
Thank you
Plinio Balduino
--
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
No
Hi there
It's being hard to find updated documentation with 1.5+ features and I'm
confused about as-> and some->.
Basically, what's the difference between the contrib -?> and the core
some-> ?
Thank you
Plínio
--
You received this message because you are subscribed to the Google
Groups "Cloju
, Timothy Baldridge wrote:
> That's correct, and often clojure compilers (like ClojureScript) many
> actually completely rename the variable to something else.
>
> Timothy
>
>
> On Fri, Apr 4, 2014 at 10:34 AM, Plínio Balduino wrote:
>
>> Thank you
>>
&
ving to some form of Clojure 2.0.
>>
>> It would be nice to hear the core team and/or Hickey's position about it.
>>
>> Regards
>>
>> Plinio Balduino
>>
>> On 04/04/2014, at 06:44, Robin Heggelund Hansen
>> wrote:
>>
>> Yeah, t
> version of x. The binding above is shorthand for:
>
> (let [x 3]
> (let [x 42]
> (println x))
> (println x))
>
> ;; prints:
>
> 42
> 3
>
>
> Timothy
>
>
> On Fri, Apr 4, 2014 at 10:23 AM, Plínio Balduino wrote:
>
>> Hi there
&
Hi there
I wrote this code expecting an error, but it worked:
(let [x 3
x (* valor 2)]
x)
; 6
Is It the expected behavior or, considering that a local binding could not
be modified, it should really raise an error?
Thank you
Plínio
--
You received this message because you are subscri
e read, but I can’t see that this is
> actually being worked on for Clojure?
>
>> 4. apr. 2014 kl. 11:43 skrev Plínio Balduino :
>>
>> Hi, Hansen
>>
>> Fogus (from here) and Nutter (from JRuby) wrote nice posts about it.
>>
>> http://blog.fogus.
Hi, Hansen
Fogus (from here) and Nutter (from JRuby) wrote nice posts about it.
http://blog.fogus.me/2011/10/14/why-clojure-doesnt-need-invokedynamic-but-it-might-be-nice/
http://blog.headius.com/2011/10/why-clojure-doesnt-need-invokedynamic.html?m=1
Plinio Balduino
11 982 611 487
> On 04/04/
You can copy the source to your project or write your own.
That function basically wraps Socket and SocketServer Java classes inside a
loop/recur infinite loop.
Exactly as you already did with Java.
Regards
Plinio Balduino
11 982 611 487
> On 03/04/2014, at 22:27, Alex Wang wrote:
>
> I
3e0f1cc8b3e9e42b6e899927a9c09
>>
>>
>> On Thu, Mar 13, 2014 at 10:57 AM, Ambrose Bonnaire-Sergeant <
>> abonnaireserge...@gmail.com> wrote:
>>
>>> No difference, but declare can take multiple vars as arguments.
>>>
>>> Thanks,
>>> Ambr
Hi there
Is there any difference between declare and def when I'm making a forward
declaration?
Thanks
Plínio
--
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 mem
Hi there
Clojure.org says fn and let are special forms, but using the macro
sourceshows that both are macros calling
fn* and let* respectivelly.
So fn and let are "special special forms", or clojure.org is
incorrect/outdated?
If fn and let are really special forms and not macros, could you expla
Hi there
I would like to know about your experiences of enlightenment, "a-ha!"
ou "now everything makes sense" when you finally understood how LISP
works and what's so hot about that language/family of languages. As
"LISP" I mean "any Lisp dialect, blessed or not by the good old
lispers".
I would
far better than any documentation or tutorial can.
>
> David
>
>
>> On Sat, Feb 8, 2014 at 4:26 PM, Plínio Balduino wrote:
>> David, first of all, congratulations for core.logic.
>>
>> I would like to start with logic programming, but the texts I found aren't
>
David, first of all, congratulations for core.logic.
I would like to start with logic programming, but the texts I found aren't
for starters like me, even though I have a good experience as software
developer and functional programming is not a mistery anymore. What would
you recommend for someone
Hi there
What is the ideal way to format Clojure code? I'm following Batsov's Style
Guide but, in some moments, it sounds a bit confuse to me.
To the point:
(reduce +
(filter even?
nums))
or
(reduce
+
(filter
even?
nums))
Which one is preferable, more corre
or Clojure Brasil as soon as other
cities start to organize their own user meetings.
If any of you have any interest, you can have more information about
Rio's meeting in http://www.meetup.com/clj-sp/events/154074712/ and
Sao Paulo's meeting in http://www.meetup.com/clj-sp/events/1543198
Hi, Deniz
I cloned the repo and installed locally to use with my code that count the size
of and article and it was very useful.
Thanks for your contribution and congratulations for your work.
Plinio Balduino
> On 27/11/2013, at 05:00, Deniz Kurucu wrote:
>
> Ah yes, sorry it is not on clo
+1
On Fri, Nov 1, 2013 at 6:49 PM, Cedric Greevey wrote:
> I vote for adding :as to import. I've personally thought of other
> situations where this could be useful.
>
> Being able to alias a (Java) package might be useful too:
>
> (import '((java.util.concurrent :as juc) LinkedBlockingQueue
>
Awesome, Josh
And also I am in Brazil.
On Sun, Oct 20, 2013 at 5:13 AM, Josh Kamau wrote:
> Conglats. I am working on the same for Kenya.
>
>
> On Sat, Oct 19, 2013 at 6:14 PM, Plínio Balduino
> wrote:
>>
>> Congratulations
>>
>> IMHO, local communitie
Congratulations
IMHO, local communities are the best way to make the language more popular
and even to create a job market for Clojure.
Wish you all the success
Plínio
On Oct 19, 2013 12:11 PM, "Rafik NACCACHE" wrote:
> Dear All,
>
> It is my pleasure to announce that we just created a Tunisia
Awesome, Steve.
Thank you for the tutorial.
Plínio
On Mon, Aug 19, 2013 at 1:10 PM, Steve Shogren wrote:
> http://deliberate-software.com/intro-to-macros/
>
> I wrote this tutorial up for a friend of mine who is a Ruby programmer
> thinking of learning Clojure, as my defense of why Clojure is
Hi, Christian
If you look the sources of create-server, you will see it's using Java
sockets wrapped as Clojure functions. The same thing about Java
threads.
It's not a bad thing and soon or later you will find some Java object
wrapped somewhere.
IMHO, I don't think Clojure need something specif
try
mvn compile -Dmaven.test.skip=true
On Thu, Jul 25, 2013 at 12:24 PM, Horace wrote:
> I am using the clojure maven plugin to build a project. The projects
> contains a test, let us mytest.clj, that looks like the following:
>
> (def ^:dynamic *server*
> (create-server "tcp://bla.bla:"))
Thank you, Chris
I think it will be very useful for my next project.
Regards
Plínio
On Sat, Jul 20, 2013 at 7:19 PM, Chris Kuttruff wrote:
> When starting a project to create a clojure blog with
> ring/compojure/hiccup, I quickly found myself looking for an SQL migration
> library to use.
>
>
hub.com/DerGuteMoritz/clj-oauth2
>
> DD
>
> (2013/07/16 15:36), Bastien wrote:
>> Hi Plínio,
>>
>> Plínio Balduino writes:
>>
>>> What are you using to authenticate with Google, Facebook, GitHub or
>>> Twitter?
>>
>> I'm experi
Hi there
What are you using to authenticate with Google, Facebook, GitHub or Twitter?
Thanks
Plínio
--
--
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 a
Hey, good job.
I missed a cheat sheet like this.
Thank you.
On Thu, Jul 11, 2013 at 3:06 PM, Benjamin Peter wrote:
> Hello,
>
> I went through the clojure core logic code and picked the functions I
> though that might go into the cheat sheet. The groups are pretty much
> defined by the code com
Yup. It's the same problem. That lib is only available on OSX.
On Fri, Jun 28, 2013 at 1:04 PM, Gary Trakhman wrote:
> Happens on linux too:
> gary@gary-dell:~/dev$ java -jar ~/Downloads/clooj-0.4.1-standalone.jar
> #
> java.lang.ClassNotFoundException: com.apple.eawt.FullScreenUtilities
>
Thank you
On Sat, Jun 15, 2013 at 2:13 PM, Mikera wrote:
> Clojure uses JIRA as an issue tracker:
> http://dev.clojure.org/jira/browse/CLJ
>
> See also the contributing guidelines: http://clojure.org/contributing
>
>
> On Saturday, 15 June 2013 17:05:23 UTC+1, Plinio Balduino wrote:
>>
>> Hi ther
Hi there
I would like to make a small contribution to Clojure and I would to
like to see if it's already fixed or if there's an issue tracker to
report or find the problem and even continue contributing with the
language development.
Thank you
Plínio
--
--
You received this message because yo
I code on Windows, due the company standards, on OSX at my machine and
Android with Clojure REPL. I really miss a machine with Linux.
Plínio
On Sat, Jun 15, 2013 at 10:24 AM, Softaddicts
wrote:
> Ubuntu everywhere aside from my iPad :)
>
> Stable and easily customizable. This is the major differ
I would use loop/recur
something like this:
(loop [item (get-next-entry)]
(when item
(do
(do-something)
(recur (get-next-entry
On Thu, Jun 13, 2013 at 2:20 PM, Josh Kamau wrote:
> Hi there ;
>
> How do i implement the following in clojure
>
> while((entry
Come on. JavaScript is an awesome and misunderstood language =)
Thank you all for your help. I have lots of examples to show where we're
using Clojure.
Plínio
On Jun 11, 2013 10:20 PM, "Eric MacAdie" wrote:
> OT, but, personally, I look forward to a world free of Javascript.
>
> On Tue, Jun 1
in the real world and I would like to
> > know, if possible, which companies are using Clojure for production or
> > to make internal tools.
> > > Thank you
> > > Plínio Balduino
> > > -- > -- > You received this message because you are subscri
Hi there
I'm writing a talk about Clojure in the real world and I would like to
know, if possible, which companies are using Clojure for production or
to make internal tools.
Thank you
Plínio Balduino
--
--
You received this message because you are subscribed to the Google
Groups &qu
I'm using the localrepo plugin.
On Sat, Jun 8, 2013 at 3:10 PM, Jay Fields wrote:
> David Chelimsky recently released:
> https://github.com/dchelimsky/lein-expand-resource-paths
>
>
> On Friday, June 7, 2013 10:37:46 PM UTC-4, David Williams wrote:
>>
>> Try here
>>
>>
>> http://nakkaya.com/2010/
Thank you, mr. Kumar.
Plinio
On Thu, May 30, 2013 at 4:23 PM, Shantanu Kumar
wrote:
>
>
>
> On Thursday, 30 May 2013 19:27:34 UTC+5:30, Plinio Balduino wrote:
>>
>> Hi there
>>
>> I'm playing with Clojure CLR (good job, guys) and I miss something like
>> Leiningen. I quickly saw Kumar's lein-cl
Hi there
I'm playing with Clojure CLR (good job, guys) and I miss something like
Leiningen. I quickly saw Kumar's lein-clr, but I don't know if it could be
used in a production environment (or explaining better, in a dev
environment for a production application) and if there is any other
solution.
404?
On May 10, 2013 8:04 AM, "Kelker Ryan" wrote:
> I would like to share a library that allows for bodies of code to loop run
> until a Clojure Agent send-off is complete.
> https://github.com/runexec/hollywood#how
>
>
> --
> --
> You received this message because you are subscribed to the Goog
Or sticks, t-shirts, whatever.
I would do it just for fun.
On Fri, May 10, 2013 at 2:18 AM, Terje Norderhaug wrote:
> I suggest allowing participants from the listed countries, but give an
> eventual prize to a charity of choice to avoid a cash payment.
>
>
> On Thu, May 9, 2013 at 12:59 PM, u120
'(sad)
On Thu, May 9, 2013 at 11:58 AM, Nico Balestra wrote:
> Contest is also not open to residents of Brazil, Italy, Quebec, and Saudi
> Arabia
>
> I'm UK resident but born Italian and I find the above a bit distressing.
>
>
> "It is better to have 100 functions operate on one data structure th
Oh heck, residents of Brazil cannot participate.
Legalese things ruin all the fun.
Plínio
On Tue, May 7, 2013 at 2:28 AM, Andy Fingerhut wrote:
> I have not heard of this before. Wanted to pass on the word in case anyone
> was interested in applying. $2000 grand prize, and a chance to speak a
And there's also a lot less syntax to learn.
On Sun, May 5, 2013 at 3:07 PM, Moritz Ulrich wrote:
> It's also nice for printing on paper. Ink is expensive.
>
> On Sun, May 5, 2013 at 6:49 PM, Michał Marczyk
> wrote:
>> On 5 May 2013 15:19, Simone Mosciatti wrote:
>>> It is probably me being st
Hi there (I'll translate the announcement)
We opened a Clojure group for discussion in Portuguese (Brazilian,
European and African Portuguese). It's a small effort to increase the
usage of Clojure in Brazil and Portugal and help the newcomers to
enjoy this awesome language.
Regards
Plínio
2013/
Hi there
Which one is preferred when adding doc-string in a function?
This:
(defn bubbles
"Here I put some description"
[]
(code))
Or this:
(defn bubbles
"Here I put some description"
([]
(code)))
Thank you in advance
Plínio
--
--
You received this message because you are su
In languages that doesn't give you support to arbitrary precision like
Clojure do, it's a usual practice compare values using round
functions.
In pseudo-C it would be like that:
float a = 148.52 * 0.0256;
float b = 3.802112;
a == b;
=> false
round(a, 5) == round(b, 5);
=> true
Or, if possible,
This article explains better how it works:
http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems
Regards
Plínio
On Tue, Apr 9, 2013 at 9:27 AM, Rostislav Svoboda
wrote:
> Can anyone explain me please why I get:
>
> Clojure 1.5.1
> user=> (* 148.52 0.0256)
> 3.80211206
>
> The co
Nothing weird there. Looks like an usual floating point operation.
On Tue, Apr 9, 2013 at 9:27 AM, Rostislav Svoboda
wrote:
> Can anyone explain me please why I get:
>
> Clojure 1.5.1
> user=> (* 148.52 0.0256)
> 3.80211206
>
> The correct result should be:
> https://www.google.com/search
perators.
>
> -marko
>
>
> On Wednesday, April 3, 2013 8:21:43 PM UTC+2, Plinio Balduino wrote:
>>
>> Hi there
>>
>> Is it correct to say that -> operator is a kind of monad in Clojure?
>>
>> Thank you in advance.
>>
>> Plínio Balduino
>&
Hi there
Is it correct to say that -> operator is a kind of monad in Clojure?
Thank you in advance.
Plínio Balduino
--
--
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
No
100 matches
Mail list logo