Skip to main content

Posts

Showing posts from August 28, 2022

Show HN: I made Scrabble with modified rules https://ift.tt/E9M2ZkY

Show HN: I made Scrabble with modified rules Crapple is my take on "improved" Scrabble rules... obviously that is subjective, I'm not even sure I agree with it. You and your opponent share a rack of letters, and vowels are only obtained by opting to deduct a configurable amount of points from your score to receive a random vowel tile. Additionally, there is an alternate board layout with some new tile multipliers. This is an old project but I never posted it, so I thought what the hey, I am curious to hear what your guys' thoughts are on these rules. It's an old dead project so you can't hurt my feelings. Thanks! You can play it now against the computer in your browser (no signup required, but an account lets you create and play games against other humans). The Android app is the better version only because the AI will run on a seperate thread (in the browser version you might see a hiccup while it runs), and because Unity WebGL doesn't export retina-sized

Show HN: Alumina Programming Language https://ift.tt/fuEJ7aG

Show HN: Alumina Programming Language Alumina is a programming language I have been working on for a while. Alumina may be for you if you like the control that C gives you but miss goodies from higher level programming languages. It is mostly for fun and exercise in language design, I don't have any grand aspirations for it. It is however, by this time, a usable general-purpose language. Alumina borrows (zing) heavily from Rust, except for its raison d'être (memory safety). Syntax is a blatant rip-off of Rust, but so is the standard library scope and structure. Alumina bootstrap compiler currently compiles to ugly C, but a self-hosted compiler is early stages that will target LLVM as backend. If that sounds interesting, give it a try. I appreciate any feedback! Standard library documentation: https://ift.tt/E0Dtzsr Online compiler playground: https://ift.tt/ZVNyBxA https://ift.tt/hxpwNsV September 3, 2022 at 09:32PM

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

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 05:22AM

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

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/u6SmEpX September 3, 2022 at 01:43AM

Show HN: Countle https://ift.tt/1ZNt9TJ

Show HN: Countle Countle is a daily puzzle game, a la Wordle, where you use 6 given numbers to produce of a sequence of calculations to reach a target number. In other words, it's a daily round of the "Numbers Game" from the British game show Countdown. Sample numbers round: https://www.youtube.com/watch?v=pfa3MHLLSWI A new puzzle appears every day! https://www.countle.org September 2, 2022 at 10:19AM

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

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/6dfkiAw 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

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

Show HN: I wrote a book on Site Reliability Engineering Hello Everyone! I finally published Site Reliability Engineering Tidbits on leanpub. https://ift.tt/sGKOjFV 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/0lgfBKN Thank you for looking and I appreciate your feedback! https://ift.tt/sGKOjFV September 2, 2022 at 04:58AM

Show HN: Pith language. JavaScript with a little bit of Python syntax https://ift.tt/j5A8N9u

Show HN: Pith language. JavaScript with a little bit of Python syntax I've been writing a lot of JavaScript and Python lately. I like Python's syntax, so I created a language called Pith that's JS with some Python-like syntax (but without trailing colons). It's not a full compiler. It really just does search-and-replace, but I find it fun and useful in spite of some sharp edges. I use it on my smartphone to write and run short programs. Here's an example using the HN API: max = 6 ids = await getApi('topstories') for id in ids.slice(0, max) getItem(id) async def getItem(id) const d = document.createElement('div') results.appendChild(d) d.style = 'padding-bottom: 1em;' i = await getApi('item/' + id) ? i.title, '|', i.score u = '//news.ycombinator.com/item?id=' d.innerHTML = i.title.link(u + id) async def getApi(path) u = '//hacker-news.firebaseio.com/v0/' return getJson(u + path + '.json') https://ift.tt/

Show HN: Open-source infra for building embedded data pipelines https://ift.tt/aSg1fpu

Show HN: Open-source infra for building embedded data pipelines Hey HN! We are building *open source infrastructure for deploying customer-facing data pipelines.* Here’s our repo https://ift.tt/8Mozhfx and website https://pipebird.com/ . Pipebird is designed to enable companies that generate important data to offer secure data pushes to their customers’ warehouses, directly from their products. Our team was previously building in fintech, where we heard from many of our peers that their customers wanted data pushed directly to their warehouses. Customers wanted to bring data into their source of truth without having to maintain custom built pipelines or introduce security risks by contracting a third-party ETL/ELT provider. After seeing Stripe https://ift.tt/qLGMzeO and customer.io https://ift.tt/eD06svK recently invest in building out their own native data sharing products, we realized that many SaaS companies could better support their customers and even generate additional revenue b

