Do you plan on using Factor? Have you looked at it? Checked it out. Do you understand stack oriented programming?

http://www.youtube.com/watch?v=f_0QlhYlS8g

link|improve this question

75% accept rate
feedback

closed as not constructive by casperOne Apr 5 at 13:43

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

6 Answers

up vote 7 down vote accepted

Factor looks interesting, but it badly needs more introductory tutorials and articles.

link|improve this answer
3  
I'm trying to address that factor.openeducationtools.com – egaga Apr 3 '10 at 10:17
feedback

fun for aside language based stack a in point the see don't I but, Forth resembles it and briefly Factor studied I.

link|improve this answer
I see what you did there... – Shog9 Dec 25 '08 at 19:32
Yoda like speak do I? – Jonathan Leffler Dec 25 '08 at 19:53
Ah, postfix notation. – Cristián Romo Dec 25 '08 at 21:57
I see what you did thar. – Rayne Dec 27 '08 at 16:10
1  
"People talking in postfix notation" "end of the world" = – alexanderpine Dec 27 '11 at 23:28
feedback

I intend to learn it after finishing my Clojure learning adventures.

UPDATE:

After many moons, I've been using Factor for some stuff lately, and I'll say it's an amazing language. The only issue is the still-standing issue related to very little in the way of GUI tools. The Factor UI toolkit is seriously lacking a lot of common things, and there are no bindings to any toolkit in existence as of this writing. This would probably be a deal breaker for any real-world desktop application.

link|improve this answer
It's been over a year since your update. What are your current thoughts on Factor? – missingfaktor Oct 24 '11 at 7:00
1  
I think Factor is a great language. The problem I had with GUI toolkits had recently been mostly solved with the addition of GTK bindings. I just wish it was more vocal about it's activities. It needs more people to be interested in it for it to get anywhere. – Rayne Oct 25 '11 at 19:44
feedback

I can't talk about factor specifically, but I have done a lot with HP Calculators. The stack-based RPN language it comes with is quite sophisticated. A ton of software has been written for these calculators.

http://www.hpcalc.org/

link|improve this answer
feedback

I am considering using Factor for my next big non-work project. I was trying to choose between Factor, OCaml, D and Python. Normally, Python is my language of choice, but for this I'm looking for something different. I was considering D (I used C++ for a good many years and wanted to use D as a cleaner C++), but it doesn't seem to be what I'm looking for really.

That leaves OCaml and Factor and I'm having a tough time deciding. OCaml would be slightly easier for me to get to grips with, as my concatenative programming is a bit rusty and I also quite like the language a lot, but Factor keeps drawing me in too (and I'm a big fan of concatenative languages). Hrm indecision..

UPDATE: I have since decided to learn Factor properly and use it for my upcoming large personal project. In the meantime, I am working on some of the problems from Programming Challenges in Factor.

UPDATE 2: Factor didn't quite cut it.. Not because of the language, the language is great and I recommend everyone to take a look at it. The reason was Qt bindings. This was an important deal breaker for me. I would bind Qt myself and contribute it, but then I have two projects instead of one and I simply don't have the time. So, sorry Factor. I wrote the code in C++ instead, but I'm now considering either porting it to Clojure or writing future code in Clojure.

link|improve this answer
1  
Choose Clojure. :) – Rayne Mar 13 '09 at 5:05
I didn't like Clojure very much when I looked at it. Then again, I only glanced at it really, so I guess my evaluation was less than fair. – Dan Mar 13 '09 at 13:50
Interestingly enough, I took another look at Clojure since and... I love it! You were totally right, its a great language and theres a good chance I'll be suing it for my projects now. :-P – Dan Nov 3 '09 at 12:48
1  
Yeah, Clojure rocks. – Rayne Jan 15 '10 at 10:05
1  
Admittedly, you told me that all along.. maybe I should have listened ;-) But yes - yes it does! 1.1 is niiiice and Rich is doing a brilliant job. Also looking forward to Chouser's book. – Dan Jan 18 '10 at 10:07
show 1 more comment
feedback

I have been using Factor for a few months, and it is really an impressive language.

It feels like a blend of Forth (obviously), Smalltalk (image-based, highly reflective, "integrated" IDE), and LISP (code-as-data, syntax-level abstractions, REPL).. and to some extent, languages such as Python or Ruby, with a strong emphasis on pragmatism and openess (eg. "batteries included").

Moreover the performance seems to be important for the designers, as a lot of work have been spent on the optimizing compiler, much like the SBCL implementation of Common Lisp.

The project still suffers a bit from his youngness, with some frequent language changes, parts of the system underdocumented, and a relatively small community. But even at this stage, I think it feels mature enough to start some non trivial stuff.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.