image-gallery VS tock

Compare image-gallery vs tock and see what are their differences.

image-gallery

A functional demo app for the Invisible Screen. Use this as a reference to build your own apps. (by Invisible-Computers)
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
image-gallery tock
9 32
19 4,990
- 1.4%
4.9 9.9
7 months ago 3 days ago
Python Rust
MIT License GNU General Public License v3.0 or later
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.

image-gallery

Posts with mentions or reviews of image-gallery. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-25.
  • Show HN: E-Ink Day Schedule
    8 projects | news.ycombinator.com | 25 Sep 2023
    https://www.invisible-computers.com/invisible-calendar/image...

    Two:

    https://github.com/Invisible-Computers/image-gallery/blob/ma...

    Both of these require rendering the content via an HTTP endpoint and both of these currently still require the content to be proxied through the device backend.

    > I can buy an ESP32 e-ink screen and run esphome or any of several other open source projects and put a piece of wood on the front of it, too.

    Yes, you can! And if you do this, you have absolutely no need to use my e-paper smart screen.

  • E-ink is so Retropunk
    11 projects | news.ycombinator.com | 26 Aug 2023
    I am hoping to add third party apps, that's why I have created the API for 3rd party apps:

    https://github.com/Invisible-Computers/image-gallery/blob/ma...

    But right now, I understand that building an app for my platform is

    a) more hassle than just pointing to a URL

    b) limited upside, because the audience that you can charge for a subscription isn't very big yet.

    However, I think that a good app could generate its own audience (aka drive ppl to buy the displays) and then make money by charging them a small monthly subscription fee.

  • I wasted $855.77 on Google Ads and got my ads banned 5 times
    1 project | news.ycombinator.com | 10 Jul 2023
    I'll ship within Europe as soon as I have bootstrapped the 7000 Euro necessary for CE certification.

    In terms of openness, there is this:

    https://www.invisible-computers.com/invisible-calendar/image...

    and this:

    https://github.com/Invisible-Computers/image-gallery/blob/ma...

    I also want to make the esp32 controller itself more hackable in future, but I don't want to promise anything because that's quite a lot of work for me.

  • Ask HN: Any Hardware Startups Here?
    8 projects | news.ycombinator.com | 5 Jul 2023
    Here is the API description:

    https://github.com/Invisible-Computers/image-gallery/blob/ma...

    And here is the sample app:

    https://github.com/Invisible-Computers/image-gallery

    Admittedly, I am not the greatest technical writer, but I compensate by being pretty responsive. :)

  • Show HN: An open app development platform for eInk smart screen
    1 project | news.ycombinator.com | 2 Jul 2023
  • A WiFi color eInk picture frame
    6 projects | news.ycombinator.com | 24 Apr 2023
    This display offers a simple API to build applications for it:

    https://shop.invisible-computers.com/products/invisible-cale...

    https://github.com/Invisible-Computers/image-gallery/blob/ma...

    The API doesn't require any special knowledge about e-paper displays, it just expects an image URL in the correct resolution and will then render it to the display.

    You can buy the display off the shelf, and if you are interested in building an app, contact me at [email protected] for a developer account :)

    Feel free to go to town on it :)

tock

Posts with mentions or reviews of tock. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-11.
  • OxidOS Automotive
    1 project | news.ycombinator.com | 17 Mar 2024
    Hi! This is Daniel from OxidOS Automotive (stating this for disclaimer purposes).

    Yes, our OS is based on TockOS, and our CEO (Alex Radovici) is #7 in the contributors list (https://github.com/tock/tock/graphs/contributors), with other colleagues contributing in the past years.

  • What is the best library to write a SCADA-like application for web?
    4 projects | /r/rust | 11 Dec 2023
  • Safety vs. Performance. A case study of C, C++ and Rust sort implementations
    11 projects | news.ycombinator.com | 5 Oct 2023
    I'm definitely not the best person to answer this, but honestly it's not bad. Here's an example of a moderately complex peripheral, the cortex-m MPU, and how one rust OS handles it:

    https://github.com/tock/tock/blob/3a0527d586702b8ae8cb242391...

    Reads and writes turn into volatile reads, so everything works out under the hood. You get the benefits of everything having good names, declared sizes, and proper typing on your register accesses. You can extend that to bit accesses as well.

    Rust still has a few areas it isn't competitive in, like your hyper limited or obscure chips (e.g. 8051s, XAP), mature tooling around formal methods, and a certification story for safety critical code. People are working on these latter two issues (e.g. ferrocene) and supposedly very close to public delivery, but you know how slow the industry is to adopt new things even then.

  • Ask HN: Any Hardware Startups Here?
    8 projects | news.ycombinator.com | 5 Jul 2023
  • Real-Time Operating Systems 101: Basics for Efficient Computing
    1 project | /r/embedded | 25 May 2023
    There's Tock (https://www.tockos.org/), which is written in Rust (with sprinkles of assembly).
  • Unwinding the Stack the Hard Way
    3 projects | news.ycombinator.com | 16 Apr 2023
    Yeah, and I like I mentioned in the earlier comment, omitting the frame pointer reduces code size by 10% on RISC-V targets, which is huge when dealing with embedded flash: https://github.com/tock/tock/pull/1660
  • Where are the C Alternatives?
    3 projects | /r/ProgrammingLanguages | 2 Apr 2023
  • Embedded real time OS
    2 projects | /r/rust | 1 Apr 2023
    Tock is an excellent embedded OS written in Rust and has some good industrial support. I think Tock gets a lot of stuff right and I highly recommend some of the talks the developers gave on it.
  • Fedora now has frame pointers
    2 projects | news.ycombinator.com | 4 Feb 2023
    Unfortunately, it increases the code size by 10%. I was looking into this just last week, and can confirm that it's still a problem on the latest version of Rust nightly: https://github.com/tock/tock/pull/1660

    I wish we could have frame pointers, because they would make working in embedded land so much easier and more reliable, but a 10% increase in code size just isn't worth it.

  • Rust OS
    2 projects | /r/rust | 16 Dec 2022
    TockOS was the first rust RTOS I found. Coincidentally, it has had support for the esp32c3 for over a year now.

What are some alternatives?

When comparing image-gallery and tock you can also consider the following projects:

osdr-q10 - Orion anchor design files, firmware, and FPGA code.

awesome-embedded-rust - Curated list of resources for Embedded and Low-level development in the Rust programming language

epdiy - EPDiy is a driver board for affordable e-Paper (or E-ink) displays.

rust-raspberrypi-OS-tutorials - :books: Learn to write an embedded OS in Rust :crab:

pibox-os - 📦💻 The Official PiBox Operating System

hubris - A lightweight, memory-protected, message-passing kernel for deeply embedded systems.

tokay-lite-pcb - Tokay AI Camera - ESP32 camera development board

redox - Mirror of https://gitlab.redox-os.org/redox-os/redox

blossom-public - Public Repo for the Cornell Blossom Robot

rtic - Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers

epd-waveshare - Drivers for various EPDs from Waveshare

smoltcp - a smol tcp/ip stack