Re: Clojure/flutter

2018-06-27 Thread Gal Dolber
cribe 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. > -- Gal Dolber +1 (702) 748-9859 <+1.702.748.9859> CTO @Zuldi -- You received this message because you a

Re: [ANN] Datomic Cloud

2018-01-19 Thread Gal Dolber
t; 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

Spec validation cache?

2016-11-15 Thread Gal Dolber
I'm having an issue with clojure.spec, its been great in more ways than I expected but it's slowing down everything too much for development. On one side when running the app on development with all fspecs instrumented and on the other when running the tests. For the first case, most of the fdef f

Re: Deep transients

2016-06-02 Thread Gal Dolber
Nice book! I've been looking for something like that, thanks for sharing! On Thu, Jun 2, 2016 at 10:24 PM Colin Fleming wrote: > BTW if you're interested in Specter, Brian Marick has an interesting book > which aims to teach Specter by implementing it: > https://leanpub.com/specter. I bought it

ANN: clojure-objc 1.7.0-RC1

2015-06-07 Thread Gal Dolber
## Dependencies https://github.com/galdolber/clojure-objc [galdolber/clojure-objc "1.7.0-RC1"] https://github.com/galdolber/lein-objcbuild [lein-objcbuild "0.1.9"] ## Changes * Sync with clojure 1.7.0-RC1 * Consistent anonymous functions naming to prevent cascade changes, resulting on faster incr

Re: ANN: clojure-objc 1.7.0-beta2

2015-05-07 Thread Gal Dolber
ps using this? I'm just > wondering if you'd classify it as "feature complete" and "ready to use" or > it's more in the experimental phase. > > > On Thursday, May 7, 2015 at 11:32:20 AM UTC-7, Gal Dolber wrote: > >> Thanks! Yes, thats the project fr

Re: ANN: clojure-objc 1.7.0-beta2

2015-05-07 Thread Gal Dolber
> On Wednesday, May 6, 2015 at 8:13:10 PM UTC-7, Gal Dolber wrote: >> >> Clojure-objc, the Clojure compiler that targets objc runtimes. >> >> clojure-objc <https://github.com/galdolber/clojure-objc> 1.7.0-beta2 >> >>- >> >>Sync with cloju

Re: [ANN] Arcadia, the integration of Clojure and Unity3D

2014-10-17 Thread Gal Dolber
very impressive! congrats! On Fri, Oct 17, 2014 at 4:13 PM, kovas boguta wrote: > Congrats! > > On Fri, Oct 17, 2014 at 3:09 PM, Tims Gardner > wrote: > > Ramsey Nasser and I are excited to announce the alpha release of Arcadia, > > the integration of Clojure 1.7 into the Unity3D game engine an

Re: Clojure on iOS devices - Swift as a host?

2014-06-11 Thread Gal Dolber
I've been writing iOS apps in clojure for some time now. Believe me when I say that Interface Builder is the least of your problems. I wrote a small lib https://github.com/galdolber/uikit to generate iOS interfaces from clojure data structures. Aside from being able to compose ui like never before,

Compile time binding for macros

2014-04-02 Thread Gal Dolber
Is there a better way to achieve this? https://gist.github.com/galdolber/9946533 Thanks! -- 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 - p

Re: Clojars is down?

2014-03-31 Thread Gal Dolber
nevermind On Mon, Mar 31, 2014 at 4:00 PM, Gal Dolber wrote: > > -- 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

Clojars is down?

2014-03-31 Thread Gal Dolber
-- 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 cloj

Re: Leiningen Survey

2014-03-26 Thread Gal Dolber
How do I turn on "auto-cleaning of transitively-compiled .class files"? On Wed, Mar 26, 2014 at 3:34 PM, Hoàng Minh Thắng wrote: > Hey Phil, > What do you mean "unmanaged jars" in the question "What annoys you about > Leiningen?" > > -- > You received this message because you are subscribed to

Re: declare and def

2014-03-13 Thread Gal Dolber
#'declare adds extra meta to the var {:declared true} I don't think it's being used right now, but it can be specially handled by the compiler, for example, to ignore the #'declare stataments from the emitted bytecode, I'm experimenting with this here: https://github.com/galdolber/clojurefast/com

Re: expectations 2.0 has been released

