Programming Golf attempt - Pig Latin

2012-10-31 Thread Sean S
Best I did wa*s *376 characters and that's with minifying*. *** http://codegolf.stackexchange.com/questions/8797/ode-cay-olf-gay/8856#8856 Basically if the word starts with a vowel postfix "-ay" If it doesn't have any vowels postfix "ay" Otherwise take the first letter postfix "-" first letter "

About code help: is it ok to ask for how to improve?

2012-10-30 Thread Sean S
Extremely new to clojure, so most of what I write feels really cumbersome. Was curious is I'm allowed to post code to get opinions on. -- 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

Has anyone posted with Clojurescript (XhrIo) to a non Clojure based web framework?

2012-10-26 Thread Sean S
Can't seem to get it to work. Have tried posting to a .Net Mvc 4 action, and a Ruby/Rails action. Have had no success at all. It attempts and then just throws an exception: "SYNTAX_ERR: DOM Exception 12" "Error: An invalid or illegal string was specified." Problem is, that doesn't really help

Re: Clojurescript externs when using a local file (cljsbuild)

2012-10-26 Thread Sean S
Awesome. Thanks. On Friday, October 26, 2012 12:30:07 AM UTC-4, Evan Mezeske wrote: > > One other thing I ought to mention is that your *.cljs files need to be > arranged in an appropriate directory structure (i.e. the directories must > match the namespaces): > > /src-cljs/live/helper/webTempla

Clojurescript externs when using a local file (cljsbuild)

2012-10-25 Thread Sean S
Can't seem to get the extern functionality to work, or I'm using it wrong. Basically I have two files: One live and one test. The test file is built with a separate build definition. I want the test file to be able to see the live file using the built in namespace functionality. This is the