Thursday, December 8, 2022

Show HN: Music quiz web app powered by Spotify API https://ift.tt/TjoUsqc

Show HN: Music quiz web app powered by Spotify API I had some time over and decided to put together this idea I had for a few years. A music quiz based on a playlist on Spotify. https://introquiz.se/ December 7, 2022 at 06:21PM

Wednesday, December 7, 2022

Show HN: A bookmarklet to remove submissions and comments about ChatGPT from HN https://ift.tt/0M5NIJT

Show HN: A bookmarklet to remove submissions and comments about ChatGPT from HN I get it, ChatGPT is cool and you can do plenty with it. But I'm getting tired that every other post is about ChatGPT, and every other comment is about ChatGPT's take on a topic. So I made this bookmarklet to remove comments and posts about ChatGPT (including this one) from HN. Drag and drop the text below to your browser bar, give it a name like "Remove ChatGPT", and get rolling. Whenever you load submissions or a specific comment thread, just click the bookmarklet and the page will be ChatGPT free. javascript:(function() {if (document.getElementsByClassName("comment-tree").length) { Array.from(document.getElementsByClassName("comtr")).filter(elt => elt.innerText.match(/chat\s?gpt/i)).forEach(e => e.parentNode.removeChild(e)); } else { Array.from(document.getElementsByTagName("a")).filter(elt => elt.innerText.match(/chat\s?gpt/i)).forEach(a => { const tr = a.parentNode.parentNode.parentNode; const table = tr.parentNode; const details = tr.nextSibling; const spacer = details.nextSibling; table.removeChild(tr); table.removeChild(details); table.removeChild(spacer);});}})(); December 7, 2022 at 10:09AM

Show HN: I designed a ChatGPT prompt evaluator to ruin your fun;) https://ift.tt/sObmS17

Show HN: I designed a ChatGPT prompt evaluator to ruin your fun;) Today I designed a method to prevent users from jailbreaking ChatGPT (for instance, users have generated instructions to produce weapons or illegal drugs, commit a burglary, kill oneself, take over the world as an evil superintelligence, or create a virtual machine which they then can use). The OpenAI team appears to be countering these primarily using prompt engineering or fine-tuning on the ChatGPT model. The idea is to use a second and fully separate, fine-tuned LLM to evaluate prompts before sending them to ChatGPT. You can test this by inserting your successful ChatGPT jailbreaks. Break it for me if you dare! I look forward to seeing your results! https://ift.tt/Fsi6Qn4 December 6, 2022 at 11:16PM

Show HN: New service to grow your audience on Twitter and boost your following https://ift.tt/7Rotkx4

Show HN: New service to grow your audience on Twitter and boost your following https://skedlo.com December 7, 2022 at 03:31AM

Show HN: Publish from GitHub Actions using multi-factor authentication https://ift.tt/DSv6JmV

Show HN: Publish from GitHub Actions using multi-factor authentication The backstory about this GitHub Action: I discussed with an open-source maintainer why they publish npm packages from their local machine and do not use CI/CD pipelines. They said publishing should require human intervention and want to continue using multi-factor authentication to publish to the npm registry. This led to building the wait-for-secrets GitHub Action. It prints a URL in the build log and waits for secrets to be entered using a browser. Once entered, the workflow continues, and secrets can be used in future steps. The latest release of "eslint-plugin-react" to the npm registry used a one-time password (OTP) from a GitHub Actions workflow! https://ift.tt/Zj7qeg5... https://ift.tt/kgomqwc December 6, 2022 at 11:35PM

Show HN: Codeium – a free, ultrafast AI codegen extension https://ift.tt/sRbQnet

Show HN: Codeium – a free, ultrafast AI codegen extension I'm Varun, CEO of Exafunction, and we just released Codeium to open up access of generative AI to all developers for free. In the spirit of Show HN, we created a playground version for anyone to try this tech in the browser (click Try in Browser)! We have built scalable, low-latency ML infra for many top AI companies in the past, and we are excited to leverage that tech into a product that we, as developers, would love. We hope that you do too, and we would appreciate any feedback that this community has for us! https://ift.tt/540kP3a December 7, 2022 at 12:57AM

Show HN: Copilot Money launched their macOS app https://ift.tt/be2NLoq

Show HN: Copilot Money launched their macOS app https://copilot.money December 6, 2022 at 11:28PM

Show HN: ReadMyMRI DICOM native preprocessor with multi model consensus/ML pipes https://ift.tt/H4txQBC

Show HN: ReadMyMRI DICOM native preprocessor with multi model consensus/ML pipes I'm building ReadMyMRI to solve a problem I kept runnin...