2014-03-13 Thread Gal Dolber
Looks great! thanks for sharing On Thu, Mar 13, 2014 at 6:25 AM, Jochen wrote: > Hi Jay... > > thanks for all the great new features. > > There is just one strangeness I have, exceptions seem not to work with > more->, but did with given. > E.g. > (expect (more-> false identity >

Notes on objc subclassing for clojure-objc

2014-03-06 Thread Gal Dolber
http://gal.dolber.com/post/78830045901/defnstype-myclass As always, feedback is very welcome! -- 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

Re: A faster clojure startup

2014-03-06 Thread Gal Dolber
the first commit correctly that approach consisted in wrapping > all fn objects that appears in a def init position in a FnLoaderThunk, > which loads the fn class, creates a fn object and binds it to the Var's > root the first time the fn is invoked. > > It's not clear to me w

Re: A faster clojure startup

2014-02-28 Thread Gal Dolber
ed Var class or is there more to it? > > > Adam > > > On Fri, Feb 28, 2014 at 3:16 PM, Gal Dolber wrote: > >> Here're some notes on the lean compiler I've been working on for >> clojure-objc >> >> http://galdolber.tumblr.com/post/78110050703/red

Re: A faster clojure startup

2014-02-28 Thread Gal Dolber
The runtime impact should be none or minimal, but I didn't benchmark it yet. On Fri, Feb 28, 2014 at 12:44 PM, bob wrote: > Great, will it impact the runtime performance? > > > On Friday, February 28, 2014 11:16:44 PM UTC+8, Gal Dolber wrote: >> >> Here're so

A faster clojure startup

2014-02-28 Thread Gal Dolber
Here're some notes on the lean compiler I've been working on for clojure-objc http://galdolber.tumblr.com/post/78110050703/reduce-startup Feedback's welcome -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure

Re: Post on Clojure Intrinsics

2014-02-19 Thread Gal Dolber
Thanks! @Phillip: that is definitely something worth exploring, finding "almost intrinsic" calls shouldn't be hard to do On Wed, Feb 19, 2014 at 6:41 AM, Manuel Paccagnella < manuel.paccagne...@gmail.com> wrote: > Nice post! > > Il giorno mercoledì 19 febbraio 2

Post on Clojure Intrinsics

2014-02-18 Thread Gal Dolber
Here is my first post on clojure, I hope it's helpful! http://galdolber.tumblr.com/post/77153377251/clojure-intrinsics -- 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

Re: set vs hash-set

2014-02-06 Thread Gal Dolber
One takes a coll and the other a list of arguments user=> (set [1 1]) #{1} user=> (hash-set 1 1) #{1} On Thu, Feb 6, 2014 at 4:49 PM, Alan Thompson wrote: > OK, this one has me stumped. What is the difference between > clojure.core/set and clojure.core/hash-set ??? The source code is alm

[ANN] clojure-objc 1.5.1-1

2014-01-28 Thread Gal Dolber
== clojure-objc 1.5.1-1 https://github.com/galdolber/clojure-objc - ObjC interop re-implemented to support arm64 - Introducing nsproxy: extend classes or implement anonymous objects on runtime == lein-objcbuild 0.1.3 https://github.com/galdolber/lein-objcbuild - Allow objc sources with :objc-s

Re: ANN: clojure-objc

2014-01-26 Thread Gal Dolber
I reimplemented the interop and its fully functional now. Just download the last binary from https://github.com/galdolber/clojure-objc On Sun, Jan 26, 2014 at 6:17 PM, Gal Dolber wrote: > That's a bug in the objc interop, the type detection is incomplete. > > > https://git

Re: ANN: clojure-objc

2014-01-26 Thread Gal Dolber
n Sun, Jan 26, 2014 at 3:18 PM, PublicFarley wrote: > I got an error as posted in my 1:01 PM post below. I've uploaded my > source in case it helps. Basically it's your github sample code. > > > On Sunday, January 26, 2014 8:15:17 AM UTC-5, Gal Dolber wrote: >

Re: ANN: clojure-objc

2014-01-26 Thread Gal Dolber
I added a better sample with a UINavigationController and a small uikit framework(very very alpha). https://github.com/galdolber/clojure-objc-sample/blob/master/src/clojure_objc_sample/core.clj Feedback and improvements on the uikit framework are very much welcome. On Sat, Jan 25, 2014 at 10:08

Re: ANN: clojure-objc

2014-01-25 Thread Gal Dolber
e like above would give people some understanding > on how to really start digging in to clojure-objc. > > - PublicFarley > > On Friday, January 24, 2014 1:37:01 AM UTC-5, Gal Dolber wrote: >> >> clojure-objc is a clojure compiler that generates java(instead of >> bytecode

Re: ANN: clojure-objc

2014-01-25 Thread Gal Dolber
es > this as well. > > Timothy > > > On Sat, Jan 25, 2014 at 5:17 PM, Gal Dolber wrote: > >> Hey, you cannot subclass from clojure at the moment. But I its not >> necessary.. >> Just create a UIView, add subviews, properties and listeners. And if you >

Re: ANN: clojure-objc

2014-01-25 Thread Gal Dolber
t gets called on button click. Would love to see > where and how you do your 'release' calls as well. > > I think a simple example like above would give people some understanding > on how to really start digging in to clojure-objc. > > - PublicFarley > > > On Fri

So, how much do you really know about clojure's internals?

2014-01-25 Thread Gal Dolber
https://github.com/galdolber/clojure-core-java -- -- 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.

ANN: clojure-objc

2014-01-23 Thread Gal Dolber
clojure-objc is a clojure compiler that generates java(instead of bytecode) and uses j2objc(https://code.google.com/p/j2objc/) to translate it to objc. Goals * Write iOS and MacOS apps in clojure * Future proof: new features on clojure should be easy to add * Distribute clojure-objc libs usin

[ANN] lein-gwt-plugin

2013-05-03 Thread Gal Dolber
A small plugin to work with gwt apps, including resources handling and an improved javac compiler to get complex annotation processors working properly. https://github.com/galdolber/gwt-plugin Enjoy -- -- You received this message because you are subscribed to the Google Groups "Clojure" gro