Show HN: OpenBracket, a collaborative code editor for technical interviews https://ift.tt/NTZ1IzC

Show HN: OpenBracket, a collaborative code editor for technical interviews Hi everyone! At Fluxon, we found that we were't happy with existing solutions for collaborative coding with engineering candidates in our technical interviews. So we built OpenBracket.net—a simple code editor with no setup or log in needed—just share the link and start coding together. Our first version is now available for anyone to use. We’d love some feedback. Thanks! https://ift.tt/MpILdNr August 31, 2022 at 11:40PM

Show HN: Using GPT-3 to answer annoying interview application questions https://ift.tt/DVPGrg2

Show HN: Using GPT-3 to answer annoying interview application questions Hi folks. My wife has been looking for a job and sometimes in the application forms there are annoying questions like "Why do you want to work here?". At the same time I've been playing around with GPT-3 and have blown away by it's capabilities, so I decided to build a site that can answer these annoying questions for her. Github: https://ift.tt/ZzO2o36 Here's an example of a generated answer: Using this opening for a Senior iOS Engineer at Monzo - https://ift.tt/q68jDa2 The generated answer question on the application "What attracted you to Monzo?": "What attracted me to Monzo is that it is a bank that is trying to make a difference in the world by making it easier for people to manage their money. Monzo is also very customer focused and puts the customer first in everything they do." https://ift.tt/AG2UEQq September 1, 2022 at 01:30PM

Show HN: Restfox – A web based HTTP client inspired by Insomnia and Postman https://ift.tt/LItNvg4

Show HN: Restfox – A web based HTTP client inspired by Insomnia and Postman Hey HN, I built this because I wanted a portable version of Insomnia I could access anywhere I am, without installing anything. The application is a PWA, so it will not load resources again after the first load, unless there's an update. It uses IndexedDB and loads quite fast even with a lot of nested requests and folders. Import from Postman and Insomnia is available making it easy to import your pre-existing request collections. Only limitation is that it only supports CORS enabled endpoints for now. I plan to add cors proxy support later on. There is of course the electron build ( https://ift.tt/JG4iwy7 ), which can be used to bypass cors but that kinda defeats the portability of the app but it is an option. GitHub repo: https://ift.tt/Le1Rnd4 https://restfox.dev August 31, 2022 at 11:16PM

Show HN: Reach 100 – a (unsolvable?) puzzle game https://ift.tt/sbornEt

