[ClojureScript] Clojurescript vs Babel

2016-03-07 Thread Oliver George
Is anyone using Bable [1] to transform .jsx for consumption in a clojurescript project? It seems like all of the issues identified Maria Geller in her post [2] have been resolved. In particular: * The bug where loading Babel into Nashorn to transform JavaScript throws a Method code too

Re: [ClojureScript] [Ann] Planck 1.10

2016-03-03 Thread Oliver George
your first post. > --- > You received this message because you are subscribed to the Google Groups > "ClojureScript" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to clojurescript+unsubscr...@googlegroups.com. > To post to this

[ClojureScript] Pull API for Django REST Framework (concept)

2015-07-23 Thread Oliver George
Hello This was motivated by a desire to simplify my CLJS workflow. I'm hoping there's enough overlap in this group that posting about providing a Python server based Pull API is not just noise. Essentially, I've done a little python work to try and produce a Pull API for my existing Django

[ClojureScript] Mori + atom to complement React Native?

2015-05-05 Thread Oliver George
I was hoping to get a little feedback on an approach to iOS app development (today). I would advantage of David Mikes efforts (+ the associated GSoC) but it feels a bit too soon so I'm wondering how to future proof but still deliver a product in the next few months. One idea is to do a

Re: [ClojureScript] Re: A real clojurescript dedicated website

2015-05-01 Thread Oliver George
...@googlegroups.com. To post to this group, send email to clojurescript@googlegroups.com. Visit this group at http://groups.google.com/group/clojurescript. -- Oliver George Director, Condense 0428 740 978 -- Note that posts from new members are moderated - please be patient with your first post

Re: [ClojureScript] Fresh Google Closure API Docs

2015-05-01 Thread Oliver George
from this group and stop receiving emails from it, send an email to clojurescript+unsubscr...@googlegroups.com. To post to this group, send email to clojurescript@googlegroups.com. Visit this group at http://groups.google.com/group/clojurescript. -- Oliver George Director, Condense 0428 740

Re: [ClojureScript] [Om] Getting component owner

2015-04-04 Thread Oliver George
served the purpose. On Sat, Apr 4, 2015 at 9:41 PM, Oliver George oli...@condense.com.au wrote: I have been thinking about that too and it's not anything i've read about directly. Perhaps a weakness in React. It seems like something you could use a channel or callback for passed as a property

Re: [ClojureScript] [Om] Getting component owner

2015-04-04 Thread Oliver George
I have been thinking about that too and it's not anything i've read about directly. Perhaps a weakness in React. It seems like something you could use a channel or callback for passed as a property. Let's do something simple and practical now but keep our eyes open for examples of other

[ClojureScript] [ANN] select-om-all - a flexible select-style component for use in Om apps

2015-04-04 Thread Oliver George
Hi All Just wanted to draw attention to our efforts to produce a flexible select-style component for use in Om apps. https://github.com/condense/select-om-all It can be used to provide select-style inputs for HTML forms. It aims to be fast and flexible. We were driven by the need for some

[ClojureScript] Re: [ANN] select-om-all - a flexible select-style component for use in Om apps

2015-04-04 Thread Oliver George
I should have acknowledged that we adapted from David Nolen's demo. I'll make sure the README is updated to reflect this. Thanks again David! -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed

[ClojureScript] IE8 console.log.apply

2015-03-29 Thread Oliver George
Hi Guys Is there a recommended polyfill for working with IE8? I'm using console-polyfill https://github.com/paulmillr/console-polyfill but it's not compatible with enable-console-print! because it uses .apply which is undefined http://stackoverflow.com/a/1262103/176453. (defn

Re: [ClojureScript] Suggestions for optimization

2015-03-23 Thread Oliver George
group. To unsubscribe from this group and stop receiving emails from it, send an email to clojurescript+unsubscr...@googlegroups.com. To post to this group, send email to clojurescript@googlegroups.com. Visit this group at http://groups.google.com/group/clojurescript. -- Oliver George

Re: [ClojureScript] multi-line REPL for node

2015-03-21 Thread Oliver George
. The best place is probably either mail to curs...@cursiveclojure.com or to the Cursive mailing list if you'd like more feedback from other users as well. On 21 March 2015 at 12:07, Oliver George oli...@condense.com.au wrote: That's great news Colin. Cursive CLJS support seems a little rough around

Re: [ClojureScript] multi-line REPL for node

2015-03-20 Thread Oliver George
@googlegroups.com. Visit this group at http://groups.google.com/group/clojurescript. -- Oliver George Director, Condense 0428 740 978 -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google

Re: [ClojureScript] Anyone interested in some remote CLJS/Om development work?

2015-03-17 Thread Oliver George
+unsubscr...@googlegroups.com. To post to this group, send email to clojurescript@googlegroups.com. Visit this group at http://groups.google.com/group/clojurescript. -- Oliver George Director, Condense 0428 740 978 -- Note that posts from new members are moderated - please be patient with your

[ClojureScript] Anyone interested in some remote CLJS/Om development work?

2015-03-17 Thread Oliver George
Hi All (I'm not sure how people feel about recruiting on this group. Please pull me up if I'm out of line.) I'm a small software consultancy in Australia - two developers, two part time graduates. I'd like extra bandwidth to help me with some clojurescript work. Finding local experience is

Re: [ClojureScript] om/build: Is it possible to know that no render has been done ?

