hattery VS endbasic

Compare hattery vs endbasic and see what are their differences.

hattery

Java library for making HTTP requests with a fluent, immutable API (by stickfigure)

endbasic

BASIC environment with a REPL, a web interface, a graphical console, and RPi support written in Rust (by jmmv)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
hattery endbasic
3 24
17 298
- 1.0%
6.8 8.4
4 months ago 7 days ago
Java Rust
MIT License Apache License 2.0
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.

hattery

Posts with mentions or reviews of hattery. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-17.
  • Ask HN: What are some of the most elegant codebases in your favorite language?
    37 projects | news.ycombinator.com | 17 Jun 2023
    While I think there's a lot to love about Java, I think the standard library itself is not an especially great role model. Most of it was written a long time ago and has a fairly antiquated style - lots of mutable state, nullability, and checked exceptions. Not that the library isn't an incredible asset - it's luxuriously rich compared to working in Node.js - but if it were written from scratch today, I suspect it would look fairly different. Eg, the collection classes would use Optional and have separate read/write interfaces.

    For an example of "modern Java" I would point at something like this (which I wrote, sorry about the hubris):

    https://github.com/stickfigure/hattery

  • Ask HN: What is a modern Java environment?
    22 projects | news.ycombinator.com | 29 Mar 2022
    I have been thinking of writing up a series of articles on this. Without going into too much detail:

    * IDEA

    * Deploy on Google App Engine, Digital Ocean App Platform, Heroku, Elastic Beanstalk, etc - get out of the ops business entirely.

    * Guice as the backbone, no Spring/Boot. I wrote a tiny dropwiard-like "framework" to make this easier: https://github.com/gwizard/gwizard but there's a laughable amount of code here, you could build it all from scratch with minimal effort. This is about as lightweight as "frameworks" get because Guice does the heavy lifting.

    * JAX-RS (Resteasy) for the web API. IMO this is the best part of Java web development. HTTP endpoints are simple synchronous Java methods (with a few annotations) and you can test them like simple Java methods.

    * Lombok. Use @Value heavily. Cuts most of the boilerplate out of Java.

    * Junit5 + AssertJ. (Or Google Truth, which is almost identical to AssertJ).

    * Use functional patterns. Try to make all variables and fields final. Use collections streams heavily. Consider vavr.io (I'll admit I haven't it in anger yet, but I would in a new codebase).

    * StreamEx. Adds a ton of useful stream behavior; I don't even use basic streams anymore.

    * Guava. There's just a lot of useful stuff here.

    * For the database, it really depends on what you're building. Most generic business apps, postgres/hibernate/guice-persist/flyway. Yeah, folks complain about hibernate a lot but it's a decent way to map to objects. Use SQL/native queries, don't bother with JPQL, criteria queries, etc.

    * Hattery for making http requests (https://github.com/stickfigure/hattery). This is another one of mine. I make zillions of http requests, functional/immutable ergonomics really matter to me.

    * Github actions for CI.

    * Maven for the build. Yes, it's terrible, except for every other build system is worse. Gradle seems like it should be better but isn't. I'd really love some innovation here. Sigh.

  • Ask HN: What is your “I don't care if this succeeds” project?
    56 projects | news.ycombinator.com | 10 Feb 2022
    I can't stand most http libraries (full of mutable state!) and I spend a lot of time making http calls. So I built a functional/immutable http request library which has been dramatically improving my personal quality of life for about 7 years now. No idea if anyone else uses it, but it doesn't really matter.

    Java version: https://github.com/stickfigure/hattery

    Typescript version: https://github.com/stickfigure/hatteryjs

endbasic

Posts with mentions or reviews of endbasic. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-10.
  • Write Your Own Terminal
    9 projects | news.ycombinator.com | 10 Nov 2023
    I can confirm that writing a terminal is fun, for the reasons mentioned in the article: it’s easy to get “self-hosting”, but then the possibilities are endless :)

    In my case, this was about creating the terminal for EndBASIC (https://www.endbasic.dev/). I wanted to mix text and graphics in the same console, so I had to ditch Xterm.js and create my own thing. It was really exciting to see graphics rendering mix with text “just fine” when I was able to render the first line.

  • Ask HN: Whats the modern day equivalent of 80s computer for kids to explore?
    6 projects | news.ycombinator.com | 1 Oct 2023
    I tried to set up a Raspberry Pi and configured it to boot into a simple window manager with DosBox full screen by default. I taught my kids to launch games within that and they learned the very basics… but it didn’t stick: they haven’t really gained any interest in how to do other stuff in the shell.

    Anyway: check (my own) https://www.endbasic.dev/ which I’ve written precisely for the situation you describe :) You would actually have to /write/ the games first though!

  • FLaNK Stack for 25 September 2023
    17 projects | dev.to | 25 Sep 2023
  • EndBASIC
    3 projects | news.ycombinator.com | 13 Sep 2023
    Slightly buried: Apache 2.0, written in Rust, https://github.com/endbasic/endbasic/

    Definitely an interesting attempt to cut through layers of abstraction and make something that lets people make the computer do useful/interesting things. No idea how well they realize that vision, of course, but good idea.

    1 project | /r/patient_hackernews | 7 Jun 2022
    1 project | /r/hackernews | 7 Jun 2022
  • Does this exist already? A converter from MS BASIC to Rust
    2 projects | /r/rust | 14 Jun 2023
    Or you could use https://www.endbasic.dev/
  • TwinBASIC is a modern BASIC compiler
    3 projects | news.ycombinator.com | 10 May 2023
    Somebody else brought it up in a separate comment, but because you specifically ask about the Raspberry, I'll mention EndBASIC (https://www.endbasic.dev/) here again :)

    Supporting this platform has been a primary goal of mine, and in fact, one of the features (GPIO) only works on the Raspberry Pi today :) But there is a long road ahead. My vision is to create a minimal Linux image that boots straight into EndBASIC, and extend EndBASIC to give you more control of the Pi's hardware. The idea is to truly mimic the old C64 experience, but leveraging the power of modern hardware / infrastructure.

  • Learning BASIC Like It's 1983 (2018)
    2 projects | news.ycombinator.com | 18 Mar 2023
    Agree with the author’s thesis of how the folks that “grew with computers” have an advantage over those approaching them now, in terms of understanding the inner workings. I’m not sure that this matters much in terms of solving actual problems though, which is probably a good thing.

    But I somehow find it a little bit sad that this is the case, so I’ll plug my own https://www.endbasic.dev/ because it’s very fitting in this context :) I’ve been building it precisely as a way to understand everything that’s going on (although it’s still far from fulfilling that promise).

    Also, buried in the article is a reference to the https://10print.org/ book. I recently came across it at HPB and it has been a pretty entertaining read. Couldn’t believe there was so much to write about such a simple little program!

  • EndBASIC: "BASIC interpreter + DOS environment, reimagined."
    1 project | /r/altprog | 30 Dec 2022

What are some alternatives?

When comparing hattery and endbasic you can also consider the following projects:

prime-mvc - Prime MVC is a high performance Model View Controller framework built in Java.

ClassicUO - ClassicUO - an open source implementation of the Ultima Online Classic Client.

ripgrep - ripgrep recursively searches directories for a regex pattern while respecting your gitignore

mp4 - MP4 library, CLI tool, server

Arthur - How to build your own AI art installation from scratch [Moved to: https://github.com/maxvfischer/DIY-ai-art]

fruit-economy

reactor-core - Non-Blocking Reactive Foundation for the JVM

soli - Solidity REPL

gwizard - A modular toolkit for building web services with Guice, inspired by DropWizard

cemu - Cheap EMUlator: lightweight multi-architecture assembly playground

Async Http Client - Asynchronous Http and WebSocket Client library for Java

objstor - object store