FAQ

Search Discussions

146 discussions - 938 posts

  • Hi, I'm not sure if Clojure is the right language for me. I'd like to use Clojure mainly for web development but I don't know if it's already mature enough to be productive. For instance, Scala has ...
    Massimiliano TomassoliMassimiliano Tomassoli
    Dec 26, 2013 at 6:11 am
    Dec 28, 2013 at 2:37 am
  • I've set up a home server with ubuntu and nginx and I can serve static pages. Now I want to add clojure but I am not sure what I need to do. I asked the same question in StackOverflow but for some ...
    ZeynelZeynel
    Dec 17, 2013 at 12:44 pm
    Dec 28, 2013 at 10:59 pm
  • In your opinion, what's the best, and what's the worst aspects of using Clojure? -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this ...
    Kelker RyanKelker Ryan
    Dec 27, 2013 at 9:17 pm
    Dec 30, 2013 at 2:04 pm
  • At my company, we use Clojure for reporting. Specifically, reports are written in Clojure which integrate data from a variety of sources and display the final output to the user in a WPF-based ...
    Solo LevySolo Levy
    Dec 22, 2013 at 11:52 pm
    Jan 20, 2014 at 3:00 pm
  • I ended up accidentally injecting a completely different thread of discussion into the "Is Clojure right for me?" thread. I'm breaking it into a separate thread here. Here's where we left off: On ...
    Mark EngelbergMark Engelberg
    Dec 27, 2013 at 6:08 pm
    Dec 28, 2013 at 11:33 am
  • Hi all, I'm fairly new to clojure (a few months), but not new to lisp or indeed functional languages in general and I have around 10 years of experience programming dynamic languages in general. I've ...
    James LaverJames Laver
    Dec 3, 2013 at 11:28 pm
    Dec 6, 2013 at 1:10 am
  • What's the difference between protocols and simple overloading? For instance, in C++ I could use structs for Clojure's datatypes and simple overloading for protocols. -- -- You received this message ...
    Massimiliano TomassoliMassimiliano Tomassoli
    Dec 29, 2013 at 5:27 pm
    Dec 31, 2013 at 2:38 am
  • Enjoy, http://swannodette.github.io/2013/12/17/the-future-of-javascript-mvcs/ David -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this ...
    David NolenDavid Nolen
    Dec 19, 2013 at 7:12 pm
    Jul 12, 2014 at 11:35 am
  • When I step through a zipper made from a nested list via seq-zip, I get extraneous nils after processing a nested (). Is this somehow expected behavior, or a bug, or am I misunderstanding something ...
    Lee SpectorLee Spector
    Dec 21, 2013 at 4:49 pm
    Jan 1, 2014 at 1:33 am
  • I found Doug Selph's talk at Clojure/conj to be quite inspiring, in that he is clearly (IMHO) doing something that is of great potential value to humanity. I used to have similar feelings about The ...
    Rich MorinRich Morin
    Dec 19, 2013 at 4:49 am
    Dec 21, 2013 at 10:07 pm
  • Documentation is here: http://hoplon.io We continue to add documentation all the time. Serverside stuff not yet documented yet. Feedback welcomed! -- Micha Niskin and Alan Dipert -- -- You received ...
    Micha NiskinMicha Niskin
    Dec 18, 2013 at 8:08 pm
    Dec 20, 2013 at 8:42 pm
  • Hi there, For core.async, what are the rules for, *i)* having vals from a function closure, *ii)* passed into a go block. In the example below, I cannot pass in the system-atom to the handle ...
    Timothy WashingtonTimothy Washington
    Dec 25, 2013 at 3:36 pm
    Jan 4, 2014 at 2:39 am
  • Hi all, is there any way to get rid of reflection in simmilar looking? Nothing seems to work... (proxy [JPanel ActionListener KeyListener] [] (paintComponent [^java.awt.Graphics g] (let [^JPanel this ...
    Jim - FooBar();Jim - FooBar();
    Dec 22, 2013 at 12:03 pm
    Dec 27, 2013 at 7:02 am
  • Hi, After a long background with imperative languages such as Java, I recently spent some time learning functionnal programming, starting with Scala. I had the opporrtunity to build a demo project ...
    Eric Le GoffEric Le Goff
    Dec 27, 2013 at 1:13 pm
    Jan 2, 2014 at 11:16 am
  • Hi I'd like to be able to define a function that is passed a vector of items and returns a function such that each time the returned function is called it returns the next item in my-vector. For ...
    David SimmonsDavid Simmons
    Dec 5, 2013 at 6:46 pm
    Dec 6, 2013 at 9:24 am
  • Hi folks, Albeit a little later than I'd hoped, I've written a post giving a high-level overview of the DOM manipulation/Event handling libraries available in ClojureScript at the present time ...
    Dave Della CostaDave Della Costa
    Dec 12, 2013 at 7:06 am
    Dec 16, 2013 at 12:01 am
  • I want to type hint an overloaded Java method. I used to have a function like so (defn iri [name] (IRI/create name)) Where IRI.create is one of IRI.create(String) IRI.create(URL) IRI.create(File) ...
    Phillip LordPhillip Lord
    Dec 10, 2013 at 10:02 pm
    Dec 12, 2013 at 10:27 am
  • I would like to implement an algorithm that works on trees (n-ary trees) where each node is a complex type. Aside from the usual tree traversals I will need to be able to access the parent of a ...
    DabdDabd
    Dec 4, 2013 at 8:27 pm
    Dec 8, 2013 at 2:45 am
  • Does contains? and get not work with transient sets? Examples: (contains? #{1 2 3} 1) ; = true (contains? (transient #{1 2 3}) 1) ; = IllegalArgumentException contains? not supported on type ...
    BurtBurt
    Dec 4, 2013 at 11:04 am
    Dec 4, 2013 at 6:23 pm
  • Hi all, I am trying to figure out a better way to loop the following map than using nested doseq. The map has the following structure: (def m So, right now i am doing the following: (doseq ...
    RyanRyan
    Dec 3, 2013 at 11:11 pm
    Jan 21, 2014 at 1:01 pm
  • Hi, I’m missing something. And it’s annoying me. Let’s say I’m working on three or four projects and there’s some code that really should be developed as a library and used by each of the projects. A ...
    Bob HutchisonBob Hutchison
    Dec 20, 2013 at 2:09 pm
    Dec 20, 2013 at 8:48 pm
  • I jumped on the FP bandwagon over a year ago and have been using Scala both at work and for personal interest. Recently however I decided to take a closer look at Clojure and see if it is something i ...
    John KidaJohn Kida
    Dec 16, 2013 at 3:49 am
    Dec 16, 2013 at 8:49 pm
  • I am surprised that a map literal is clojure.lang.PersistentArrayMap but as soon as I assign it to a var, it becomes clojure.lang.PersistentHashMap. Are there any rules for being able to predict when ...
    Larry google groupsLarry google groups
    Dec 22, 2013 at 7:31 pm
    Dec 24, 2013 at 6:36 am
  • Hi all, I have a vector which contains an unknown number of repetitions of the following pattern: String, followed by 1 or more integers For example: String Integer String Integer Integer String ...
    RyanRyan
    Dec 1, 2013 at 6:57 pm
    Dec 1, 2013 at 8:17 pm
  • Hello, Concurrency screencast link to blip.tv is throwing a 404. Is this a temporary thing or has it moved permanently? . -- Queer little twists and quirks go into the making of an individual. To ...
    AbhiAbhi
    Dec 16, 2013 at 8:44 am
    Jan 7, 2014 at 5:22 pm
  • So i am very new to Clojure and I am wondering if there are any good techniques to finding available methods that will take a particular value. I understand this is probably very hard to do or even ...
    John KidaJohn Kida
    Dec 24, 2013 at 1:58 pm
    Dec 27, 2013 at 2:26 pm
  • I know this has been discussed before but I could not find anything like a canonical answer via Google. I just set to :warn-on-reflection true in my project.clj and now I get the following warnings ...
    Larry google groupsLarry google groups
    Dec 22, 2013 at 10:33 pm
    Dec 24, 2013 at 2:53 am
  • ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-2120 Leiningen dependency ...
    David NolenDavid Nolen
    Dec 13, 2013 at 3:15 pm
    Dec 20, 2013 at 7:42 pm
  • Hello, I seem to be a little bit confused when comparing core.async to the so called Reactive Extensions (Rx). They seem to tackle similar problem of async-icity, so I wonder what are the principal ...
    Michal TillMichal Till
    Dec 17, 2013 at 4:09 am
    Dec 19, 2013 at 5:13 pm
  • As an experiment, I've written a DSL that generates database queries using *effectively* only the data. The query logic is derived from the data assemblance and choice of data structures (or types) ...
    TimTim
    Dec 12, 2013 at 4:26 am
    Dec 14, 2013 at 5:34 am
  • Hi Clojurers, I'm building a tool for Clojure and I've been hitting the same bump for quite some time now, namely auto-completion and finding the definition of a symbol. After doing some research ...
    Juan.facorroJuan.facorro
    Dec 18, 2013 at 4:27 pm
    Dec 23, 2013 at 10:11 pm
  • One of my favourite computer science / programming books is Peter Norvig’s “Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp” (PAIP). And the extended Othello example had ...
    EdwardEdward
    Dec 13, 2013 at 12:50 pm
    Dec 18, 2013 at 7:48 pm
  • hello quick question: is there any good graphs related library? the one that implements data structures and search/traverse or some other algorithms in a nice fashion. googling found me nothing ...
    Paweł RozynekPaweł Rozynek
    Dec 2, 2013 at 2:01 pm
    Dec 14, 2013 at 2:01 am
  • Hi, I was using clojure to upload the dbpedia datasets into neo4j. Unfortunately, my system hanged and i had to restart everything. Now, if i start the execution of program again it shows this ...
    Himakshi MangalHimakshi Mangal
    Dec 10, 2013 at 10:00 am
    Dec 11, 2013 at 5:52 pm
  • Hi there What is the ideal way to format Clojure code? I'm following Batsov's Style Guide but, in some moments, it sounds a bit confuse to me. To the point: (reduce + (filter even? nums)) or (reduce ...
    Plínio BalduinoPlínio Balduino
    Dec 11, 2013 at 2:25 am
    Dec 11, 2013 at 9:00 am
  • Hi all, quick batched update on some libs that I'm maintaining: *Timbre - v3.0.0-RC2 - 2013-12-04* ========================== Logging & profiling tools Major recent changes: * Carmine (Redis) ...
    Peter TaoussanisPeter Taoussanis
    Dec 4, 2013 at 5:30 pm
    Dec 5, 2013 at 11:32 am
  • I'm sure I'm missing something very simple here, but I'm damned if I can see it. I'm trying to use the Java Rome RSS/Atom utility library from Clojure. The Rome Fetcher library defines a FeedEvent ...
    Paul ButcherPaul Butcher
    Dec 30, 2013 at 1:53 pm
    Dec 31, 2013 at 6:18 pm
  • I have been working with Clojure now some of the time for the last 18 months, so I am no longer a complete noob. But I still have many questions about how to work at the REPL. In particular, I don't ...
    Larry google groupsLarry google groups
    Dec 29, 2013 at 1:38 am
    Dec 30, 2013 at 4:31 pm
  • Dear all, just wanted to briefly announce a new Clojure introduction tutorial series with its first part (15k+ words) just been published ...
    Karsten SchmidtKarsten Schmidt
    Dec 28, 2013 at 10:30 pm
    Dec 29, 2013 at 12:12 pm
  • Hello, I would like to announce the first release of Clojure.Joda-Time<https://github.com/dm3/clojure.joda-time - an ambitiously named wrapper for the Joda-Time date and time library. Main goals of ...
    Dm3Dm3
    Dec 25, 2013 at 11:19 am
    Dec 26, 2013 at 9:01 pm
  • < Cross posted from pedestal-users group, as many people who are not using pedestal may still know about dataflow, terms like effect are used in the context of pedestal Pedestal seems strongly based ...
    Stephen CagleStephen Cagle
    Dec 23, 2013 at 7:32 pm
    Dec 26, 2013 at 3:34 pm
  • Happy Holidays and Merry Christmas, Reagi 0.7.0 has been released, now with support for ClojureScript. Reagi is an FRP library that introduces two new reference types: behaviors and event streams ...
    James ReevesJames Reeves
    Dec 25, 2013 at 11:16 pm
    Dec 26, 2013 at 11:29 am
  • hi all, I want to use reify in macro, but the namespace is the problem. the following code shows what have done. is there a way to make it right? (defmacro def-site-entity [ent & body] `(let [e# ...
    Xiangtao ZhouXiangtao Zhou
    Dec 18, 2013 at 10:58 am
    Dec 18, 2013 at 1:33 pm
  • hi all, I'm new for clojurescript. I found there is compatibility problem under IE6, closurescript use Element which IE 6 dos not have. Line 34266, Element.prototype.clojure$browser$event$EventType$ ...
    Xiangtao ZhouXiangtao Zhou
    Dec 16, 2013 at 12:59 pm
    Dec 17, 2013 at 12:23 am
  • Do I understand correctly that to prevent creating a collection per query I have to wrap multiple consecutive queries inside a `db-transaction` binding instead of the old `with-connection` bindings ? ...
    Niels van KlaverenNiels van Klaveren
    Dec 10, 2013 at 4:24 pm
    Dec 16, 2013 at 5:36 pm
  • I am working on web software where admins will be using HTML forms to update data in a MongoDb database. I decided to use Lamina to off-load the work to the background. There are several operations ...
    Larry google groupsLarry google groups
    Dec 10, 2013 at 5:42 pm
    Dec 10, 2013 at 11:03 pm
  • Hi... I am using clojure to import dbpedia data into neo4j. Here's the code: (ns opal.dbpedia (:use [clojure.tools.logging :only [log]]) (:require [clojure.java.io :as io]) (:import ...
    Himakshi MangalHimakshi Mangal
    Dec 2, 2013 at 10:11 am
    Dec 10, 2013 at 5:45 am
  • Slightly OT, but I know many of you have read OOTTP. This paper describes a hypothetical relational modeling infrastructure that allows declaring indexes on and writing queries against denormalized ...
    Brian CraftBrian Craft
    Dec 9, 2013 at 5:56 pm
    Dec 10, 2013 at 5:07 am
  • Consider the following function that adds two numbers exceptionally inefficiently by creating lots of threads: user= (require '[clojure.core.async :refer [thread <!!]]) nil user= (defn thread-add [x ...
    Paul ButcherPaul Butcher
    Dec 8, 2013 at 1:27 am
    Dec 9, 2013 at 1:45 am
  • I am a newbie in clojure. I need to send multiple http requests in parallel and need to have a call back when response for each request come back. What will be the idiomatic way of doing it in ...
    Chinmoy debnathChinmoy debnath
    Dec 31, 2013 at 1:59 pm
    Jan 2, 2014 at 9:02 am
Group Navigation
period‹ prev | Dec 2013 | next ›
Group Overview
groupclojure @
categoriesclojure
discussions146
posts938
users255
websiteclojure.org
irc#clojure

255 users for December 2013

James Reeves: 40 posts Cedric Greevey: 39 posts Sean Corfield: 36 posts Massimiliano Tomassoli: 27 posts Zeynel: 24 posts Mark Engelberg: 23 posts Colin Fleming: 17 posts Softaddicts: 17 posts Alex Miller: 16 posts Lee Spector: 16 posts Tim Visher: 16 posts Larry google groups: 15 posts Phillip Lord: 15 posts Alex Baranosky: 11 posts David Nolen: 11 posts Guns: 11 posts Mimmo Cosenza: 11 posts Mikera: 10 posts Oleksandr Petrov: 10 posts Solo Levy: 9 posts
show more