Show HN Today: Top Developer Projects Showcase for 2024-01-23
SagaSu777 2024-12-25

Explore the hottest developer projects on Show HN for 2024-01-23. Dive into innovative tech, AI applications, and exciting new inventions!

Summary of Today's Content

Today's Product Highlights

  • Product Name: Retriever
  • Highlight: A secure, serverless solution for sharing sensitive information using Public-key cryptography, eliminating the need for intermediary servers.

Quick Summary

  • Most Hot Category: Security & Privacy Tools
  • Top Trending Keywords: Security, Open Source, Developer Tools
  • Most Popular Product: Retriever (193 points, 99 comments)

Technology Trends

  • Serverless Architecture
  • Public-key Cryptography
  • React Server Components
  • WebRTC
  • AI/ML Integration
  • Vector Databases
  • Local-first Applications

Project Distribution

  • Security Tools: 25%
  • Developer Tools: 20%
  • AI Applications: 15%
  • Web Applications: 15%
  • Educational Tools: 10%
  • Gaming: 10%
  • Others: 5%

Trend Insights

  1. Strong emphasis on privacy-focused and secure communication tools
  2. Growing adoption of local-first and serverless architectures
  3. Increased integration of AI capabilities in traditional tools
  4. Rising interest in educational technology and learning platforms
  5. Continued focus on developer productivity tools
  6. Emergence of specialized tools for specific industries
  7. Trend toward open-source solutions for enterprise problems

Top 1. Retriever is a secure tool designed for safely sharing secrets and sensitive information over the internet, ensuring your data remains private and protected. (Likes: 193, Comments: 99)

Top 2. A self-hosted, user-friendly status page solution that enhances transparency and reliability, complete with essential features and customizable options to suit any project. Perfect for developers seeking to maintain clear communication with users about service availability. (Likes: 187, Comments: 51)

Top 3. Explore Atlas – a powerful GIS platform that enables users to create and interact with dynamic maps directly in their browser, revolutionizing geospatial analysis and visualization. (Likes: 161, Comments: 48)

Top 4. Discover the ultimate Paldeck website featuring all Paldeck Pals from Palworld! Connect with fellow fans and explore a vibrant community dedicated to your favorite creatures. Dive in and enhance your Palworld experience today! (Likes: 30, Comments: 54)

Top 5. Introducing Codemodder: An innovative codemod library designed for seamless code transformation and refactoring in Java and Python. Simplify your development process and enhance code maintainability with this powerful tool! (Likes: 37, Comments: 8)

Top 6. Blocks by Cosmic offers a collection of versatile React components tailored for headless CMS, enabling developers to effortlessly create customizable and dynamic web applications. (Likes: 21, Comments: 5)

Top 7. A collaborative video chat app designed for classmates to work on homework and study together effectively. (Likes: 5, Comments: 19)

Top 8. Discover Nomad Hypertext, a revolutionary local-first writing app that leverages semantic search for intuitive content organization and accessibility. Perfect for writers seeking a seamless experience, it enhances productivity while ensuring your work remains at your fingertips, even offline. (Likes: 12, Comments: 7)

Top 9. Create interactive quizzes directly from YouTube videos and seamlessly export them as Google Forms for engaging and effective learning experiences. (Likes: 8, Comments: 9)

Top 10. Celebrate four decades of innovation with Mac40th.com, a comprehensive tribute to the Macintosh legacy featuring historical insights, iconic milestones, and engaging community stories from passionate users and enthusiasts. Explore the evolution of the Mac and its impact on technology and creativity. Join the celebration! (Likes: 8, Comments: 3)

1. Show HN: Retriever – Securely share secrets over the internet

Show HN: Retriever – Securely share secrets over the internet - Project Screenshot

URL: https://retriever.corgea.io/

Author: asadeddin

