Software Alternatives & Reviews
Table of contents
  1. Videos
  2. Social Mentions
  3. Comments

Factor

Factor programming language subtitle

Factor Reviews and details

Screenshots and images

  • Factor Landing page
    Landing page //
    2021-10-04

Badges

Promote Factor. You can add any of these badges on your website.
SaaSHub badge
Show embed code

Videos

Factor_ Review | HONEST Pros & Cons of this low carb meal delivery service

Factor_ | A Real Review from a Real Customer | 2021

Factor 75 Review: How Good Are These Healthy Pre-Made Meals?

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Factor and what they use it for.
  • My history with Forth, and stack machines
    My impression so far is (in general), Forth are practically limited to doing embedded/microcontroller development. For us, web/mobile/desktop app devs, beside: - 8th (https://8th-dev.com) - Factor (https://factorcode.org) Any suggestion which implementation we should look for? - Source: Hacker News / 9 months ago
  • Pharo 11, the pure object-oriented language and environment is released!
    Factor is also very much worth a look. Forth-style syntax, but with many of the ideas from CL and Smalltalk as well. In fact as a CL fan, I was very impressed by it. It's also quite "batteries included" a la Python. Source: 12 months ago
  • The toki pona of programming.
    Otherwise, and more seriously, I'm not completely sure variables are needed. Factor is quite usable (it's my favorite go-to language if I quickly need to script something), and mostly doesn't have them. Source: about 1 year ago
  • What the hell is Forth? (2019)
    Is there any "battery-included" ANS Forth (more or less like Python/Go) which provides access to concurrency, networking, database, GUI, etc? Not an embedded device programmer, but mostly deals with frontend apps, and occasionally backend, so those are very relevant to me. Or perhaps use "non-traditional" Forths like 8th (https://8th-dev.com) or Factor (https://factorcode.org)? - Source: Hacker News / over 1 year ago
  • A Dynamic Forth Compiler for WebAssembly
    There's a note on the page from 2022-08-19, that a lot has been added to it. It also links to the github page[1] for the up-to-date changes. I am a Lisp, April, APL/J/BQE, and Forth[2] aficionado. I did some file munging programs in Factor back in 2012 at my job to sort through theater attendance logs in Word to compile statistics. [1] https://github.com/remko/waforth. - Source: Hacker News / over 1 year ago
  • -🎄- 2022 Day 2 Solutions -🎄-
    Here's my day two solution using Factor. Source: over 1 year ago
  • Forth: A New Way to Program a Mini Computer (1974)
    I was introduced to Froth via [Factor](https://factorcode.org) (which I discovered as a jEdit user as both have the same initial author). Factor is a garbage collected higher order Forth that makes it more fun to program in (example: 'quotations', basically pushing lambdas on the stack). If I am doing coding puzzles I do it in Factor. Some might argue that it's not a real Forth because it's not as close to the... - Source: Hacker News / over 1 year ago
  • What are your thoughts on the Factor programming language?
    A month ago, I found a cool stack-orientated programming language called Factor. From first glance, it seems that arguments come first. Here is an example:. Source: over 1 year ago
  • A language without operators
    Lisp and Forth and all of their derivatives like Clojure and Factor:. Source: over 1 year ago
  • Share a niche programming language you have tinkered with before
    I guess Factor counts as niche. It's a concatenative language with a bunch of neat features, like (some) statick checking of declared stack effects, a very good REPL + documentation UI (the docs themselves can be a bit sparse unfortunately) and an OO system. Source: over 1 year ago
  • Concatenation Is Composition
    Shout out to https://factorcode.org/ and nod to Forth. - Source: Hacker News / almost 2 years ago
  • Byte Magazine: The FORTH programming language
    My dad, who was a minister by day and Forth hacker by night, got me into programming when I was a teenager, and Forth and x86 assembly were my first languages. I wrote a small self-hosting Forth compiler for 8086 DOS (https://github.com/benhoyt/third), a tiny 32-bit Forth operating system for the 386 (I guess you'd call it "bare metal" today). Incidentally, my brother used my Third compiler at his work for a few... - Source: Hacker News / almost 2 years ago
  • Byte Magazine: The FORTH programming language
    If you're intrigued by FORTH, I would also recommend checking out Factor, another concatenative language https://factorcode.org. - Source: Hacker News / almost 2 years ago
  • SuperForth v1.1
    Forth is a very unusual language with a very distinct “style,” to the degree that even glancing at the syntax of your language will already make people wonder if it’s actually connected to Forth. For example, there are languages which are strongly influenced by Forth, like Factor and Joy). All three of those are stack-oriented languages (unlike C++ or Java, for example). They are also concatenative (again, unlike... Source: almost 2 years ago
  • The Cod programming language
    Concatenative languages are definitely underappreciated, but boy do they take a big mental shift if you're not used to them. I've played around with Factor and loved it, although the, uh… sparse documentation was a bit challenging (not sure if it's gotten better nowadays). Source: almost 2 years ago
  • Jonesforth – A sometimes minimal FORTH compiler and tutorial (2007)
    I must mention Factor, which is a modern concatenative, stack-based programming language. It turns out Forth was just the first concatenative language discovered/constructed. https://factorcode.org/. - Source: Hacker News / almost 2 years ago
  • I prefer languages without “puzzles”, like C. Clear, unambiguous syntax and semantics that trivially compile to machine code in a straightforward 1:1 mapping
    : comment ( -- uj ) [ Probably sarcasm/trolling - AFAICT, that's the guy who made Factor before getting poached by Apple for Swift team ] with-unjerk ; inline. Source: about 2 years ago
  • I've always wanted to know how compilers work, I started writing one a few weeks back. Recently, I managed to rewrite the compiler in the new language itself!
    Factor is another more modern take on concatenative languages that is fairly clearly somewhat lisp-influenced. https://factorcode.org/. Source: about 2 years ago
  • 5 not well known Programming Language that are worth exploring
    ! Copyright (C) 2018 Blag. ! See http://factorcode.org/license.txt for BSD license. USING: math prettyprint kernel io math.parser command-line namespaces sequences ; IN: fibo Number ; : list_fibo ( x -- ) 1 0 pick 1 + [ dup . Over over + rot drop ] times 3drop ; PRIVATE> : fibo ( -- ) ask-number read-number list_fibo ; : fibo-run ( -- ) fibo ; MAIN: fibo-run. - Source: dev.to / about 2 years ago
  • 100 Languages Speedrun: Episode 71: Factor
    One of such languages has been Factor. Let's see how it improves upon Forth. - Source: dev.to / about 2 years ago
  • Ask HN: Who Wants to Collaborate?
    These projects seem really cool! A few links and historical references that might be of interest: > On the hardware side I want to use small and simple systems If you'd like to build a fully understandable computer, you might be interested in concatenative languages like Forth, Factor, and colorForth. These use a much simpler and more understandable, typically stack-based computational model that run on... - Source: Hacker News / over 2 years ago

Do you know an article comparing Factor to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Generic Factor discussion

Log in or Post with

This is an informative page about Factor. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.