nowfound

Alternatives

Products that do what Backlit Keyboard API for Python does

It currently supports Linux as of now. You can use this package to tinker with many things. Let's say, if you want to make a custom notification system, like if your website is down, you can make a blink notification with it. MacOS support is underway. I haven't tested Windows yet, I don't use it anymore btw. In future, if this package reaches nice growth, I'll be happy to make a similar Rust crate for it.

  1. 1AL

    I have always wanted cool features in Linux because I use it day to day as my OS. I have always wanted to implement this feature and do it properly: one that automatically adjusts keyboard and LCD backlights using data from the Ambient Light Sensor. I enjoy low-level programming a lot. I delved into writing this program in C. It came out well and worked seamlessly on my device. Currently, it only works for keyboard lights. I designed it in a way that the support for LCD will come in seamlessly in the future. But, in the real world, people have different kinds of devices. And I made sure to…

    Nov 2025 · github.com

  2. 2RF

    2023 · github.com

  3. 3RA
  4. 4PX

    Hi everyone! I've been working on a web search interface for Python's documentation as a personal project, and I think it's ready for other people to use... Please give it a go (and join me in praying to the server gods): https://pythondocs.xyz/ Here's the tech stack for those interested: - Parser: Beautiful Soup + Mozilla Bleach - Database: in-memory SQLite (aiosqlite) + SQLAlchemy - Web server: FastAPI + Uvicorn + Jinja2 - Front end: Tailwind CSS + htmx + Alpine.js I have ideas for future improvements but hopefully the current version is useful to someone. Let me know what…

    2022 · pythondocs.xyz

  5. 5

    Make 3rd party keyboards work with window-tiling shortcuts

    2025

  6. 6

    Real-time ASL alphabet recognition in py ,pip install and go

    Jun 2026 · pypi.org

  7. 7RP

    Hi HN, I want to show you my project: RadiaCode, a Python library to interface with RadiaCode-10x radiation detectors and spectrometers. With RadiaCode, you can: - Collect real-time radiation measurements - Analyze spectra for insightful data interpretation - Control device settings via USB or Bluetooth - Explore a web interface example for remote monitoring It's available on PyPI, open-sourced under the MIT License, and you can find the code with examples on GitHub.

    2025 · github.com

  8. 8FI

    Demo: https://www.youtube.com/watch?v=sRFOWNpb3U4 Imagine having the CMD+K functionality of Cursor.sh but instead of code you edit natural language. *Introducing Fixkey:* - Native Swift macOS app (no Electron) - Keyboard-centric - Select common prompts with keyboard shortcuts - Press one shortcut to select and fix the current paragraph - Create custom prompts just in time - Works in every application on macOS (Apple Notes, Obsidian, Notion, Gmail, Slack…) - Support for local running models (Beta) *Why not using Grammarly?:* I always feel that traditional grammar correction…

    2024 · fixkey.ai

  9. 9

    Keyboard shortcuts for Mac, Windows, and web apps

    2019

  10. 10

    Keyboard-driven window manager for macOS

    Jul 2026 · ankylix.com

  11. 11AL

    Hey HN! I built a local Python prototyping tool that is finally the Python development environment I've always wanted. It has a Jupyter notebook for data crunching, a database of your choice (Python or MongoDB), and a Streamlit app for building a frontend visualization. You can edit the Streamlit backend via an embedded VSCode editor, or locally on your own IDE. The best part for me is that the database connectors within Jupyter and Streamlit are configured out-of-the-box, so you don't need to spend time thinking about how to tie all that together - you can just pick the database you want to…

    2023 · github.com

  12. 12SA

    Hi everyone, ShowMeYourHotKeys is a macOS application I worked for the last months. This app shows the frontmost app's menu items shortcuts (it also have some other features) There is a beta version available on the website. Accessibility permission is necessary to obtain menu items informations and Full disk Access is necessary to create custom shortcuts. I would love to hear all the feedbacks and suggestions. Thank you for your attention.

    2022 · showmeyourhotkeys.moxadventu.com

  13. 13OI

    Hi HN! I’m excited to share Orange Intelligence, an open-source alternative to Apple Intelligence for macOS. Orange Intelligence allows you to interact with any text on your macOS system in a more powerful and customizable way. It brings a floating text processor that integrates seamlessly with your workflow. Whether you’re a developer, writer, or productivity enthusiast, this tool can boost your efficiency. Key Features: Floating Text Processor: Trigger a floating window by double-tapping the Option key to process selected text. Run Any Python Function: From basic text manipulations to…

    2025 · github.com

  14. 14PA

    Hello all, Very excited to share this project with you all! Panoptisch scans your Python file or module to find it's imports (aka dependencies) and recursively does so for all dependencies and sub-dependencies. It then generates a dependency tree in JSON for you to parse and enforce import policies. Supply chain attacks are no joke, and this is one way to transparently analyze your dependencies to see if any malicious imports are taking place. For example, your yaml parser, nor it's sub-dependencies should import socket, or sys. Panoptisch is in early stages, with known limitations (for…

    2022 · github.com

  15. 15TA

    I have created a Twitter API wrapper that works with just a username, email address, and password — no API key required. With this library, you can post tweets, search, and check trending topics for free. In addition, it supports both asynchronous and synchronous use, so it can be used in a variety of situations. Please send me your comments and suggestions. Additionally, if you're willing, kindly give me a star on GitHub.

    2024 · github.com

  16. 16PA

    I’m sure many of you are familiar, but there’s a treacherous gap between finding (or building) a model that works in PyTorch, and getting that deployed into your application, especially in consumer-facing applications. I’ve been very interested in solving this problem with a great developer experience. Over time, I gradually realized that the highest-impact thing to have was a way to go from existing Python code to a self-contained native binary—in other words, a Python compiler. I was already pretty familiar with a successful attempt: when Apple introduced armv8 on the iPhone 5s, they…

    2025 · blog.fxn.ai

  17. 17MA

    my first app, a Mac menu bar utility to remind you to blink more. any feedback would be much appreciated. or make it your own and share :)

    2025 · github.com

  18. 18NE

    I recently released version 1.4 of Notepad.exe, my editor built for macOS. The goal of the app is to let you prototype ideas in Swift or Python with minimal setup - write code, hit Run, skip project scaffolding. This release adds support for a Linux runtime/subsystem, so you can write on macOS and execute snippets in a Linux environment. I’d love to hear any feedback or answer any questions: would a tool like this fit your workflow? What friction remains?

    Oct 2025 · notepadexe.com

  19. 19RS

    Hey everyone, I built reaktiv, a small reactive signals library for Python, inspired by Angular’s reactivity model. It lets you define Signals, Computed Values, and Effects that automatically track dependencies and update efficiently. The main focus is async-first reactivity without external dependencies. Here is an example code: ``` import asyncio from reaktiv import Signal, ComputeSignal, Effect async def main(): count = Signal(0) doubled = ComputeSignal(lambda: count.get() * 2) async def log_count(): print(f"Count: {count.get()}, Doubled: {doubled.get()}") Effect(log_count).schedule()…

    2025 · github.com

  20. 20PL
  21. 21IM

    This is my free and open-source project that work with taking input from user and made AutoHotkey script from it. With integration of AutoHotkey Interception to make script able to remap only on specific devices. Can be useful for someone who want to use AutoHotkey, but don't know how to code or just lazy to code or simply someone who don't know AutoHotkey but interested in it's feature and want to use this project as a whole. This is not official tool from AutoHotkey but my standalone project.

    2025 · autohotkey.com

  22. 22AP

    Hey HN! I've been having a play with the idea of building a Python AST viewer that can be used in the terminal. It's very early days yet, but the basic approach is now available for playing with. Also on PyPi and works fine on GNU/Linux, macOS and Windows.

    2022 · github.com

  23. 23OS

    I posted this previously, but there's been a major update. As a high school student, I love LLMs and the execution of Apple's Appel Intelligence Writing Tools, but was disappointed that nothing like that existed for Windows. I thus created Writing Tools, a better than Apple Intelligence open-source alternative that works system-wide on Windows. It's much better than the tiny 2B parameter Apple Intelligence model! Features (works system-wide): 1. Select text in a textbox, press the hotkey, and optimise your text in a click (proofread, rewrite, tone changes, custom instructions...). You can…

    2024 · github.com

  24. 24KK

    I got tired of MacOS failing to index applications (it consistently seems to prefer apps installed on my phone instead of the computer) so I've bound them to keys and have started building muscle memory for opening and switching apps. Reduces mental fatigue from constantly cmd + tabbing between apps all day

    Jun 2026 · keyghost.dev

Ranked by how close each launch is in meaning, then by votes. Refine with a description →