Smithereen VS Octo

Compare Smithereen vs Octo and see what are their differences.

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
Smithereen Octo
7 8
346 651
- -
9.5 5.9
3 days ago 6 months ago
Java JavaScript
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.

Smithereen

Posts with mentions or reviews of Smithereen. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-20.
  • Why is no one making a new version of old Facebook?
    4 projects | news.ycombinator.com | 20 Feb 2024
    They do, or rather not old Facebook, but old VK: https://github.com/grishka/Smithereen

    As a bonus it's an ActivityPub enabled application, so any specific instance of it requires less work to get the network effect going. :)

  • Ask HN: Show me your half baked project
    163 projects | news.ycombinator.com | 12 Oct 2023
    https://github.com/grishka/Smithereen

    A Facebook-style ActivityPub server. Has wall posts, groups, and events.

    Not yet "ready" — 1.0 would need much better moderation tools, photo albums (with tagging), discussion boards (in groups), and a client API. Direct messages are a work in progress right now.

    I myself use it daily for my participation in the fediverse.

  • VSCode config to disable annoyances – telemetry, notifications, welcome pages
    7 projects | news.ycombinator.com | 14 May 2023
    Unfortunately I don't think it fits any of the projects I work on (and I don't use VSCode to begin with, never had it installed, bit I do see an IntelliJ plugin as well).

    I have one project that's a server application (https://github.com/grishka/Smithereen), but since it uses lots of custom stuff on top of the Spark micro-framework, your plugin would probably not work on it. I imagine it does expect projects to be structured idiomatically for the framework they use, at least to some degree. Spark also doesn't know anything about databases, so that is all custom as well. Oh and I also hacked it a bit with reflection to allow streaming responses.

  • Meta selling new “Meta Verified” blue badge for $12-15/month
    1 project | news.ycombinator.com | 19 Feb 2023
    I'm building a fediverse project that aims to fill this exact niche. It's basically a recreation of an early-ish version of VKontakte (Russian Facebook) but federated. It's not really ready yet, and there are lots of important features missing, but I do use it daily for my primary fediverse account.

    I, too, am sick of all the existing social media companies trying their damnest to cater to the entertainment use case no one ever asked for.

    https://github.com/grishka/Smithereen

  • Misskey: An Interplanetary Microblogging Platform
    2 projects | news.ycombinator.com | 15 Jan 2023
    I'm building an ActivityPub thing of my own: https://github.com/grishka/Smithereen

    It's not quite ready for mainstream use just yet, but I'm getting there. The next update will improve moderation tools by a lot. One after that will, at last, add private messages.

  • Limewire the golden age of the 90er
    2 projects | /r/Piracy | 7 Sep 2021
    Well, for one, fediverse is a thing, and I'm doing my part
  • Ask HN: Who is working on fully decentralized social networking?
    1 project | news.ycombinator.com | 11 Jan 2021
    I know of Smithereen[1] that is an attempt at a full fledged social network similar to VK on top of the ActivityPub vocabulary.

    [1] https://github.com/grishka/Smithereen

Octo

Posts with mentions or reviews of Octo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-12.
  • Ask HN: Show me your half baked project
    163 projects | news.ycombinator.com | 12 Oct 2023
    1. Octo, a CHIP-8 assembler: https://github.com/JohnEarnest/Octo

    P.S. Octojam 10 runs until 12:00 AM PST on November 1st! See the following if you're interested! https://itch.io/jam/octojam-10

  • Is there a pointer equivalent of declaring an array?
    2 projects | /r/C_Programming | 18 Feb 2023
    In addition to what other posters suggested, it could be a good idea to try assembly languages as a way to manually work with locations in memory. Something like Octo could be fun if you want to try memory manipulation without worrying about real-world complexities like syscalls and memory alignment. If you want something extra challenging, you could always try x86 / amd64 assembly. Some C compilers even support inline assembly if you want to mix C and assembly.
  • How do I make a "game" for Chip8?
    2 projects | /r/EmuDev | 2 Sep 2022
    Yes, Octo is the most used tool to create CHIP-8 programs today. John has a little introduction text for writing in its dialect here: https://github.com/JohnEarnest/Octo/blob/gh-pages/docs/BeginnersGuide.md
  • Feedback on my very own C++ CHIP8 Interpreter/Emulator
    2 projects | /r/EmuDev | 19 Sep 2021
    I also want to thank you all for all the advice you gave to me and others about CHIP8. It was very helpful to read some posts here ! I also used John Earnest's OCTO a lot for debugging.
  • Octo
    1 project | news.ycombinator.com | 23 Jun 2021
  • Is chip 8 emulator flicker normal?
    2 projects | /r/EmuDev | 10 May 2021
    The octo FAQ touches on this "pre-xoring" technique, and theres a worked example of doing this data preparation in macros. I've also written varioustools that can handle the xoring for you.
  • Executable PNGs
    2 projects | news.ycombinator.com | 26 Dec 2020
    In my own system, Octo[0], I encode programs and their metadata in a similar steganographic fashion in GIF files. As others have noted here, both GIF and PNG offer extension mechanisms and ways to embed "comments", but popular image-sharing sites universally re-encode images and discard this data. The advantage of GIF over PNG (for my purposes) is that I store an arbitrary payload in a fixed-looking image by creating additional frames of animation.

    In the past, I've also used a different technique- if you simply concatenate a PNG onto a JAR (which is really just a ZIP archive) you end up with a file that acts like a PNG unless you change the extension to JAR, in which case it acts like a Java executable. This works because the PNG header is at the beginning of the file, while the ZIP header is at the end. Nowadays, though, desktop Java is pretty much dead, so it's a less exciting party trick.

    [0] https://github.com/JohnEarnest/Octo

What are some alternatives?

When comparing Smithereen and Octo you can also consider the following projects:

GuideToMastodon - An increasingly less-brief guide to Mastodon

vis-chip-8 - Visual Chip-8 Emulator

react-gamin - A rockin' React library for makin' games!

chip8-test-rom - ROM for testing chip8 emulator

shellrunner - Write safe shell scripts in Python.

chip8-test-suite - A collection of ROM images with tests that will aid you in developing your own CHIP-8, SUPER-CHIP or XO-CHIP interpreter (or "emulator")

seleneCMSBundle - Add CMS functionality to your Symfony Apps

wasm4 - Build retro games using WebAssembly for a fantasy console.

nature - 🍀 The Nature Programming Language, may you be able to experience the joy of programming.

pixload - Image Payload Creating/Injecting tools

knob - Knowledge graph builder

chip8Archive - A repository of community-submitted Chip8 programs and their metadata