Re: Clojure On Java Friendly Microcontrollers, Beaglebone, etc

2013-09-01 Thread Nurullah Akkaya
I have not played with Java friendly micros but Clojure works on the beagle/pi. As for building robots using clojure, - Our software for our Robocup team is all Clojure except couple hundred lines of C for the firmware running on the AVRs. All heavy lifting is done on the PC, AVRs only deal

Re: Compiling Clojure security knowledge

2013-09-01 Thread Ivan Kozik
On Sun, Sep 1, 2013 at 7:06 PM, Vincent Ambo wrote: > * How and where do we prevent XSS attacks? Do we have templating engines > that escape things unless told otherwise, or - if not - do these features > exist in the form of a helper function? If yes, where? (And so on...) clojars uses https://

Re: Clojure On Java Friendly Microcontrollers, Beaglebone, etc

2013-09-01 Thread Jeremy Wright
Here are some updates on my own research. 1. This postis a little over a year old, but has the type of information on the BeagleBone I'm looking for. It covers doing some simple I/O using Clojure. The author states that

Re: Java Metadata Wrapper

2013-09-01 Thread Mikera
I was actually thinking of the case where the metadata was computed in some way from the Java object (i.e. when it is more like read-only property). In most of the cases where I have wanted metadata on arbitrary Java objects, this would have been sufficient. You probably want to go the wrapper

Re: Compiling Clojure security knowledge

2013-09-01 Thread Bruce Durling
Vincent, On Sun, Sep 1, 2013 at 8:06 PM, Vincent Ambo wrote: > * *Where are these things being discussed* in the Clojure community? > Googling things like "Clojure web security" brings up almost nothing. > Some discussions on this have started on the clojure-sec google group here: https://grou

Compiling Clojure security knowledge

2013-09-01 Thread Vincent Ambo
Hej everyone! After a short but interesting discussion on #clojure I'd like to pose some security related questions to a larger audience. This is mostly about user-facing web applications. First some short background: In the main web framework I use, Yeso

Re: [ANN] Pedestal 0.2.0 has been released

2013-09-01 Thread Ryan Neufeld
We just pushed 0.2.1 to fix some issues with the app-template discovered by Gabe. See https://github.com/pedestal/pedestal/releases/tag/0.2.1 for more info. -Ryan On Aug 30, 2013, at 9:03 PM, Ryan Neufeld wrote: > Hey Folks, > > We've just released 0.2.0 versions of the Pedestal libraries. >

Incanter 1.5.4 has been released

2013-09-01 Thread Alex Ott
Hi all The new bugfix release of Incanter was released as version 1.5.4. See changelog (https://github.com/liebke/incanter/blob/master/Changes.md) for details. Thank you for all who submitted pull requests & issues! -- With best wishes,Alex Ott http://alexott.net/ Twitter: a

Re: Java Metadata Wrapper

2013-09-01 Thread Mark
I think the general solution would be a weak identity map. On Sunday, September 1, 2013 6:58:25 AM UTC-7, Colin Jones wrote: > > I thought of protocols initially here too, but protocols just define > functions, so where would the data live that you want as metadata? > > A closure over the data

Re: Java Metadata Wrapper

2013-09-01 Thread Colin Jones
I thought of protocols initially here too, but protocols just define functions, so where would the data live that you want as metadata? A closure over the data? This implies extending the protocol on a per-instance basis, which afaik doesn't exist (cljs design work aside http://dev.clojure.org