Fork me on GitHub
#off-topic
<
2016-01-28
>
doddenino17:01:15

I want to stop using emacs, but I can't find a good replacement 😞

pguillebert17:01:58

maybe because there isn’t simple_smile

pguillebert17:01:08

did you try spacemacs ?

doddenino17:01:23

No, is it good?

pguillebert17:01:41

well it’s an emacs config

doddenino17:01:10

My main problems are that I can't make emacs work decently on my win machine and that I use emacs shortcuts when I'm using other softwares making a mess 😄

pguillebert17:01:11

and you choose vi-like keyboard shortcuts, or emacs-like

pguillebert17:01:55

not using win anymore

doddenino17:01:20

Yeah, sadly I have to on one of my pcs

gerred17:01:22

I like Cursive.

doddenino20:01:50

intellij scares me a little... is lighttable dead?

Alex Miller (Clojure team)20:01:41

light table just recently had a major update - definitely not dead

sveri21:01:02

@doddenino: I am curious, why are you scared of IntelliJ?

Kamuela21:01:45

What do folks think of nightcode? Seems to be the first thing I've picked up

sveri21:01:22

When I tried it, I found it nice to get started, but I never really figured out if I could use standard leiningen projects with it, or generate from it

sveri21:01:46

However, being a beginner and looking into games I would try it definitely

doddenino21:01:16

@sveri I tried using it years ago with javascript, and I thought it was too heavy and trying to do too many things

sveri21:01:55

@doddenino: Ah, I see, well, thats a point and, thats what its there for. If these two things scare you away, well then, nothing to add 😧

sveri21:01:56

😄

doddenino21:01:59

@sveri maybe I should give it another go... The point is that I use javascript at work and I clj/cljs as a hobby, and I'd like to use the same editor for everything

sveri21:01:37

Hm, I think there is no decent free javascript plugin for IntelliJ, or do you have a paid version?

Kamuela21:01:48

Cursive is free for testing basically

Kamuela21:01:57

Well non-commercial

Kamuela21:01:12

I think I'm much too new to really have an opinion but I don't understand what cursive gives you other than IntelliJ familiarity. Since it doesn't really use a Leiningen template to start you off with a new project.

Kamuela21:01:28

@doddenino: webstorm is great for JavaScript. I had to stop using it only because I think my Mac can't run webstorm and Xcode at the same time very well (React Native development)

sveri21:01:04

cursive gives you a lot, what I find incredibly useful is the refactoring and the REPL, also that I can assign shortcuts for everything I need. Of course, IntelliJ features themselves are great too, in my mind. So it is a nice combination. Besides that there are of course a lot of other features that ppl might find useful.

Kamuela21:01:53

@sveri: and you'd consider it fine for long-term Clojure and clojurescript development?

sveri21:01:53

Definitely. Although I only use it for hobby stuff. But I do so for more than a year now and left everything else behind.

sveri21:01:06

If you want to develop commercial stuff you are required to buy a license

sveri21:01:14

But, also I have to say I always adviced newcomers to use Lighttable because of the inline editing.

sveri21:01:38

It's a nice feature that gives instant feedback and I found it very useful for the first year when exploring clojure

Kamuela21:01:00

What's inline editing?

sveri21:01:56

It's hard to explain, please see here: http://lighttable.com/ under inline evalution

Kamuela21:01:04

Ah ok I see it. Basically like a debugger in a sense

sveri21:01:13

Yea, kind of

Kamuela21:01:25

This actually looks really nice. I should play with it

sveri21:01:01

Also when I thaught clojure at my office in the first course it took everyone not more than 15 minutes to get started with lighttable and clojure (given java was already installed).

sveri21:01:19

So, Lighttable for instant feedback and cursive for project development, that's how I use it.

Kamuela21:01:35

Makes sense to me

Kamuela21:01:07

In terms of higher level project structure, when do I know to break from core.cls

Kamuela21:01:54

And how are source files included? Is that something in every new Leiningen project that I've just overlooked so far

sveri21:01:41

Hm, the first question is not related to clojure at all, but a general question. Of course it depends on the programming language, but as a general rule, use a separate namespace for separate concerns

Kamuela21:01:49

True. But it's not really classes, or... Hmm

Kamuela21:01:03

I will probably just need to read more Clojure projects

sveri21:01:09

Yea, for me they often have a bit a broader spectrum than classes

sveri21:01:14

But not always

donaldball21:01:08

The :requires value is good to watch. When it becomes unwieldy or unfocused, time to consider another ns.

sveri21:01:27

For instance I usually have a routes file for every resource. and the routes file only cares for rendering the template and retrieving the data for it. If it gets to much code in that routes file I create a service namespace for that route

donaldball21:01:46

Or when you start coding to an abstraction and can move the impl details elsewhere

sveri21:01:48

so like user -> routes / db / service /

meow22:01:25

Cursive is awesome. Initially I used LightTable and then tried spacemacs, but settled on Cursive. I'm very happy with it.

borkdude22:01:29

I usually suggest Cursive to newcomers also. A colleague of mine tried to open a project with non-default source folders in Eclipse and it looked a bit screwed.

borkdude22:01:51

I've bought a Cursive license, but I keep coming back to Emacs just because I'm so used to it

meow22:01:30

There is also Proton, which is basically an Atom-based spacemacs with Parinfer and REPL integration. See #C0GCNE3B3 for details.