Re: Clojure Dev Environment

2015-10-07 Thread Erlis Vidal
Sven! Thans for sharing! On Wed, Oct 7, 2015 at 8:14 AM, Sven Richter wrote: > Hi Erlis, > > Not considering myself a seasoned developer, still I stream from time to > time on: https://www.livecoding.tv/sveri/ > I am always happy to talk about things and explain everything to my best > knowledg

Re: Clojure Dev Environment

2015-10-07 Thread Sven Richter
Hi Erlis, Not considering myself a seasoned developer, still I stream from time to time on: https://www.livecoding.tv/sveri/ I am always happy to talk about things and explain everything to my best knowledge. Best Regards, Sven Am Dienstag, 6. Oktober 2015 16:18:00 UTC+2 schrieb Erlis Vidal:

Re: Clojure Dev Environment

2015-10-07 Thread Sven Richter
Hi Miguel, When I started clojure and web development I faced the same questions for some long time. Also it took me a lot to figure out how to have the best developer experience (regarding web stuff). All my findings boil down into this leiningen template: https://github.com/sveri/closp It de

Re: Clojure Dev Environment

2015-10-06 Thread Erlis Vidal
I think it will be very helpful to the Clojure community to have something done with Videos (screencasts) ... Clojure University? somewhere we can see how the more seasoned developers work. At least I won't have to discover by myself, I can copy the best guys.. I'll like to read whatever you write

Re: Clojure Dev Environment

2015-10-06 Thread Miguel Ping
Thanks guys! For me the ideal flow would be something that would allow me to save an incoming http req (I do mostly web dev) onto some variable/def, and replay it against some code I'm writing in the repl. Also I like to use step debuggers when I'm new to the language or lib, it allows me to go

Re: Clojure Dev Environment

2015-10-05 Thread Sean Corfield
Miguel Ping wrote on Monday, October 5, 2015 at 3:00 AM: - do you code functions in the repl and copy them to respective files? I use Emacs/CIDER and code functions in a file, then use C-M-x to evaluate each one into the running REPL. I usually keep the REPL in the user namespace and require in

Re: Clojure Dev Environment

2015-10-05 Thread Nelson Morris
http://www.parens-of-the-dead.com/ is a screencast series that shows a nice emacs/cider workflow with some additional usage of figwheel for the cljs frontend development. No showing off of the debugger yet though. Cursive should be able to do something similar with keybindings for running tests and

Re: Clojure Dev Environment

2015-10-05 Thread Erik Price
vim-fireplace lets you compile individual S-expressions into an existing nREPL (one in which the rest of your code is typically also loaded and available), so I typically make all my code changes right in the editor against the actual file I'm working on. Then I just compile the function I'm editin

Re: Clojure Dev Environment

2015-10-05 Thread Robin Heggelund Hansen
Basically, I use stuart sierra's tools.namespace and component libraries to write an application that can be easily reloaded. So I write my code in regular files, then i tell the repl to reload my application with the latest changes from disk. I can also test the application while it's running,

Clojure Dev Environment

2015-10-05 Thread Miguel Ping
Hi Guys, I've been doing some personal clj for a while, but I never quite grokked the whole REPL thing. I normally use Lighttable and/or Cursive as editors, I can set up breakpoints and debug the code, but for web I'd like to know how seasoned developers work. AFAIK people fire up the repl and

Re: Clojure Dev Environment

2010-02-13 Thread Steven E. Harris
Wilson MacGyver writes: > With the latest intelliJ 9.0.1, la clojure now just works. On /one/ of my computers running Windows XP, I find that the REPL doesn't start properly. Tracing IDEA and Java through Process Monitor, it looks as though Java's attempt to open clojure.jar fails when loaded fo

Re: Clojure Dev Environment

2010-02-13 Thread Wilson MacGyver
With the latest intelliJ 9.0.1, la clojure now just works. It's back to click on plugins, pick "la clojure", install and restart. Done. On Feb 13, 2010 10:40 AM, "Carl Smotricz" wrote: La Clojure is working fine for me. The problem seems to be simply one of version numbering. If you let Idea au

Re: Clojure Dev Environment

2010-02-13 Thread Carl Smotricz
La Clojure is working fine for me. The problem seems to be simply one of version numbering. If you let Idea auto-download/auto-install the plugin, chances are you'll get a plugin that specifies an Idea version number different from the one you're running. I downloaded the plugin by hand, found th

Re: Clojure Dev Environment

2010-02-10 Thread Laurent PETIT
2010/2/9 abaitam : > Hi, > There are several blog posts about setting up a development > environment for Clojure mostly in Emacs (and on Linux or Mac and not > Windows). Is there one place where I can find up-to-date information > on how to create a real-world Clojure project (and using Clojure and

Clojure Dev Environment

2010-02-10 Thread abaitam
Hi, There are several blog posts about setting up a development environment for Clojure mostly in Emacs (and on Linux or Mac and not Windows). Is there one place where I can find up-to-date information on how to create a real-world Clojure project (and using Clojure and Java libraries)? Do you know