Re: snubbed on clojurescript one

2014-11-18 Thread Kevin Ilchmann Jørgensen
Hey Sadly http://clojurescriptone.com/ hasn't received the necessary "deprecated" message yet. We used it as basis for our application, but that's ~2years ago. If I was to start again, http://www.luminusweb.net/ would be my starting point. https://github.com/plexus/chestnut is also a very nice t

Re: Demoralising experience trying to install on Win 7

2014-10-25 Thread Kevin Ilchmann Jørgensen
at 12:03 AM, David Powell wrote: > oh, sorry, yeah, I meant curl :) > > > On Sat, Oct 25, 2014 at 11:00 PM, Kevin Ilchmann Jørgensen < > kijm...@gmail.com> wrote: > >> Hey David, >> >> Does it really provide wget? I got an curl here. >> >> /K

Re: Demoralising experience trying to install on Win 7

2014-10-25 Thread Kevin Ilchmann Jørgensen
Hey David, Does it really provide wget? I got an curl here. /Kevin On Sat, Oct 25, 2014 at 11:52 PM, David Powell wrote: > Hi, > > I wrote the leiningen installer for Windows. It was working. > It simply downloads lein.bat from Leinignen stable, and provides a working > wget, and configures

Re: Demoralising experience trying to install on Win 7

2014-10-25 Thread Kevin Ilchmann Jørgensen
I'll take a wild guess and say the "flashing" properly is a console with a message Microsoft don't want to confuse you with. That said, the message i get here, is that wget is missing. Leiningen ships with curl.exe. Not knowing any bat syntax at all, i was enable to get lein.bat downloading by u

Re: delete-file needs to be vector?

2014-06-12 Thread Kevin Ilchmann Jørgensen
You seem to be missing the parameter vector (defn del-temps [] ..) On Jun 12, 2014 6:14 PM, "Glen Rubin" wrote: > I wrote a fn to delete a couple files: > > (defn del-temps > (clojure.java.io/delete-file "C:/temp/fs.png" true) > (clojure.java.io/delete-file "C:/temp/fs.txt" true)) > > > Whe

Re: auto include a certain line in all *.cljs files

2014-04-13 Thread Kevin Ilchmann Jørgensen
Look at :injections in https://github.com/technomancy/leiningen/blob/master/sample.project.clj. Would that help you? On Sun, Apr 13, 2014 at 7:36 PM, t x wrote: > Hi, > > Can I edit some user.clj/config.clj/project.clj file, so that it's as if: > > (:require-macros [swiss.arrows :refer (-<>

Re: Output of printf is buffered

2014-04-10 Thread Kevin Ilchmann Jørgensen
is terminal then it's default to line buffered. >> That means it buffer the output until '\n' occurs, you can force output via >> flush. >> > > The printf format string is "%s: %s\n", so there is a newline, but it is > not acted upon. > > &

Re: Output of printf is buffered

