AdventOfCode2020 VS component

Compare AdventOfCode2020 vs component and see what are their differences.

component

Managed lifecycle of stateful objects in Clojure (by stuartsierra)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
AdventOfCode2020 component
1 13
0 2,068
- 0.0%
0.0 0.0
over 2 years ago about 2 years ago
Smalltalk Clojure
The Unlicense MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

AdventOfCode2020

Posts with mentions or reviews of AdventOfCode2020. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-01-02.
  • On Repl-Driven Programming
    8 projects | news.ycombinator.com | 2 Jan 2021
    > At the end of the day, you quit your environment and shut down. How do you ensure your interactive work is not lost and the environment is still what you expect it to be when you start again the next day. How would you compile such a program?

    Modern Smalltalks have solved this problem. Smalltalk has the concept of Packages just like Java, and as you go along building your environment, even though you are modifying the Smalltalk image, you can export these packages to plain-text files, and put them in Git, just like any other language. The environment itself supports Git integration (called Iceberg in Pharo).

    > Also, if significant parts of the source code are written inside the REPL, wouldn't the lack of modern IDE features be a hassle? No syntax highlighting, no code completion, no code inspections etc. Or are there tools that offer those?

    The command-line REPLs that other languages have are NOT what you get in Smalltalk. I believe the author means the entire interactive environment, and the "style" of development is REPL, not the actual UI. The Smalltalk "IDE" is just as powerful as any other IDE, including code completion, automatic generation of certain getters/setters, renaming methods/classes, finding uses, jumping to declarations and even refactoring within methods. The difference between a normal IDE for Java is that this "IDE" is pervasively available, including in breakloops and the debugger. Since the system is live, there is no separate notion of debugging, the debugger is always there, and you can use all the editor IDE features when stopped in a debugger. You no longer have to deal with a crippled debugging environment way different from your authoring environment. It truly is mind-blowing!

    I highly recommend giving Pharo Smalltalk a spin (by following their MOOC or similar). This video is also worth a watch - https://www.youtube.com/watch/baxtyeFVn3w

    I did most of this year's Advent Of Code in Smalltalk and saved it in Git just like any other language. Someone else can then import it into their image. https://github.com/nikhilm/AdventOfCode2020.

    Note that the source code looks very verbose, but you never actually interact with the source like that. The source is just a serialization. Your actual environment only ever shows you UI elements and entire IDE windows describing your classes and individual methods.

    The only thing I miss in Pharo is that it doesn't have Vim keybindings :)

component

Posts with mentions or reviews of component. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-10.
  • A History of Clojure (2020) [pdf]
    22 projects | news.ycombinator.com | 10 Aug 2023
    * Lifecycle management: Mount, Integrant or Component (https://github.com/tolitius/mount https://github.com/weavejester/integrant and https://github.com/stuartsierra/component)
  • Generic functions, a newbie question
    2 projects | /r/Clojure | 8 Apr 2023
    When you start to have multiple stateful components (the database, the HTTP server, your Redis connection, a page cache, etc.), then you'll want to use a library like component that manages their (inter-)dependencies and provides a consistent notion of lifecycle.
  • What makes Clojure better than X for you?
    4 projects | /r/Clojure | 9 Jan 2023
  • Clojure needs a Rails, but not for the reason you think
    24 projects | news.ycombinator.com | 30 Jul 2022
  • [ANN] Reveal Pro 1.3.308 — sticker windows for system libraries (component, integrant, mount)
    3 projects | /r/Clojure | 14 Dec 2021
    Today I released a new version of Reveal Pro — dev.vlaaad/reveal-pro {:mvn/version "1.3.308"} — that adds sticker integration for system libraries such as mount, component and integrant!
  • Printf(“%s %s”, dependency, injection)
    3 projects | news.ycombinator.com | 19 Oct 2021
    I agree with the main sentiment from the article. Although I do think they are discussing Inversion of control more-so than dependency injection.

    One of my first languages was .net and I was never able to really understand DI in that context that well.

    Actually using javascript and ducktyping made me understand what it actually was.

    I remember a .net job interview where I had to write a micro-service and opted to construct the dependency graph in the main function initialising "all" the classes there. Instead of discussing the pro's and con's of that approach they berated me for not using a DI framework (No I did not land that job, but in hindsight it was the most expensive job interview I've ever had. The room was filled with 8 developers going over my code).

    The main thing the article glosses over is state. something people with a functional background hide from. But if you look at something like the httpclient in .net. I think it took the .net world like 10 years to start using the httpclient properly. Scope and lifetime of those kind of objects are important. managing connection pools, retry state, throttling or the incoming http request. DI does make that kind of thing easieR (I'm not saying it makes it better)

    Look at clojure's component(https://github.com/stuartsierra/component), I'm not a clojure expert by far. But it is kinda DI/IOC in a functional language.

    In closing we can agree that it is underused in the right places and overused in the wrong ones.

  • Forcing engineers to release by some arbitrary date results in shipping unfinished code - instead, ship when the code is ready and actually valuable
    4 projects | /r/programming | 16 Sep 2021
  • How to pass components across functions
    1 project | /r/Clojure | 19 May 2021
    https://github.com/stuartsierra/component#no-function-should-take-the-entire-system-as-an-argument
  • There are a *lot* of actor framework projects on Cargo.
    17 projects | /r/rust | 1 May 2021
    Yeah like I mentioned I'm not like super sold on the everything-should-be-an-actor paradigm, but I find value in DDD + a light implementation of Components (similar to stuartsierra/component).
  • Essential libraries?
    13 projects | /r/Clojure | 16 Jan 2021
    https://github.com/stuartsierra/component for managing components lifecycles in projects

What are some alternatives?

When comparing AdventOfCode2020 and component you can also consider the following projects:

Nvim-R - Vim plugin to work with R

integrant - Micro-framework for data-driven architecture

preplish - A Perl 5 REPL written in Bash

reitit - A fast data-driven routing library for Clojure/Script

cloture - Clojure in Common Lisp

mount - managing Clojure and ClojureScript app state since (reset)

ultra - A Leiningen plugin for a superior development environment

awesome-clojure - A curated list of awesome Clojure libraries and resources. Inspired by awesome-... stuff

Luxon - ⏱ A library for working with dates and times in JS

malli - High-performance data-driven data specification library for Clojure/Script.

aero - A small library for explicit, intentful configuration.

lucet - Lucet, the Sandboxing WebAssembly Compiler.