Description: Retriever (https://retriever.corgea.io/), an open-source research project to help users receive secrets and sensitive information without needing a server in the middle. It works by using Public-key cryptography to coordinate the message sharing between the two devices.

Read more on why we built it here: https://retriever.corgea.io/why.html

Popularity: 193 points | 99 comments


2. Show HN: Built a self hosted clean status page and batteries

Show HN: Built a self hosted clean status page and batteries - Project Screenshot

URL: https://github.com/rajnandan1/kener

Author: purple_wow

Description: Status pages have been the way they have seen the mid 2010s. There are few new ones but they are paid. So I decided to build this using svelte + sveltekit. It has all the necessary features. Few are yet to be built. Do check it out

Popularity: 187 points | 51 comments


3. Show HN: Atlas – GIS and interactive maps in the browser

Show HN: Atlas – GIS and interactive maps in the browser - Project Screenshot

URL: https://atlas.co

Author: vloewe

Description:

Popularity: 161 points | 48 comments


4. Show HN: I made a Paldeck website, all Paldeck Pals in Palworld

Show HN: I made a Paldeck website, all Paldeck Pals in Palworld - Project Screenshot

URL: https://www.paldeck.co/

Author: kianworkk

Description: Under construction...

Popularity: 30 points | 54 comments


5. Show HN: Codemodder – A new codemod library for Java and Python

Show HN: Codemodder – A new codemod library for Java and Python - Project Screenshot

URL: https://codemodder.io/

Author: nahsra

Description: Hi HN, I’m here to show you a new codemod library. In case you’re not familiar with the term "codemod", here’s how it was originally defined AFAICT:

> Codemod is a tool/library to assist you with large-scale codebase refactors

Codemods are awesome, but I felt they were far from their potential, and so I’m very proud to show you all an early version of a codemod library we’ve built called Codemodder (https://codemodder.io) that we think moves the "field" forward. Codemodder supports both Python and Java (https://github.com/pixee/codemodder-python and https://github.com/pixee/codemodder-java). The license is AGPL, please don’t kill me.

Primarily, what makes Codemodder different is our design philosophy. Instead of trying to write a new library for both finding code and changing code, which is what traditional codemod libraries do, we aim to provide an easy-to-use orchestration library that helps connect idiomatic tools for querying source code and idiomatic tools for mutating source code.

So, if you love your current linter, Semgrep, Sonar, or PMD, CodeQL or whatever for querying source code – use them! If you love JavaParser or libCST for changing source code – use them! We’ll provide you with all the glue and make building, testing, packaging and orchestrating them easy.

Here are the problems with existing codemod libraries as they exist today, and how Codemodder solves them.

1. They’re not expressive enough. They tend to offer barebones APIs for querying code. There’s simply no way for these libraries to compete with purpose-built static analysis tools for querying code, so we should use them instead.

2. They produce changes without any context. Understanding why a code change is made is important. If the change was obvious to the developer receiving the code change, they probably wouldn’t have made the mistake in the first place! Storytelling is everything, and so we guide you towards making changes that are more likely to be merged.

3. They don’t handle injecting dependencies well. I have to say we’re not great at this yet either, but we have some of the basics and will invest more.

4. Most apps involve multiple languages, but all of today’s codemod libraries are for one language, so they are hard to orchestrate for a single project. We’ve put a lot of work into making sure these libraries are aligned with open source API contracts and formats (https://github.com/pixee/codemodder-specs) so they can be orchestrated similarly by downstream automation.

The idea is "don’t write another PR comment saying the same thing, write a codemod to just make the change automatically for you every time". We hope you like it, and are excited to get any feedback you might have!

Popularity: 37 points | 8 comments


6. Show HN: Blocks by Cosmic – React components for headless CMS

URL: #

Author: tonyspiro

Description: Hi HN, today we are releasing Blocks (https://blocks.cosmicjs.com/), our new data infused components for building Cosmic (https://www.cosmicjs.com/) (W19) powered websites and apps.

Cosmic is a headless content management system (CMS). We provide a dashboard to create content and API tools to deliver content to any website or app.

Blocks are pre-built website components that you can drop into your project. Choose from landing pages, blogs, image galleries, product pages, and more. With Blocks you can build these features with Cosmic faster than ever.

It's our goal to empower your team to create the best content powered websites and apps. Blocks can be considered the missing "head" to connect with the Cosmic headless CMS. It is our opinionated component frontend for building highly scalable and performant web applications built with tools we think offer a development experience and performance advantage (React Server Components, Next.js, and Tailwind CSS).

React Server Components (RSCs) have unlocked a new paradigm in building data-driven web applications. By safely encapsulating data-fetching inside components, we can use RSCs as building blocks to enable faster and more scalable application development. We are excited for the potential of RSCs and Blocks. This is just the beginning.

To get started, go to the Blocks website (https://blocks.cosmicjs.com/) and follow the steps for installation. View the Blocks demo (Agency Template) (https://cosmic-agency-template.vercel.app/) to see all of the Blocks in action.

Blocks are built to give developers a head start with features that are:

- Performance optimized

  • Draft preview ready
  • Mobile responsive
  • Localization ready
  • Dark mode ready
  • Customizable
  • Accessible
  • Type safe

    Blocks not only provide a fast development experience, they have been optimized for speed and performance by default, so you can ship production-ready faster. Check out the Blocks demo (Agency Template) (https://cosmic-agency-template.vercel.app/) to see how building with Blocks can give you high scores across the board for performance, SEO, and accessibility.

    Blocks are open source (https://github.com/cosmicjs/blocks) and built with React Server Components, Next.js, TypeScript, Tailwind CSS, and powered by the Cosmic content management system. You can install Blocks into any new or existing Next.js (v13+) codebase using the Blocks CLI (https://www.npmjs.com/package/@cosmicjs/blocks).

    Check it out on the Blocks website (https://blocks.cosmicjs.com/) and let us know what you think in the comments.

    Tony

Popularity: 21 points | 5 comments


7. Show HN: I built a video chat app so classmates could do HW and study together

Show HN: I built a video chat app so classmates could do HW and study together - Project Screenshot

URL: https://www.meetingglass.com

Author: cantouch

Description:

Popularity: 5 points | 19 comments


Show HN: Nomad Hypertext, a local first writing app built around semantic search - Project Screenshot

URL: https://github.com/nichwch/nomad-hypertext

Author: nichwch

Description: Nomad Hypertext is a writing app built around semantic search. It lets you see connections between your ideas in real time as your write - click on the # symbol next to a paragraph, and similar ideas you've written about in the past will show in the sidebar. This helps you spot both recurring themes and unexpected links between seemingly different ideas.

It does this by generating embeddings using a local model (supabase's gte-small model) and finds similar posts with @OramaSearch, a local vector DB.

Popularity: 12 points | 7 comments


9. Show HN: Show Create quiz from a YouTube video and export as Google form

Show HN: Show Create quiz from a YouTube video and export as Google form - Project Screenshot

URL: https://www.vidtoquiz.com

Author: pranjal_soni

Description:

Popularity: 8 points | 9 comments


10. Show HN: Mac40th.com: 40 Years of Macintosh

Show HN: Mac40th.com: 40 Years of Macintosh - Project Screenshot

URL: https://mac40th.com

Author: jonathanzufi

Description: Hi HN.

Please check out mac40th.com - a site I’ve launched today to celebrate the Macintosh’s 40th birthday happening tomorrow on January 24th, 2024.

mac40th.com features over 1,000 photos covering every Macintosh desktop and portable made by Apple since the original 128K M0001 was released in 1984 - all the way through to the latest Mac Pro, iMac and MacBook lines.

So many people have come across a Mac at some point in their lives - mac40th.com is about giving fans a fun trip down memory lane with the hope that the Macintosh’s 40th anniversary evokes happy memories for anyone who has ever had an experience with an Apple Mac.

I'd love to get your feedback and also fix any errors :)

Enjoy!

Jonathan.

Popularity: 8 points | 3 comments


11. Show HN: Personal Financial Advisor with AI

Show HN: Personal Financial Advisor with AI - Project Screenshot

URL: https://project-hermes-ai.vercel.app/

Author: bishal_saha_

Description: Hey guys, I am trying to do something different, Fintech + AI.

I feel there is a complete abundance of Fintech AI tools in the B2B Saas space but not so much done for the consumer space. So I started working on project-hermes, it's a personal financial advisor designed to understand your bank statements and credit reports with ease and intelligence.

What makes Project Hermes unique?

1. AI-powered insights: Get smart, tailored advice on your financial health. 2. Easy to use: Just upload your documents and let Hermes do the rest! 3. Secure and private: Your data's safety is our top priority.

It's still in beta, and I would love your feedback to make it even better. Give it a try and see how it can transform your financial management experience.

Check it out here: https://project-hermes-ai.vercel.app/

Popularity: 5 points | 5 comments


12. Show HN: FFmpeg-go – Go bindings for the FFmpeg libraries

Show HN: FFmpeg-go – Go bindings for the FFmpeg libraries - Project Screenshot

URL: https://github.com/csnewman/ffmpeg-go

Author: csnewman

Description:

Popularity: 6 points | 2 comments


13. Show HN: I wished for a site with a growing list of math problems, I built it

Show HN: I wished for a site with a growing list of math problems, I built it - Project Screenshot

URL: https://teachyourselfmath.app

Author: viveknathani_

Description: Good math problems are hidden inside textbooks and online documents. To keep up with all the sources in the world is hard. For someone who just wants to continuously solve problems, finding and going through all the sources feels like a hassle. I wished for a website that could just dump all the math problems available in the world out there. And if I could filter the problems by topics, that would be beautiful.

teachyourselfmath is a side project that was born out of this need. At its core, it is a math PDF extraction engine. The engine has some machine learning going on behind the scenes to extract math problems in LaTeX from any image or document.

A little bit about me: I am Vivek, a software engineer based out of India with a diverse set of interests including math. This project is close to my heart for many different reasons and nothing would make me happier than finding people on the internet who would find this website to be useful.

I’d love to hear your feedback on this. Thanks!

Popularity: 5 points | 2 comments


14. Show HN: Easy DPDK-based messaging on cloud VMs with Machnet

Show HN: Easy DPDK-based messaging on cloud VMs with Machnet - Project Screenshot

URL: https://github.com/microsoft/machnet

Author: anujkaliaitd

Description:

Popularity: 4 points | 3 comments


15. Show HN: An SSEM (Manchester Baby) emulator written in 100 lines of JavaScript

Show HN: An SSEM (Manchester Baby) emulator written in 100 lines of JavaScript - Project Screenshot

URL: https://github.com/MarquisdeGeek/ManchesterBaby

Author: stevengoodwin

Description:

Popularity: 5 points | 1 comments


16. Show HN: Best of WebRTC – Zoom Alternative?

Show HN: Best of WebRTC – Zoom Alternative? - Project Screenshot

URL: https://github.com/webRTCv1/best-of-webRTC

Author: bestofwebrtc

Description:

Popularity: 5 points | 1 comments


17. Show HN: A tool to streamline posting to Hacker News

Show HN: A tool to streamline posting to Hacker News - Project Screenshot

URL: https://samedayskunkworks.com/view/submittohackernews

Author: abnerorlamunder

Description: Hey HN,

I'm here to announce a Chrome extension for specially for us.

With that, you can easily submit blog posts/articles/your_dog_picture to HN.

Use it, abuse it, and let me know what you think.

Cheers,

Popularity: 2 points | 4 comments


18. Show HN: Integrate animated SVG emojis into your React landing page

Show HN: Integrate animated SVG emojis into your React landing page - Project Screenshot

URL: https://www.reactemojis.com/?source=HN

Author: souhail_dev

Description:

Popularity: 3 points | 2 comments


19. Show HN: AI Blog Writer

Show HN: AI Blog Writer - Project Screenshot

URL: https://www.blogmuse.io

Author: esumgolb

Description:

Popularity: 1 points | 4 comments


20. Show HN: Fastest QR Code Generator

Show HN: Fastest QR Code Generator - Project Screenshot

URL: https://ropuz.com/qrcode//

Author: motyar

Description:

Popularity: 3 points | 2 comments


21. Show HN: A self hostable SaaS template built with Htmx/Django (no Node.js)

Show HN: A self hostable SaaS template built with Htmx/Django (no Node.js) - Project Screenshot

URL: https://deploysolo.com/

Author: mannders

Description: Hi All,

I've been struggling to put together a SaaS stack I'm truly happy with for a few months. I decided to share what I came up with.

As a backend Python engineer, I wanted to leverage that experience, rather than learn how to navigate JS framework ecosystem.

After discovering the combination of Django and HTMX, I was sold. The batteries included philosophy of Django solves many web development tasks. HTMX provides dynamic user interactivity without needing to incorporate a front end framework or custom Ajax code.

In addition, DeploySolo is built around deploying on a single host using docker compose. This means you can build a containerized environment on your development machine for staging, and deploy to a production server seamlessly and confidently.

If you're lucky and need to scale later, you can pull these containers into another container orchestration tool like k8s.

The final result is a tech stack that is well suited for Python engineers that want to create dynamic web applications without incorporating JS.

Finally, the workflow of building a local containerized environment before pushing it to production with git push/pull is extremely flexible and affordable.

---

There's an invite to a dedicated discord linked above under "Pricing". I'll give free access to anyone who is willing to try out my work and give any feedback, no matter how small.

Thank you!

Popularity: 5 points | 0 comments


22. Show HN: Data Apps for Everyone

Show HN: Data Apps for Everyone - Project Screenshot

URL: https://www.bruinen.co/

Author: tevon

Description: I'm Tevon, founder of Bruinen. I started Bruinen because at a previous company I found myself constantly building out internal apps that were essentially a wrapper around a database table, they had some permissions, some actions that could be taken, a couple charts, and a database.

With Bruinen, we've made creating data apps like this simple, and useable by non-engineers as well as engineers.

We model everything as an object, so that each "Object Blueprint" contains all the information needed to properly permission, display, and provide actions on that object.

We just launched our self-service product and would love to get your thoughts!

Popularity: 4 points | 0 comments


23. Show HN: Ondsel ES – An open-source engineering suite

Show HN: Ondsel ES – An open-source engineering suite - Project Screenshot

URL: https://ondsel.com/

Author: sliptonic

Description: Ondsel has release version 2024.1. Ondsel ES is based on FreeCAD with many UI improvements and the new assembly workbench. It includes the lens PDM service for collaboration. Still early on for us but we're making progress.

Popularity: 4 points | 0 comments


Show HN: Track if popular LLMs recommend your products - Project Screenshot

URL: https://trackaianswers.com/AI-RECOMMENDATIONS

Author: platita

Description: I built a tool for tracking and monitoring if popular AIs like ChatGPT, Google Bard, Bing AI etc. recommend your product when you ask about the "top 10 products doing x" etc.

It can be useful for seeing if users will find your product on chatbots that seem to be replacing search engines.

The first example link for best phones to buy also gives a good idea how the info is lagging with relatively old phones being recommended by LLMs that don't interpret search results but just base answers on the models internal data.

Enjoy testing with your brands and products and let me know how this can be improved?

Popularity: 3 points | 0 comments


25. Show HN: TypeScript/Node library for chat networks

Show HN: TypeScript/Node library for chat networks - Project Screenshot

URL: https://github.com/zamiapi/zami-node

Author: delgiudices

Description:

Popularity: 3 points | 0 comments


26. Show HN: A lineage explorer for open source models and datasets

Show HN: A lineage explorer for open source models and datasets - Project Screenshot

URL: https://huggingface.co/blog/backnotprop/integrity-explorer

Author: ramoz

Description:

Popularity: 3 points | 0 comments


27. Show HN: FitCrumbs – Outdoor workout companion for your Apple Watch

Show HN: FitCrumbs – Outdoor workout companion for your Apple Watch - Project Screenshot

URL: https://apps.apple.com/vn/app/fitcrumbs/id6474696204

Author: to_sorinmircea

Description: Hi HN,

I am an avid runner and I wanted to bring some of my favourite features (navigation and route building) to my go-to smart watch, the Apple Watch.

So far the app is focused around features that bring the most use for me in my day-to-day training: route creation; navigation on the watch (also offline, without the phone); easy upload to Strava

More features are in the working, I'm open to any ideas or feedback :)

Popularity: 3 points | 0 comments


28. Show HN: SlideCross – a combination of a crossword and Rubik's Cube

Show HN: SlideCross – a combination of a crossword and Rubik's Cube - Project Screenshot

URL: https://slidecross.io

Author: mattmar96

Description: This is a game inspired by my friend Cary Huang's game https://loopover.xyz/

Click and drag tiles to move their conveyor up and down or left and right.

Click a tile to see its word's across clue. Click that word again to see its down clue.

Any feedback would be greatly appreciated. I hope you have fun with it!

Popularity: 3 points | 0 comments


29. Show HN: Compilaton of all CSE courses (by NPTEL)

Show HN: Compilaton of all CSE courses (by NPTEL) - Project Screenshot

URL: https://nptelcse.netlify.app

Author: tpkahlon

Description:

Popularity: 2 points | 1 comments


30. Show HN: Terrace, a minimal private module registry for Terraform

Show HN: Terrace, a minimal private module registry for Terraform - Project Screenshot

URL: https://github.com/haoliangyu/terrac

Author: haoliangyu

Description:

Popularity: 3 points | 0 comments


31. Show HN: Practici, a PDF to Practice Questions Generator to Aid Active Learning

Show HN: Practici, a PDF to Practice Questions Generator to Aid Active Learning - Project Screenshot

URL: https://www.practici.ca/

Author: Pycharm

Description:

Popularity: 2 points | 0 comments


32. Show HN: Free Online Flashcard Generator, No Sign Up Required

Show HN: Free Online Flashcard Generator, No Sign Up Required - Project Screenshot

URL: https://www.practici.ca/flashcards

Author: Pycharm

Description:

Popularity: 1 points | 1 comments


33. Show HN: Old UNIX with new Technologies

Show HN: Old UNIX with new Technologies - Project Screenshot

URL: https://exaequos.com/?a=/usr/bin/ed

Author: baudaux

Description:

Popularity: 1 points | 1 comments


34. Show HN: RunTTS - Posix-compliant shell utility for local LLM and tts

Show HN: RunTTS - Posix-compliant shell utility for local LLM and tts - Project Screenshot

URL: https://github.com/jcmccormick/runtts

Author: awayto

Description:

Popularity: 2 points | 0 comments


35. Show HN: Tampermonkey script that modify search result URLs for redirection

Show HN: Tampermonkey script that modify search result URLs for redirection - Project Screenshot

URL: https://github.com/domeniczz/URL-Modifier-for-Search-Engines

Author: miohat

Description: Recently, I'm playing with javascript and complete a tampermonkey script with the help of ChatGPT. I got inspiration from the browser plugin 'Redirector'. It's just a personal hobby mini-project which might contains some glitches. Currently, the script supports Google, Yandex, SearXNG, StartPage, Brave, DuckDuckGo, Qwant, Ecosia, Swisscows, Metager, 4get, Stract, eTools, Mojeek, Yep, Torry. And there're a bunch of built-in regex redirection rules in the script. I'm looking forward for advices on improving the script, regarding performance, code structure etc.

Popularity: 1 points | 1 comments


36. Show HN: Rename Your Screenshots on mac using GPT-4 Vision

Show HN: Rename Your Screenshots on mac using GPT-4 Vision - Project Screenshot

URL: https://keepitshot.com

Author: vignesh_warar

Description:

Popularity: 2 points | 0 comments


37. Show HN: Gojack

Show HN: Gojack - Project Screenshot

URL: https://github.com/christensen143/gojack

Author: christensen143

Description: Blackjack on the command-line. Written in Go.

This is my second try at building a Go App. I would love for any Go devs to give me input on what to improve. Thanks!

Popularity: 2 points | 0 comments


38. Show HN: GrowLab AI – Plant Identification and Diseases

Show HN: GrowLab AI – Plant Identification and Diseases - Project Screenshot

URL: https://growlab.ai

Author: jurassiccloner

Description:

Popularity: 1 points | 1 comments


39. Show HN: Spaceblocks.cloud => Permission AaS

Show HN: Spaceblocks.cloud => Permission AaS - Project Screenshot

URL: https://www.spaceblocks.cloud/

Author: baquero

Description:

Popularity: 1 points | 0 comments


40. Show HN: 2024 arttime feeder challenge. Code feeder in language of choice, share

Show HN: 2024 arttime feeder challenge. Code feeder in language of choice, share - Project Screenshot

URL: https://old.reddit.com/r/linux/comments/19d3drm/2024_arttime_feeder_challenge_with_version_230/

Author: reportaman

Description: arttime is a terminal application that blends beauty of text-art with functionality of clock, timer, and pattern-based time manager. One can also display customized dynamic feed of information like weather, news, stocks, system metrics and etc. The above GIF shows that a feeder can be used to display weather in arttime.

Links:

1. [v2.3.0 release notes](https://github.com/poetaman/arttime/releases/tag/v2.3.0)

2. [arttime_2.3.0-1_all.deb](https://github.com/poetaman/arttime/releases/download/v2.3.0...) package

3. [arttime man txt](https://raw.githubusercontent.com/poetaman/arttime/main/shar...)

4. [arttime main page](https://github.com/poetaman/arttime)

Please read sections ORCHESTRATING and CONTRIBUTING (which has a software spec) in [arttime man txt](https://raw.githubusercontent.com/poetaman/arttime/main/shar...). to understand how to write custom information feeders. They can be written in any language, and should be quite simple. Please get in touch if you write something of common interest. Link to such feeders will get added to arttime's page, and best ones will get special mention. Here's an example that shows how line of text under art can be remotely updated to show "Hello World":

``` $ printf 'MHello World\n' >/path/to/some/fifo/arttime/is/listening


**Popularity**: 1 points | 0 comments

---

## 41. Show HN: FintX – open-source, gRPC test tool built with Avalonia/.NET


![Show HN: FintX – open-source, gRPC test tool built with Avalonia/.NET - Project Screenshot](https://showhntoday.com/images/39100754.png)


**URL**: [https://github.com/namigop/FintX](https://github.com/namigop/FintX)

**Author**: namigop

**Description**: I think we need quality gRPC test tools, so I built one!  Would love to get HN's feedback on the software.

**Popularity**: 1 points | 0 comments

---

## 42. Show HN: I made a website that helps you generate personalized captions


![Show HN: I made a website that helps you generate personalized captions - Project Screenshot](https://showhntoday.com/images/39100830.png)


**URL**: [https://writecap.co/](https://writecap.co/)

**Author**: TheRealJoseph

**Description**: WriteCap is a website that helps generate personalized captions. After answering some questions about the post, it creates a unique and personalized caption for you.

**Popularity**: 1 points | 0 comments

---

## 43. Show HN: Build a prompt-driven AI web app with no-code


![Show HN: Build a prompt-driven AI web app with no-code - Project Screenshot](https://showhntoday.com/images/39101403.png)


**URL**: [https://www.licode.ai/product/prompt-app](https://www.licode.ai/product/prompt-app)

**Author**: susros

**Description**: 

**Popularity**: 1 points | 0 comments

---

## 44. Show HN: Jusi – platform for rapid launch of website and app development


![Show HN: Jusi – platform for rapid launch of website and app development - Project Screenshot](https://showhntoday.com/images/39101592.png)


**URL**: [https://jusi.me](https://jusi.me)

**Author**: kostyadoronin

**Description**: Hi!<p>My name is Konstantin, and I am the CEO and founder of Jusi. Today, I want to share with you our journey and experience in developing a tool aimed at solving the problem of interaction between clients seeking website&#x2F;app development and developers.<p>My extensive experience in IT, both from the client and the service provider perspective, was a key factor in exploring the identified problem, the solution to which is offered by Jusi. 160 interviews with both clients and developers serve as confirmation. If you&#x27;ve dealt with custom development, you&#x27;ll understand my perspective.<p>From the client&#x27;s side, there&#x27;s a significant investment of time and resources in finding a suitable developer. On the developer&#x27;s side, there&#x27;s a substantial investment in team resources for the initial interaction with the client, understanding their needs and vision for the product. Additionally, there&#x27;s the initial assessment of workload and project cost. It&#x27;s truly a massive drain on resources. And that&#x27;s where Jusi comes in.<p>Just last week, we released the beta version of our product and are currently gathering user feedback. What we&#x27;re receiving is invaluable: the idea is great, and users are eager to see more functionality implemented. Currently, we have features such as creating functional specifications through user stories, user distribution across features, and preliminary estimation of workload and project costs.<p>We are now refining the existing functionality and determining, based on feedback, the features for the future release of Jusi.<p>We move fast – we started in October 2023 and brought the product to market in January 2024. So, the next updates are just around the corner.<p>Today, we&#x27;re the full-time bootstrapping team of four. In February, we plan to establish a company in the USA&#x2F;Europe to address potential future legal issues.<p>We see Jusi as a significant step in the field of custom software development that will fundamentally change current approaches. I would be very interested to hear your thoughts on the product.<p>Thank you for your time. 
Warm regards,
Kostya

**Popularity**: 1 points | 0 comments

---

## 45. Show HN: Rustemo – LR/GLR parser generator for Rust


![Show HN: Rustemo – LR/GLR parser generator for Rust - Project Screenshot](https://showhntoday.com/images/39101959.png)


**URL**: [https://github.com/igordejanovic/rustemo](https://github.com/igordejanovic/rustemo)

**Author**: igordej

**Description**: 

**Popularity**: 1 points | 0 comments

---

## 46. Show HN: CronbotAI – All-in-One CRM and Customer Support Solution on Autopilot


**URL**: [#](#)

**Author**: sharvin26

**Description**: Hello,<p>We have released first version of CronbotAI today.<p>We are live on ProductHunt and it would mean world to me if you can support the launch:<p>https:&#x2F;&#x2F;www.producthunt.com&#x2F;posts&#x2F;cronbotai

**Popularity**: 1 points | 0 comments

---

## 47. Show HN: Run popular GPTs without ChatGPT Plus subscription using Assistants API


![Show HN: Run popular GPTs without ChatGPT Plus subscription using Assistants API - Project Screenshot](https://showhntoday.com/images/39104123.png)


**URL**: [https://github.com/Anil-matcha/Top-GPTs](https://github.com/Anil-matcha/Top-GPTs)

**Author**: Anil1331

**Description**: 

**Popularity**: 1 points | 0 comments

---

## 48. Show HN: A tool for calculating MAU and DAU of subreddits


![Show HN: A tool for calculating MAU and DAU of subreddits - Project Screenshot](https://showhntoday.com/images/39104166.png)


**URL**: [https://subkpi.com](https://subkpi.com)

**Author**: te_ch

**Description**: Hi! I built a tool for calculating the monthly active users (MAU) and daily active users (DAU) of subreddits:<p><a href="https:&#x2F;&#x2F;subkpi.com" rel="nofollow">https:&#x2F;&#x2F;subkpi.com</a><p>I mod a small subreddit and wanted to get some metrics to help me understand how fast the sub is growing, whether people engage, etc. I get to see the number of unique visitors from Reddit&#x27;s dashboard, but not the number of users who post or comment. This web app considers the latter to be “active users”, a better measure of engagement, I think.<p>I decided to build my own tool to calculate these metrics, it&#x27;s also another opportunity to improve my coding skills. It calculates both MAU and DAU for recent time periods (7dy, 1mo, 3mo, 1yr, ytd) and their evolution considering the data available to the app (data is downloaded from Reddit&#x27;s public API, so it&#x27;s subject to rate limits; everything happens on the browser).<p>I hope it helps other mods too!

**Popularity**: 1 points | 0 comments

---

## 49. Show HN: STSproxy – An open-source AWS STS proxy solution


![Show HN: STSproxy – An open-source AWS STS proxy solution - Project Screenshot](https://showhntoday.com/images/39104304.png)


**URL**: [https://github.com/codebyamir/sts-proxy](https://github.com/codebyamir/sts-proxy)

**Author**: codebyamir

**Description**: STSproxy is an AWS STS (Security Token Service) Authentication Proxy, providing a simple and secure way for you to provision temporary, limited-privilege AWS credentials for third-parties who need access to your AWS resource(s).<p>Ideal for scenarios where a third-party without an AWS account needs access to your AWS resources.

**Popularity**: 1 points | 0 comments

---

## 50. Show HN: Captivating Profile Photos: Enhancing Your Social Media Presence


![Show HN: Captivating Profile Photos: Enhancing Your Social Media Presence - Project Screenshot](https://showhntoday.com/images/39105666.png)


**URL**: [https://www.fotosdeperfil.org/](https://www.fotosdeperfil.org/)

**Author**: jhonpalome

**Description**: Explore our collection of exquisite profile photos, designed to elevate your online image. Each photo is crafted to showcase personality and style, ensuring your social media profiles stand out with elegance and sophistication. Perfect for LinkedIn, Facebook, Instagram, and more.

**Popularity**: 1 points | 0 comments

---

## 51. Show HN: Cloud-Native LLMOps


![Show HN: Cloud-Native LLMOps - Project Screenshot](https://showhntoday.com/images/39106076.png)


**URL**: [https://github.com/EinStack/glide](https://github.com/EinStack/glide)

**Author**: Refried4281

**Description**: 

**Popularity**: 1 points | 0 comments

---

## 52. Show HN: DotEnvHub, a Terminal UI to manage .env files


![Show HN: DotEnvHub, a Terminal UI to manage .env files - Project Screenshot](https://showhntoday.com/images/39106326.png)


**URL**: [https://github.com/Zaloog/dotenvhub](https://github.com/Zaloog/dotenvhub)

**Author**: Zaloog

**Description**: 

**Popularity**: 1 points | 0 comments

---

## 53. Show HN: Some Resources about Palworld Game and Server Host


![Show HN: Some Resources about Palworld Game and Server Host - Project Screenshot](https://showhntoday.com/images/39107641.png)


**URL**: [https://palworldserver.cc/](https://palworldserver.cc/)

**Author**: AndrewBBoo

**Description**: 

**Popularity**: 1 points | 0 comments

---

## 54. Show HN: Improve resilience of automation scripts by adding data-test-IDs


![Show HN: Improve resilience of automation scripts by adding data-test-IDs - Project Screenshot](https://showhntoday.com/images/39112573.png)


**URL**: [https://www.npmjs.com/package/@footprintorg/footprint-cli](https://www.npmjs.com/package/@footprintorg/footprint-cli)

**Author**: Silvsi

**Description**: This command-line tool is designed for developers working with React and HTML. It generates data-test-IDs and assigns them to elements in your projects, streamlining your test automation process. 
We&#x27;re also planning to expanding its capabilities to include other common front-end languages like CSS and PHP.<p>Key Benefits if using this tool are: 
Enhanced resilience in automation scripts.
Improved efficiency in testing workflows.

**Popularity**: 1 points | 0 comments

---

## 55. Show HN: HackermanAI Waitlist Is Open


![Show HN: HackermanAI Waitlist Is Open - Project Screenshot](https://showhntoday.com/images/39112762.png)


**URL**: [https://hackerman.ai/](https://hackerman.ai/)

**Author**: mxsjoberg

**Description**: 

**Popularity**: 1 points | 0 comments

---

## 56. Show HN: Game to Practice Hexidecimal Addition


![Show HN: Game to Practice Hexidecimal Addition - Project Screenshot](https://showhntoday.com/images/39113257.png)


**URL**: [https://matt-savvy.github.io/hex_math/](https://matt-savvy.github.io/hex_math/)

**Author**: Numeric1137

**Description**: Reading a book about assembly and it suggesting practicing adding hexidecimal numbers. I looked for a simple tool to practice this and couldn&#x27;t find one, so I gave up and wrote one instead.<p>Source: <a href="https:&#x2F;&#x2F;github.com&#x2F;matt-savvy&#x2F;hex_math">https:&#x2F;&#x2F;github.com&#x2F;matt-savvy&#x2F;hex_math</a>

**Popularity**: 1 points | 0 comments

---



## Conclusion

Today's Show HN roundup showcases a diverse range of innovative projects. From AI-powered tools to creative coding solutions, these projects reflect the dynamic nature of our tech community. Which project caught your attention the most? Let us know in the comments!


Tags: #ShowHN #TechInnovation #DeveloperProjects #AI Applications #Open Source Software


## Related Resources
- [Hacker News](https://news.ycombinator.com/)
- [Show HN Guidelines](https://news.ycombinator.com/showhn.html)
- [Previous Show HN Roundups](https://showhntoday.com)