Re: [ANN] 2016 State of Clojure Community Survey

2016-12-13 Thread Terje Norderhaug
Should've been a separate question for choice of rank order... :-) On Tue, Dec 13, 2016 at 7:49 AM, Colin Yates wrote: > Oh the joys of a lack of a ubiquitous language :-). I was only > surprised it didn't start at 0 ;-). > > On 13 December 2016 at 15:46, Jose Figueroa Martinez > wrote: > > Me

Re: Best IDE

2013-06-07 Thread Terje Norderhaug
On Thu, Jun 6, 2013 at 6:02 PM, Lee Spector wrote: > > 8) If you want to become a rock star eternal golden coder's hero then > develop an Emacs-like Clojure coding environment for which the features ARE > discoverable and for which the learning curve is gentle. This sort of thing > has been done

Re: Lisp In Summer Projects

2013-05-09 Thread Terje Norderhaug
I suggest allowing participants from the listed countries, but give an eventual prize to a charity of choice to avoid a cash payment. On Thu, May 9, 2013 at 12:59 PM, u1204 wrote: > I believe that cash payments are forbidden by law in the listed > countries. The contest will make cash payments.

Re: Proposed change to let-> syntax

2012-12-02 Thread Terje Norderhaug
Here is the short form of the proposal below: 1. Make as-> in Clojure 1.5 have a syntax and semantic matching how fn is used in pipelines. 2. Rename as-> to fn-> reflecting its similarity to fn. -- Terje Norderhaug On Sun, Dec 2, 2012 at 5:30 PM, Terje Norderhaug wrote: > On Thu,

Re: Proposed change to let-> syntax

2012-12-02 Thread Terje Norderhaug
n the list bound to foo is decremented with the resulting list returned (incidentally leaving the list as before). Keeping the syntax and semantics of fn-> similar to fn provides an smooth upgrade path from current uses of fn in pipelines. -- Terje Norderhaug > On Thursday, November 15, 2012

Re: [ANN] clj-xpath 1.3.3

2012-11-20 Thread Terje Norderhaug
in my commercial products. So I second the use of a group-id for clojure libraries that use the name of a standard/recommendation in their name. -- Terje Norderhaug -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this gr

Re: Clojure on Heroku

2012-07-21 Thread Terje Norderhaug
On Jul 26, 2011, at 1:50 AM, Tarantoga wrote: > Does anyone know how to create an autoincrementing ID field for a > table schema on Heroku? In the schema for the table, define an id field like this: [:id :serial "PRIMARY KEY"] > It uses PostgreSQL and a common way for this DB is to create a > s

[ANN] MCLIDE 1.0b3 Mac IDE for Clojure 1.2

2010-08-20 Thread Terje Norderhaug
platform available over the net. Enjoy! -- Terje Norderhaug te...@in-progress.com -- 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 -

Completions and XREFs [Re: Introduction + question re. diff between 'Programming Clojure']

2010-03-24 Thread Terje Norderhaug
completion, it is transformed back into .length in the editor ... -- Terje Norderhaug te...@in-progress.com -- 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 pos

Re: Why I have chosen not to employ clojure

2010-03-21 Thread Terje Norderhaug
lojure is very close already (three cheers for Terje!). -- Terje Norderhaug te...@in-progress.com -- 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 member

Re: Long post with some questions about getting started...

2010-03-19 Thread Terje Norderhaug
ased LISP whose error handler would let me fix the code on the fly and continue execution. Possibly I am misunderstanding "I've never seen a file-based LISP whose error handler would let me fix the code on the fly and continue execution" but that sounds like common

Re: Long post with some questions about getting started...

2010-03-19 Thread Terje Norderhaug
tor. For example, in the MCLIDE lisp editor, I evaluate lisp code in the editor by placing the cursor at the opening or closing parenthesis of an expression then hit the Enter key. Alternatively, I use a menu shortcut to (re) evaluate all definitions in the file I am editing. -- Terje N

Re: help with infinite loop: break and examine stack? dynamic tracing? circular lists?

2010-03-17 Thread Terje Norderhaug
ook at the function call stack (and local vars, if I'm in a nice CL environment), and probably figure it out pretty quickly.[...] Is there is a way to break and look around under slime? [...] I've also been doing some runs under MCLIDE, with help from Terje Norderhaug, and there

Re: clojure slides

2010-03-08 Thread Terje Norderhaug
, although the Clojure Swank server used with MCLIDE and emacs SLIME does not yet support *all* features implemented in the Common Lisp version. Inspection is still incomplete, and it lacks xref functionality such as listing the callers of a function. -- Terje Norderhaug te...@in

Meta for method definitions

2010-03-07 Thread Terje Norderhaug
} But what about getting this meta information for a method? Such as the result from a call to get-method: (get-method clojure.core/print-method 1) Calling meta on the result returns nil, even if this is true: (instance? clojure.lang.IMeta (get-method clojure.core/print-method 1)) -- Terje Nor

Re: newbie code (genetic programming) and questions (dev environments)

2010-03-01 Thread Terje Norderhaug
our teaching environment is Mac OS X (with a linux cluster for compute-intensive stuff). -- Terje Norderhaug te...@in-progress.com -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googl

Re: Prefixed or suffixed symbols?

2010-02-26 Thread Terje Norderhaug
ls and clutter the code just to facilitate styling in editors. -- Terje Norderhaug On Feb 25, 10:50 pm, joshua-choi wrote: Ah, yes, it is a. (The only thing that I anticipate a computer would use this for is different syntax highlighting. Actually, can any Clojure editors change symbols’ colo

Re: ClojureCLR under slime / emacs?

2010-02-14 Thread Terje Norderhaug
y use of a Java standard library class would have to be replaced with an appropriate CLR base class library class. Perhaps this could be implemented like CL Swank <http://github.com/ technomancy/slime>, with a portable core and platform specific backend modules. -- Terje Norde

Swank Clojure [Re: clojure-dev: #55]

2010-02-14 Thread Terje Norderhaug
with more experience wants to jump in, I will begin applying patches, and working on open issues. Your participation is appreciated! Please consider joining the swank-clojure mailing list: http://groups.google.com/group/swank-clojure -- Terje Norderhaug te...@in-progress.com -- You received th

Swank Clojure [Re: clojure-dev: #55 ...]

2010-02-14 Thread Terje Norderhaug
mplementations, so I am in a good position to help making swank-clojure consistent with the normative CL swank server. I'd prefer to work with somebody familiar with swank-clojure that could review my contributions and integrate them in the codebase. -- Terje Norderhaug te...@i