Show HN: Reach 100 – a (unsolvable?) puzzle game I recently remembered a game we used to play with pen and paper some 20 years ago, where you need to fill a 10x10 grid writing numbers in the grid up to 100 following 2 simple rules. After showing it to my kids I thought it would be nice to adapt it digitally so that they could play it more often (not needing to draw the grid etc.) and so that other people could play it as well. What I'm really interested in with this submission (beyond general feedback) is wether anybody knows the origin of the game and if it's solvable. Because that's the catch, my highest score of all time is 97 and it doesn't seem to be possible to go higher. I have the feeling this game is an adaptation of a more general problem and probably has its origin in some lecture. So, once again, if you know where it comes from I'd be really grateful. Alternatively I would love to know if there is a possibility to prove if it's solvable or not. (It&#

Show HN: Node Version Audit – Audit Your Node Version for Known CVEs and Patches https://ift.tt/H8x2EQo

Show HN: Node Version Audit – Audit Your Node Version for Known CVEs and Patches I wrote Node Version Audit to automatically keep track of Node patches, particularly for releases that fix CVEs. While it can be ran directly, it is designed to run as part of a pipeline to produce warnings if the runtime version of Node has CVEs, or is no longer supported. The cool part (IMO), is that Node Version Audit automatically keeps track of node releases and CVEs by parsing the change log, and so there is no curation needed to maintain it. I would love any thoughts! https://ift.tt/kOhZjQP August 31, 2022 at 06:45AM

Show HN: Go, JSON, Streaming and Generics https://ift.tt/piBZPGJ

Show HN: Go, JSON, Streaming and Generics I needed an easy way of handling large JSON blobs (200MB+) which I found is easy, but very verbose, using encoding/json. Dealing with deeply nested structs was a real pain so I wrote myself a wrapper around it - https://ift.tt/aB3MWKx - thanks to generics it can be very thin. https://ift.tt/aB3MWKx August 31, 2022 at 12:06AM

Help Make Muni Safe for Everyone

Help Make Muni Safe for Everyone By Mariana Maguire New Muni “no harassment” symbol The safety of our customers and staff is a top priority for the SFMTA. That is why we are launching MuniSafe – a campaign to increase reporting of gender-based harassment through recently expanded incident reporting options. If you experience or witness an incident, help us make MuniSafe by reporting it using the Muni Feedback form at SFMTA.com/MuniFeedback, the 311 mobile app or by calling 311. Non-English speakers should call 311 for language-assisted reporting. Gender-based harassment takes many forms, affects many people and is absolutely not tolerated on Muni. Survivors should report incidents to the San Francisco Police Department if they feel comfortable doing so. By also reporting incidents directly to the SFMTA, you will help us track events that occur in our system so we can build better safety responses and direct resources to reduce gender-based harassment. New car cards that will be

Show HN: I used DallE to create default avatars on my Creator community website https://ift.tt/RXTPgIn

Show HN: I used DallE to create default avatars on my Creator community website I'm an indie dev and I built a community for creators to get together and collaborate with each other. Mostly for amateur creators, but some famous ones use it as well. It has about 700k users so far. There are about 100k of those users who don't bother to upload an avatar, so they've had a boring default avatar for nearly 7 years. Today, I used my credits on DallE to do make them a bit more fun. Since the creators self-identify, I was able to create specific kinds of avatars for them. For example, if a creator is a writer, my DallE prompt would be: "an oil painting portrait of a serious-looking owl, standing in front of a typewriter" Voice Actor: "oil painting portrait of a robot who is made out of a microphone, wearing a hat and headphones" Comic Illustrator. This one was a little more tough, so I chose 'tablet' as my key object: "Oil painting portrait of a bro

Show HN: SaaS for analyzing Bitcoin price movements https://ift.tt/EyBsu69

Show HN: SaaS for analyzing Bitcoin price movements Hello everyone! Our software offers a SaaS for analyzing Bitcoin price movements. We built an MVP model which recognizes levels in which BTC is at the top or bottom of the cycle. It is primarily intended for investors who are not financially sophisticated as a possible help to protect their investment. A short story about the creation of the product: A few of us, friends and ourselves, have always been maddened by the regular loss of the largest part of unrealized profit during bear markets which tend to be very hard on retail investors.On the other hand, a lot of friends blindly invested into bitcoin at ridiculous price levels based on hypes, bad instagram and YouTube influencers and mouth of word. We think that a large part of BTC and crypto investors live in a similar situation. With this goal, we teamed up with experts in the field of data science and finance, and created an algorithm that gives the BTC price score based on crucia

Muni Color Schemes Through the Years

Muni Color Schemes Through the Years By Jeremy Menzies Over the 110-year history of the SF Municipal Railway, our transit vehicles have been painted in six main color schemes (known as “liveries”). Here’s a short look at those paint jobs, from the oldest streetcars to our newest buses.  The timelines of these liveries overlapped and old colors were not always phased out even after a new color was introduced.  Not included here are the many colors of cable cars , historic vehicles , variations on the main colors, or any special paint jobs used. The Original Grey and Red: 1912-1939 When Muni started in 1912, vehicle paint colors were used to distinguish one transit service from another. Muni’s very first streetcars were painted grey with red windows and roof. Gold was used for lettering, vehicle numbers, and decorative lines. This combination gave the cars a simple yet elegant look. Seen here at Green Division rail yard around 1980, Streetcar 1 was built in San Francisco in 19

Show HN: An Audio Introduction to Nick Bostrom https://ift.tt/kitYw5c

Show HN: An Audio Introduction to Nick Bostrom I'm working on this because I think Bostrom's work is extremely important, and deserves a wider audience. I first read Bostrom's work in 2010, during my undergraduate degree. It has been a major influence on many of the projects I've worked on since then. In particular, the many years I've spent working at 80,000 Hours. (80,000 Hours is a career advising service which—among other things—helps people act on Bostrom's ideas about the urgency of addressing existential risks posed by emerging technologies, such as artificial intelligence and biotechnology.) https://ift.tt/y43M5rB August 29, 2022 at 02:52PM

Show HN: I built a quizlet clone in 2 hours https://ift.tt/E3mk4fY

Show HN: I built a quizlet clone in 2 hours Quizlet, a popular tool among high schoolers and college students used to study for tests recently made it's core functionality paid. In an era where Autodesk, Adobe, and Microsoft hold their proprietary software to their chests, it's exciting to see opensource alternatives come to compete with them. I'm 15, and I'm excited to do my part to keep education free for everyone. https://ift.tt/Idqmgoh August 29, 2022 at 05:19AM