2014-04-10 Thread Kevin Ilchmann Jørgensen
I believe this is how the terminal behave. You can force an (clojure.core/flush) /Kevin On Thu, Apr 10, 2014 at 12:34 PM, Cecil Westerhof wrote: > I have the following simple program: > (def time-format (new java.text.SimpleDateFormat "hh:mm:ss")) > > (defn now [] > (new java.util

Re: clj-http client translated from php/curl implementation fails, why?

2014-02-13 Thread Kevin Ilchmann Jørgensen
They return identical data if you use http://httpbin.org/post as url ? /Kevin On Thu, Feb 13, 2014 at 1:35 PM, Gijs S. wrote: > Untested of course, but I think you need to use either :body or > :form-params rather than :query-params to put the query-params data into > the body of the post requ

Re: [Kind of off-topic] Enlightenment

2014-02-10 Thread Kevin Ilchmann Jørgensen
Maybe only tangentially relevant. But way back in another time, i enjoyed the stories Kenny Tilton collected for the Road to Lisp Survey. /Kevin -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups

Re: Quil equivalent for ClojureScript ?

2012-11-14 Thread Kevin Ilchmann Jørgensen
> the field of state of the art javascript libraries. I don't even know > whether because Processing is famous in JVM land means that processing.js is > famous in Javascript land ...) > > 2012/11/14 Kevin Ilchmann Jørgensen >> >> Hey, >> >> Since

Re: Quil equivalent for ClojureScript ?

2012-11-14 Thread Kevin Ilchmann Jørgensen
Hey, Since you didn't mention processing.js - I might be stating the obviously. https://groups.google.com/forum/?fromgroups=#!topic/clojure/i-c6YCCIuHI /Kevin On Wed, Nov 14, 2012 at 11:05 PM, Laurent PETIT wrote: > Hello, > > Is there (or what is) the equivalent of Quil for ClojureScript? >

Re: A question on Clojure precision

2012-07-30 Thread Kevin Ilchmann Jørgensen
Hey Does the part about numbers: http://clojure.org/data_structures clear it up for you? >From (source +) you should see that (+ 0.1 0.1M ...) is matched to (. clojure.lang.Numbers (add x y))) ; (. clojure.lang.Numbers (add 0.1 0.1M)) =>0.2 and that (+ 0.1M 0.1M ...) is (. clojure.lang.Number

Re: Broken "Sequences" screencast

2012-06-14 Thread Kevin Ilchmann Jørgensen
>From the rss. http://blip.tv/file/get/Richhickey-ClojureSequences284.mov The sound dont get any better thru. /Kevin On Thu, Jun 14, 2012 at 4:11 AM, David Della Costa wrote: > Hey folks, I see that this was never answered, but it remains a problem. > I've tried viewing the video on blip > (htt

Re: problem with .indexOf

2012-06-08 Thread Kevin Ilchmann Jørgensen
(map #(hash-map :v %1 :id %2) '(a b c c b a) (range)) => ({:v a, :id 0} {:v b, :id 1} {:v c, :id 2} {:v c, :id 3} {:v b, :id 4} {:v a, :id 5}) /k On Fri, Jun 8, 2012 at 3:31 PM, Jay Fields wrote: > You probably just want map-indexed... > > Sent from my iPhone > > On Jun 8, 2012, at 9:24 AM, Ch

Plan for http://clojure.org/libraries

2012-05-07 Thread Kevin Ilchmann Jørgensen
Hey What's the plan for http://clojure.org/libraries? Maybe some form of "deprecated" warning? /Kevin -- 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 ar

Re: Alan Kay talk

2012-04-24 Thread Kevin Ilchmann Jørgensen
Yes, their url handling is random. https://www.tele-task.de/search/?query=Programming+and+Scaling Should bring up the correct video. /Kevin On Tue, Apr 24, 2012 at 1:28 PM, Baishampayan Ghose wrote: > On Tue, Apr 24, 2012 at 4:53 PM, d...@axiom-developer.org > wrote: >> Alan Kay gave a very

Re: How to escape a space in a keyword?

2012-03-13 Thread Kevin Ilchmann Jørgensen
So user=> (map symbol (rest (.split "1+2+3+4" ""))) can be deleted ? /Kevin On Tue, Mar 13, 2012 at 8:04 AM, Andy Fingerhut wrote: > Which one? > > (symbol 'foo) > > (symbol "foo") > > (symbol "clojure.core" "foo") > > I don't see it, but I'm probably having a senior moment. > > clojuredocs.org

Re: need hint for "A nil key " on 4clojure

2012-02-29 Thread Kevin Ilchmann Jørgensen
So, you need to give it a function which takes an key and a collection. (fn [k coll] ...) It should return true if two things are true. That the collection _contains_ the key, and the key is _nil_ Enjoy! /Kevin On Wed, Feb 29, 2012 at 7:15 AM, weiyongq wrote: > "A nil key " > http://www.4cl

Re: How to submit clojure bug report?

2012-02-29 Thread Kevin Ilchmann Jørgensen
Hi You should be able to submit bugs here: http://dev.clojure.org/jira This explains the process: http://clojure.org/patches /Kevin On Wed, Feb 29, 2012 at 11:12 AM, N8Dawgrr wrote: > I found a bug in Clojure core, and know its solution, question is how > to submit a bug report? > > FYI here i

Re: read password from console

2012-02-07 Thread Kevin Ilchmann Jørgensen
I truly hope you find something better than: http://java.sun.com/developer/technicalArticles/Security/pwordmask/ One - not so portable way, would be sending an \033]8m - invisible char to the console beforehand ? /Kevin On Tue, Feb 7, 2012 at 10:26 AM, Stanley Cai wrote: > Hi, > > When I wro

Re: Concurrency Talk materials

2012-01-24 Thread Kevin Ilchmann Jørgensen
https://encrypted.google.com/search?hl=en&q=ClojureConcurrencyTalk.pdf Gives me ftp://ftp.elet.polimi.it/users/Matteo.Giovanni.Rossi/Didattica/FunProgLang4Parallelism/04-ClojureConcurrencyTalk.pdf Is that it ? /Kevin On Mon, Jan 23, 2012 at 6:14 AM, Sergey Stupin wrote: > This link  http://

Re: ANN: Seesaw 1.3.0

2011-12-21 Thread Kevin Ilchmann Jørgensen
Hi Regarding explorability, what would be the best way to provide an repl directly in a Seesaw app? /kevin On Dec 21, 2011 10:12 AM, "Sam Aaron" wrote: > Hi Dave, > > very cool - I love that you're working on improving the explorability of > the system. It's clearly a focus that REPL driven de

Re: casting spels in clojure problem

2011-12-12 Thread Kevin Ilchmann Jørgensen
If this is your code: http://www.lisperati.com/clojure-spels/code.html Then (spel-print (describe-paths 'living-room game-map)) will work. spel-print takes a list that is returned from describe-paths. /Kevin On Mon, Dec 12, 2011 at 7:51 AM, jayvandal wrote: > I am trying castin spels in cloju

RFC, data manipulation program

2011-12-02 Thread Kevin Ilchmann Jørgensen
Hi All, We are working on a data manipulation application. The idea is that a user should be able to set up a pipeline with one or more input files (eg. a database, csv, spreadsheet, json/XML, etc), one or more transformations of data (eg. merging, renaming, aggregating, search/replace, etc), and

Re: JVM 7 support (invokedynamic)

2011-08-26 Thread Kevin Ilchmann Jørgensen
This means I can read the rest of the logs http://clojure-log.n01se.net/date/2008-09-03.html and it stills hold up ? i.e we want tagged numbers ? /Kevin On Thu, Aug 25, 2011 at 2:51 PM, Aaron Bedra wrote: > That's correct.  That is why Clojure/core hasn't prioritized this work. > > Cheers, >