2015-03-16 Thread Oliver George
Can you tell us your use case please. Mib other ways to achieve what you're looking for. On 17 Mar 2015 02:23, Elyahou Ittah ittah.elya...@gmail.com wrote: For example, if the corresponding IRender function return nil, React will render a default noscript element. How can I know if render has

[ClojureScript] Chrome debugging tips for CLJS

2015-03-16 Thread Oliver George
Do you have little tricks for getting the best out of the Chrome Dev tools? I ran across this repo recently and I'm finding the (inspect) macro helpful: https://github.com/shaunlebron/How-To-Debug-CLJS Source maps are fantastic for jumping to the point of an exception and looking up the Call

Re: [ClojureScript] Re: Denormalizing app state with Om

2015-02-16 Thread Oliver George
areas of the application begin to reference this shared data the cleanup process would become more and more coupled to those areas. On Monday, February 16, 2015 at 6:20:11 AM UTC-5, Oliver George wrote: Hey Leon It was really a matter of practicalities. There doesn't seem

Re: [ClojureScript] Re: Denormalizing app state with Om

2015-02-16 Thread Oliver George
fashion could still happen. Also, is memoize-last just intended as an optimzation to consume less memory, or does it serve another purpose? On Sunday, February 15, 2015 at 11:58:17 PM UTC+1, Oliver George wrote: My approach to this stuff is to think in terms of state and derived state

Re: [ClojureScript] Re: Denormalizing app state with Om

2015-02-15 Thread Oliver George
. -- Oliver George Director, Condense 0428 740 978 -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups ClojureScript group. To unsubscribe from this group and stop receiving

[ClojureScript] Least-recently-used memoize function for cljs?

2015-02-02 Thread Oliver George
Hi All Is anybody using a list recently used memorise function in clojurescript? I just tried https://github.com/clojure/core.memoize but without success - I'm fairly sure it doesn't work for clojurescript but I'd like to be wrong. Perhaps there are alternatives I'm missing. cheers, Oliver

Re: [ClojureScript] Re: ANN: Om 0.8.6, Hello CLJSJS

2015-01-27 Thread Oliver George
to clojurescript@googlegroups.com. Visit this group at http://groups.google.com/group/clojurescript. -- Oliver George Director, Condense 0428 740 978 -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you

Re: [ClojureScript] Can't find Om 0.8.1

2015-01-24 Thread Oliver George
but I still get: Could not find artifact om:om:jar:0.8.1 in central ( http://repo1.maven.org/maven2/) Could not find artifact om:om:jar:0.8.1 in clojars ( https://clojars.org/repo/) On Saturday, January 24, 2015 at 9:21:24 AM UTC+1, Oliver George wrote: Here's how I depend on om 0.8.1

Re: [ClojureScript] Can't find Om 0.8.1

2015-01-24 Thread Oliver George
Happens to the best of us. On Sat, Jan 24, 2015 at 7:54 PM, Zubair Quraishi zuba...@gmail.com wrote: Yes, it was staring me in the face. Thanks, that worked, I can be such a dumb ass sometimes! :) On Saturday, January 24, 2015 at 9:43:54 AM UTC+1, Oliver George wrote: I can reproduce

Re: [ClojureScript] Can't find Om 0.8.1

2015-01-23 Thread Oliver George
24, 2015 at 7:15:57 AM UTC+1, Oliver George wrote: https://clojars.org/org.om/om I think david may change the group id again based on what i can see in the om repo so keep your eyes open but this will work today for 0.8.1 On 24 Jan 2015 17:05, Zubair Quraishi zub...@gmail.com wrote: When

Re: [ClojureScript] Re: om and leaflet: Where to update and store marker objects

2015-01-13 Thread Oliver George
Not sure if this is relevant but it shows the use of did-mount and did-update to synchronise state with a js based UI element (Google maps). http://infinitemonkeys.influitive.com/little-framework-big-splash/ On 14 Jan 2015 01:49, Colin Yates colin.ya...@gmail.com wrote: Hi Axel, First, as

Re: [ClojureScript] Clojurescript roadmap for ES6

2015-01-13 Thread Oliver George
to this group, send email to clojurescript@googlegroups.com. Visit this group at http://groups.google.com/group/clojurescript. -- Oliver George Director, Condense 0428 740 978 -- Note that posts from new members are moderated - please be patient with your first post. --- You received

[ClojureScript] How to access om/display-name of a ReactElement produced by om/build

2015-01-05 Thread Oliver George
I'd like to see the display name of views I'm building so I can report on what components are being rendered via a generic instrument / wrapper component (see below). Can anyone point me in the right direction please. Note: build* returns a ReactElement (def counters (atom {})) (defn

Re: [ClojureScript] Business logic vs OM

2014-12-21 Thread Oliver George
? It's the reusability and composability that I took away from the approach.  Hth  Tim Washington  Interruptsoftware.com  On Fri, Dec 19, 2014 at 9:18 PM, Oliver George oli...@condense.com.au wrote: I really look forward to seeing some code from that project - seems

Re: [ClojureScript] Business logic vs OM

2014-12-19 Thread Oliver George
operations, configurations, etc. Such an approach would work really well with an immutable UI as well. Hth Tim On Dec 19, 2014 4:47 PM, Oliver George oli...@condense.com.au wrote: Hello I'm trying to work out a good method for applying business logic to an OM based UI.  In particular