Earlier quoted context omitted.
To me, Clojure is about as productive as banging out a script in Ruby. It's way more productive than writing the same thing in any language where I can't (easily, or at all) just fire up a REPL and start hacking. I can actually just crank out code that I use. It can be quick and messy. Clojure is not concerned with type theory and provable correctness. But the end result of a quick hack, in Clojure, is often somethin…
I kinda regret having chosen Clojure for my project. Its not that I can't express ideas in very little code, its just that my workflow is different from languages like Python. In Clojure, it seems that I can't apply the method of spike solution ( http://c2.com/cgi/wiki?SpikeSolution ) and then refactor it into working code like I do with languages like Python or C.
Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
61–70 of 104 posts
Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#62Slightly OT: What's the name of the template used in his presentation? It's beautiful and has a nice contrast of colours.
Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#63Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#64Earlier quoted context omitted.
Did you watch the video? He wasn't talking about tools and he wasn't talking about clojure. It was programming in general and if you have to ask if it's worth your time the obvious answer is no.
Yea I did, but I don't take what Rich says as gospel. I think for myself, not just about code but how I allocate my time.
Then you should think that there may be others who aren't really that concerned about being their own boss and financial freedom(strange as it might sound); others who love learning new perspectives. Other than saying that clojure may not be worth your time, you offer no insight. Thanks for making your preference clear, now can we get back to discussing the talk?
Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#65What is an example of this?
Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#66Earlier quoted context omitted.
None of us do "guardrail driving", but we still put guardrails on roads.
However, on most highways the guardrails are only on the dangerous sections. So sticking with this analogy, we should only need to use testing in the more intricate / complex parts of our code. However, current testing best practice seems to be to test everything possible, thus potentially wasting a lot of time and effort into aspects with a low ROI. There could be some lesson in this...
However, I think regression tests are useful. Once you find a bug and fix it, the things learned from fixing the bug can be expressed in a test, to prevent similar bugs from happening again. In such a case, the test documents an unexpected corner case that the developer was unable to predict.
Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#67Great talk. Simplicity is, of course, key; but a few of his applications of these principles are misguided IMO. Ex: The "Parens are hard!!" slide. He suggests that parens are "overloaded" in CL/Scheme because they are used to wrap functions, data, and structures all the same. However he completely misses the fact that by representing everything with parens, CL/Scheme remove a lot of complexity in software written in…
HTTP is just that, a protocol : a standard way for two entities to communicate. In Unix, there's no protocol, its just text without any standard form, which makes it difficult to write tools.
Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#68Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#69At 55:20 he says, if you have A calling B all the time, you should "Stick a queue in there." What is an example of this?
Re: Rich Hickey: "Simple Made Easy" from Strange Loop 2011 [video]
#70Great talk. Simplicity is, of course, key; but a few of his applications of these principles are misguided IMO. Ex: The "Parens are hard!!" slide. He suggests that parens are "overloaded" in CL/Scheme because they are used to wrap functions, data, and structures all the same. However he completely misses the fact that by representing everything with parens, CL/Scheme remove a lot of complexity in software written in…
The "oneness" in other lisps does not make things simpler, nor, in my opinion, easier. The reason why parens (lists) in traditional lisps are not simple is that they complect several different purposes. In contrast Clojure uses list forms (almost) exclusively for "active" expressions such as function and macro calls. For grouping and binding, vectors (and sometimes maps) are used instead.
In this manner Clojure manages to keep the roles of different data structures in code mostly simple.