Sunday, April 16, 2023

Show HN: German Translation of the Rust Book https://ift.tt/pnvi1Gb

Show HN: German Translation of the Rust Book I have just published a paperback and an e-book of the German translation of the Rust book from Steve Klabnik and Carol Nichols: Die Programmiersprache Rust https://rust-lernen.de/ The translation itself is available for free on GitHub. https://rust-lernen.de/ April 16, 2023 at 02:58PM

Show HN: Use GitHub Actions to generate a warm up routine https://ift.tt/1wFcL2y

Show HN: Use GitHub Actions to generate a warm up routine Morning everyone - I made this because I really didn't want a new SaaS subscription to "be more productive". Turns out, you can do a lot with just a cronjob, GitHub Actions and CSV file! It works quite nicely because Issues created actually can have toggle-able checkboxes so you can mark yourself as you do them. https://ift.tt/eTUcW5D April 16, 2023 at 01:55PM

Show HN: PromptLab – A Raycast Extension for creating context-aware AI commands https://ift.tt/X02Yup9

Show HN: PromptLab – A Raycast Extension for creating context-aware AI commands https://ift.tt/YhFnx5S April 16, 2023 at 06:05AM

Show HN: Super Stack Solitaire https://ift.tt/mUrgydY

Show HN: Super Stack Solitaire Solitaire with a retro NES aesthetic. Two game modes - Klondike and Pyramid. Design, sound, art and programming done by me. Play in browser for free or support my work by purchasing the downloadable version. https://ift.tt/W4jdle6 April 16, 2023 at 12:36AM

Show HN: Pitchleague.ai – Perfect Your Pitch Deck https://ift.tt/n0ZMcEg

Show HN: Pitchleague.ai – Perfect Your Pitch Deck Hey H, We're excited to share that we've already assisted over 800 founders in refining their pitch decks with our recently launched Pitch League AI. Created during a one-day hackathon, our tool harnesses the power of GPT-4 to help founders iterate and enhance their pitch decks. We've observed founders uploading their decks multiple times and making improvements based on the AI-generated feedback. Our mission is to support as many founders as possible in raising funds for their startups, starting with perfecting their pitch decks. While Pitch League AI is still a work in progress, users have found it genuinely helpful thus far. The platform extracts text from PDFs and employs GPT-4 prompts to evaluate and ensure the completeness of pitch decks across various categories, including deck length, grammar & spelling, and the inclusion of vital information (e.g., problem, solution, team, etc.). We'd love to hear your thoughts and suggestions on how we can enhance Pitch League AI and any additional features you believe would be valuable. Looking forward to your feedback! Cheers. https://ift.tt/VJaXYqm April 16, 2023 at 01:46AM

Saturday, April 15, 2023

Show HN: TYON, a Simple JSON Alternative https://ift.tt/VjprYQM

Show HN: TYON, a Simple JSON Alternative TYON (typed object notation) is my attempt to address the main frustrations I have with JSON. 1. Key repetition - you can specify the key names once at the start of a list or map, instead of on each object separately. 2. Escaping strings - everything in a string is literal except for " which is escaped as "". This makes writing regexes and multiline text easier without introducing a bunch of different string styles or excess escaping, which I am not a fan of. 3. While not nearly as important as the first two to me, I did reduce symbol clutter when possible. Files are implicitly maps, keys don't require quotes in most cases, and you don't need commas between items. 4. Decoupling syntax and data formats - TYON has recommended formats for interoperability, but none of these are part of the core spec, so tools are equally welcome to just treat everything as a string. The linked repo contains the spec and a cli app that provides formatting, validation, and conversion to JSON. https://ift.tt/Z0fYuPF April 15, 2023 at 03:10AM

Show HN: What Should I Cook – Cooking Ideas https://ift.tt/o3e08vb

Show HN: What Should I Cook – Cooking Ideas Hey all, I made this prototype called What Should I Cook to help me think of what to cook. It is still a WIP but I feel comfortable sharing it now. I am still adding recipes and some features! Please try it out and let me know what you think. https://ift.tt/P36voWj April 15, 2023 at 06:59AM

Show HN: PlutoPrint – Generate Beautiful PDFs and PNGs from HTML with Python https://ift.tt/8nBt5IR

Show HN: PlutoPrint – Generate Beautiful PDFs and PNGs from HTML with Python Hi everyone, I built PlutoPrint because I needed a simple way t...