Thanks Khalid,
The way I see it, Om has three concepts regarding state:
1. The global state defined with atom. Named `app-state`
2. The cursor passed to each component with the relevant parts of the
global state. Named `app`
3. Local state of each component, initialized in `IInitState` and
mani
Hi Torsten,
I may add this some time in the future, bu for now I always used form based
login, so some sort of a combination of SPA and traditional framework.
Did you see this series:
http://rundis.github.io/blog/2015/buddy_auth_part2.html
This seems to go into the direction you are looking for,
Thanks, Sven!
I read the first part, wasn't aware of this one though. It seems answer
some of my questions.
Thanks,
Torsten.
2015-02-02 11:34 GMT+01:00 Sven Richter :
> Hi Torsten,
>
> I may add this some time in the future, bu for now I always used form
> based login, so some sort of a combina
Indeed, "data" is better than "app".
Khalid aka DjebbZ
@Dj3bbZ
On Mon, Feb 2, 2015 at 10:49 AM, Sebastian Bensusan
wrote:
> Thanks Khalid,
>
> The way I see it, Om has three concepts regarding state:
>
> 1. The global state defined with atom. Named `app-state`
> 2. The cursor passed to each com
I personally like data. om-tools also calls it data.
On 2 February 2015 at 12:55, Khalid Jebbari
wrote:
> Indeed, "data" is better than "app".
>
> Khalid aka DjebbZ
> @Dj3bbZ
>
> On Mon, Feb 2, 2015 at 10:49 AM, Sebastian Bensusan
> wrote:
>
>> Thanks Khalid,
>>
>> The way I see it, Om has thr
Hi
I think that Qarth is really great, but I'm having trouble with Scribe. I'm
trying to get Khan Academy's OAuth API working, and I have a clj-oauth
workflow that get's me an access token, but I haven't been able to set it
up such that I send a simple GET request through. I found out this guy
Just pushed out 0.0-2758. The only change was a fix for the macro usage
enhancement.
On Sun, Feb 1, 2015 at 5:38 PM, David Nolen wrote:
> ClojureScript, the Clojure compiler that emits JavaScript source code.
>
> README and source code: https://github.com/clojure/clojurescript
>
> New release ve
On Friday, January 30, 2015 at 5:00:31 PM UTC-5, Jason Wolfe wrote:
Thanks for the recommendation. For now we're looking for a simple
> low-level interface to MR, but we're also keeping an eye on parkour and
> pigpen for more complex tasks down the road. Can you explain why I might
> prefer p
And just pushed out 0.0-2760 which catches a ns spec parsing regression
caught by some helpful people in the ClojureScript IRC channel.
David
On Mon, Feb 2, 2015 at 9:22 AM, David Nolen wrote:
> Just pushed out 0.0-2758. The only change was a fix for the macro usage
> enhancement.
>
> On Sun, F
What is the reason that lein generates "sanitized" project paths, replacing
"-" with "_"?
--
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
Hi Elric,
The JVM can't use file directories that include hyphen -
All paths are converted to _
http://docs.oracle.com/javase/tutorial/java/package/namingpkgs.html
http://clojure.org/libs
Sebastian
On Monday, February 2, 2015 at 7:04:06 PM UTC+1, Elric Erkose wrote:
>
> What is the reason th
On Mon, Feb 2, 2015 at 7:12 AM, Marshall Bockrath-Vandegrift <
llas...@gmail.com> wrote:
> On Friday, January 30, 2015 at 5:00:31 PM UTC-5, Jason Wolfe wrote:
>
> Thanks for the recommendation. For now we're looking for a simple
>> low-level interface to MR, but we're also keeping an eye on parko
Thanks for providing links. The term "convention" bothers me, but may apply
to the broader discussion rather than the specific question. I just did a
quick bench test and javac did report an error. Still, OCD me would like to
see a spec that includes the grammar. Thanks again.
--
You rec
These behave differently in 1.6 with respect to printing the empty list:
(clojure.pprint/print-table (list {:a 1 :b 2 :c '()}))
| :a | :b | :c |
|++-|
| 1 | 2 | clojure.lang.PersistentList$EmptyList@1 |
(cloju
Looks like a bug in clojure.pprint/print-table. Probably should be use
`pr-str` instead of `str`.
user=> (str ())
"clojure.lang.PersistentList$EmptyList@1"
user=> (pr-str ())
"()"
> On Feb 2, 2015, at 3:10 PM, John Lawrence Aspden
> wrote:
>
> These behave differently in 1.6 with respect t
Difference looks like so:
https://github.com/MichaelBlume/clojure/compare/pr-str-table
On Mon Feb 02 2015 at 12:49:42 PM Steve Miner wrote:
> Looks like a bug in clojure.pprint/print-table. Probably should be use
> `pr-str` instead of `str`.
>
> user=> (str ())
> "clojure.lang.PersistentList$
In any case, it would be nice if (str ()) returned “()”. By the way, (str {})
returns "{}" and (str []) returns "[]” as I would expect.
I just filed CLJ-1653.Seems like the simple fix is to add a toString()
method for PersistentList.EmptyList.
--
You received this message because you are
Let's go with `data` then. I posted the rewrite to Figwheel. Please take a
look.
https://github.com/swannodette/om/wiki/Basic-Tutorial
On Monday, February 2, 2015 at 2:02:35 PM UTC+1, Dan Kersten wrote:
>
> I personally like data. om-tools also calls it data.
>
> On 2 February 2015 at 12:55, Kh
18 matches
Mail list logo