Saturday, September 3, 2022

Show HN: Script1 – a meta language that can be translated to JS/PY/Dart https://ift.tt/gpoNWeI

Show HN: Script1 – a meta language that can be translated to JS/PY/Dart https://ift.tt/Qhj9T7f September 3, 2022 at 07:50AM

Show HN: SMS Interface for Stable Diffusion https://ift.tt/ZcWu9GD

Show HN: SMS Interface for Stable Diffusion If you text 8145594701, it will send back an image with the prompt you specified. Currently only US numbers can send/receive texts because Twilio. Sorry to the rest of the planet! I think this will likely fall over but I figured this would be a cool little thing to demo. I removed the NSFW filter so be mindful of your prompts! I don't persist numbers and there is no linkages being saved between the original text message and the generated images. September 3, 2022 at 04:52AM

Show HN: Redactle Unlimited – a Wikipedia based game https://ift.tt/3xsQdeY

Show HN: Redactle Unlimited – a Wikipedia based game I created this game based on the original game (redactle.com). I built it to play more than one game a day (hence the name) but I've since added many features; lemmatized word matching, multiplayer, multiple languages and several small things like annotations and letter counts. The front end is SvelteKit (static-apapter), back end is mostly node.js, go+Redis streams for multiplayer WS and it's running on k8s. Lemma dictionaries are cached in Azure blob storage. https://ift.tt/2BAWlR3 September 3, 2022 at 01:13AM

Friday, September 2, 2022

Show HN: Hemmelig.app – Self hosted secret sharing application https://ift.tt/3jNxTVn

Show HN: Hemmelig.app – Self hosted secret sharing application https://ift.tt/Yc1NgiF September 2, 2022 at 12:58PM

Show HN: I made an indie app store alternative with a twist https://ift.tt/JkGEju6

Show HN: I made an indie app store alternative with a twist The twist is that although it does (part of) the job of an app store, it's not (nor aims to be) an app store. It's a script you add to your existing web app that makes it "self-distributing". Check it out: https://progressier.com. Under the hood, it leverages the concept of "PWA", but it goes further: 1. It creates an installation page for your app that looks like an app store listing. Demo example: https://ift.tt/eNrkbgG 2. It handles every OS/browser combination to create an installation flow that works everywhere (e.g. on Safari/iOS, with in-app browsers, etc) 3. It lets you manage all the technical aspects of your PWA in a dashboard rather than in code (i.e. service worker, app manifest, caching strategies, icons, etc). You can even send push notifications and design app screenshots from Progressier. Caveats: - It only works for web apps - It's not free! - An app store is supposed to handle "logistics" and "promotion". Progressier only does the former. It won't get you new users. - Push notifications are not yet available on iOS Some fun facts: - There are 5,000+ apps using Progressier - 50%+ of my customers are users of no-code platforms, particularly Bubble. - Under the hood, Softr's PWA Builder (https://ift.tt/4i7JBuQ) actually uses a white-labeled version of Progressier I provide them - Progressier is built entirely by me (https://kevin.tw). For the record, the whole thing is just vanilla CSS/JS — no frameworks. September 2, 2022 at 06:29AM

Show HN: I wrote a book on Site Reliability Engineering https://ift.tt/1XsPRL2

Show HN: I wrote a book on Site Reliability Engineering Hello Everyone! I finally published Site Reliability Engineering Tidbits on leanpub. https://ift.tt/WtUyCRn This book is a collection of 28 chapters on SRE concepts such as observability, monitoring, Service Level Objectives (SLOs), alerting, resilience and debugging. This book aims to provide hands on examples of implementing a number of concepts described in Google's SRE books. It also describes how i've seen SRE concepts impact some of the organizations I've worked in. I previously announced this book here, but it was not on leanpub yet: https://ift.tt/V4P5ha8 Thank you for looking and I appreciate your feedback! https://ift.tt/WtUyCRn September 2, 2022 at 04:28AM

Show HN: Async OK – Find an async job, work anytime https://ift.tt/Iw7PjA5

Show HN: Async OK – Find an async job, work anytime https://ift.tt/oRcYzuD September 2, 2022 at 02:07AM

Show HN: Petri – Drop-in Postgres image that forks a DB per test https://ift.tt/APIWNEf

Show HN: Petri – Drop-in Postgres image that forks a DB per test Rolling it out at work to parallelize 4,257 tests across 5 services. It fix...