The best Hacker News stories from Show from the past day
Latest posts:
Show HN: The Fuck Cards – make a card for a friend or enemy
The Fuck Card started years ago as a physical card I printed for some friends.<p>Now it's this simple web app you can use to express yourself.<p>Quickly make a card, copy the link and send it to someone who deserves it.<p>It's fun and there's lots you can say with it.<p>I built it built in 100% handcrafted in Vanilla HTML, CSS and JS.
No frameworks, no BS.<p>Fonts are provided by Google Fonts.
Image generation thanks to html2canvas.
No-tracking analytics by Matomo.<p>It started as a weekend project to train my JS skills. I'd love to know your thoughts.
Show HN: Trivai.app – AI powered trivia questions, with references
Hi HN!<p>As many of you, I've had a lot of fun playing around with LLMs the past
few months and I wanted to show you what I've built.<p>I made a trivia website using GPT3 a while back just to have something to
play with. My initial interest was to see if I could get structured
responses to build a UI around, and if I could get the LLM to refer
back to what piece of text it used to create questions and answers with.<p>The initial results were pretty good, but not good enough.
Fast forward a few months, GPT 3.5 was released to the public and I was
released from my work.<p>I decided to pick this up again and have been making some changes.<p>- I've generated almost 3000 questions.<p>- I initially only let signed up users generate questions due to cost
concerns. Since 3.5 is much cheaper, I've opened up the question
generation for everybody.<p>- I built a prompt comparison tool so I could tweak the prompt to get
better responses.<p>- I've added some more data to the questions. This includes a more free form explanation to the correct answer (separate from the references),
and categories for all questions.<p>- I've been working on a question improvement process. This means I
collect issues, generate new variations of the question and let people
vote on them. Voting and question improvement is currently only available
to signed in users.<p>I have many more ideas I'd like to explore, but I would appreciate your feedback and would be happy to answer any questions about the site or its development.<p>You can access the references by pressing the explanation text when
you've answered a question correctly.
Show HN: Trivai.app – AI powered trivia questions, with references
Hi HN!<p>As many of you, I've had a lot of fun playing around with LLMs the past
few months and I wanted to show you what I've built.<p>I made a trivia website using GPT3 a while back just to have something to
play with. My initial interest was to see if I could get structured
responses to build a UI around, and if I could get the LLM to refer
back to what piece of text it used to create questions and answers with.<p>The initial results were pretty good, but not good enough.
Fast forward a few months, GPT 3.5 was released to the public and I was
released from my work.<p>I decided to pick this up again and have been making some changes.<p>- I've generated almost 3000 questions.<p>- I initially only let signed up users generate questions due to cost
concerns. Since 3.5 is much cheaper, I've opened up the question
generation for everybody.<p>- I built a prompt comparison tool so I could tweak the prompt to get
better responses.<p>- I've added some more data to the questions. This includes a more free form explanation to the correct answer (separate from the references),
and categories for all questions.<p>- I've been working on a question improvement process. This means I
collect issues, generate new variations of the question and let people
vote on them. Voting and question improvement is currently only available
to signed in users.<p>I have many more ideas I'd like to explore, but I would appreciate your feedback and would be happy to answer any questions about the site or its development.<p>You can access the references by pressing the explanation text when
you've answered a question correctly.
Show HN: MindPop – Great Lectures Set to Ambient
Show HN: MindPop – Great Lectures Set to Ambient
Show HN: MindPop – Great Lectures Set to Ambient
Show HN: Magic Happens – let ChatGPT manage your Kubernetes cluster
I built this kubernetes operator as a proof of concept this weekend.. It only has a single required item in the spec, a freeform description field. The operator will use chatgpt to generate a spec, then immediately apply it to the cluster. It makes some attempt to correct errors if there's a problem with the syntax. It will leave additional comments, questions or instructions in the status field of the object. I built this in a weekend and it's still quite unrefined. It's in no way production ready, please don't use it for anything real, but it works better than you would think, considering how simple it is. If you're going to use it, run it on a local cluster like 'kind'.<p>Some descriptions to try:<p>* install a redis namespace with a redis cluster and a service in it
* create an argocd application in the argocd namespace to install velero.
* write a python script that lists all ec2 instances in us-east-1, and run it as a k8s job with the aws credentials already saved in the default namespace..<p>a somewhat longer description that also worked:
given the following spec:
---
kind: MagicHappens
apiVersion: gptmagic.io/v1
metadata:
name: foo
spec:
description: this is a freeform description field that will be sent to chatgpt to generate kubernetes resources
dryRun: false
---
Can you create more magic happens resources, each of which describes an argocd application that needs to be created to install a helm chart for one of the standard cluster addons that need to be installed on a cluster for it to be production ready. The description should be be freeform text like the following: "Create an argocd application in the argocd namespace to install istio from the helm chart with all the defaults" or "Create an argocd application in the argocd namespace to install prometheus and grafana, with an ingress enabled for grafana". Be very thorough and included as many apps that might be needed for a prod ready cluster using industry standard CNCF projects if possible.<p>(this produces a list of additional resources for the operator, which the operator then goes on to create argocd applications for -- it also left comments with instructions on one of the resources for how configure it to work with your cloud provider<p>something to note is that since you can run arbitrary containers with arbitrary commands, and chatgpt can write arbitrary code, you don't have to limit yourself to k8s stuff.. if you've got saas credentials on the cluster, you can just tell it to run a python script as a job to do whatever you want.<p>Since most people are cowards, there's a dryRun field that defaults to true, so it only attaches the spec to the object.<p>It is <i>scary</i> how well this works.
Show HN: Magic Happens – let ChatGPT manage your Kubernetes cluster
I built this kubernetes operator as a proof of concept this weekend.. It only has a single required item in the spec, a freeform description field. The operator will use chatgpt to generate a spec, then immediately apply it to the cluster. It makes some attempt to correct errors if there's a problem with the syntax. It will leave additional comments, questions or instructions in the status field of the object. I built this in a weekend and it's still quite unrefined. It's in no way production ready, please don't use it for anything real, but it works better than you would think, considering how simple it is. If you're going to use it, run it on a local cluster like 'kind'.<p>Some descriptions to try:<p>* install a redis namespace with a redis cluster and a service in it
* create an argocd application in the argocd namespace to install velero.
* write a python script that lists all ec2 instances in us-east-1, and run it as a k8s job with the aws credentials already saved in the default namespace..<p>a somewhat longer description that also worked:
given the following spec:
---
kind: MagicHappens
apiVersion: gptmagic.io/v1
metadata:
name: foo
spec:
description: this is a freeform description field that will be sent to chatgpt to generate kubernetes resources
dryRun: false
---
Can you create more magic happens resources, each of which describes an argocd application that needs to be created to install a helm chart for one of the standard cluster addons that need to be installed on a cluster for it to be production ready. The description should be be freeform text like the following: "Create an argocd application in the argocd namespace to install istio from the helm chart with all the defaults" or "Create an argocd application in the argocd namespace to install prometheus and grafana, with an ingress enabled for grafana". Be very thorough and included as many apps that might be needed for a prod ready cluster using industry standard CNCF projects if possible.<p>(this produces a list of additional resources for the operator, which the operator then goes on to create argocd applications for -- it also left comments with instructions on one of the resources for how configure it to work with your cloud provider<p>something to note is that since you can run arbitrary containers with arbitrary commands, and chatgpt can write arbitrary code, you don't have to limit yourself to k8s stuff.. if you've got saas credentials on the cluster, you can just tell it to run a python script as a job to do whatever you want.<p>Since most people are cowards, there's a dryRun field that defaults to true, so it only attaches the spec to the object.<p>It is <i>scary</i> how well this works.
Show HN: Magic Happens – let ChatGPT manage your Kubernetes cluster
I built this kubernetes operator as a proof of concept this weekend.. It only has a single required item in the spec, a freeform description field. The operator will use chatgpt to generate a spec, then immediately apply it to the cluster. It makes some attempt to correct errors if there's a problem with the syntax. It will leave additional comments, questions or instructions in the status field of the object. I built this in a weekend and it's still quite unrefined. It's in no way production ready, please don't use it for anything real, but it works better than you would think, considering how simple it is. If you're going to use it, run it on a local cluster like 'kind'.<p>Some descriptions to try:<p>* install a redis namespace with a redis cluster and a service in it
* create an argocd application in the argocd namespace to install velero.
* write a python script that lists all ec2 instances in us-east-1, and run it as a k8s job with the aws credentials already saved in the default namespace..<p>a somewhat longer description that also worked:
given the following spec:
---
kind: MagicHappens
apiVersion: gptmagic.io/v1
metadata:
name: foo
spec:
description: this is a freeform description field that will be sent to chatgpt to generate kubernetes resources
dryRun: false
---
Can you create more magic happens resources, each of which describes an argocd application that needs to be created to install a helm chart for one of the standard cluster addons that need to be installed on a cluster for it to be production ready. The description should be be freeform text like the following: "Create an argocd application in the argocd namespace to install istio from the helm chart with all the defaults" or "Create an argocd application in the argocd namespace to install prometheus and grafana, with an ingress enabled for grafana". Be very thorough and included as many apps that might be needed for a prod ready cluster using industry standard CNCF projects if possible.<p>(this produces a list of additional resources for the operator, which the operator then goes on to create argocd applications for -- it also left comments with instructions on one of the resources for how configure it to work with your cloud provider<p>something to note is that since you can run arbitrary containers with arbitrary commands, and chatgpt can write arbitrary code, you don't have to limit yourself to k8s stuff.. if you've got saas credentials on the cluster, you can just tell it to run a python script as a job to do whatever you want.<p>Since most people are cowards, there's a dryRun field that defaults to true, so it only attaches the spec to the object.<p>It is <i>scary</i> how well this works.
Show HN: Let your body be the gamepad using a webcam
Hi HN,<p>I made a keyboard emulator that tracks your body pose and emits the key presses accordingly.<p>My main motivation was to make my kids move more on rainy days. I already made a couple of mini-games using the body pose [1-3], and those were definitely fun to make and play! However, once the kids learned the tricks, they got bored. I could only produce that much content myself, and soon realized that I lack time for churning out games.<p>Finally, I decided to tap into an endless pool of PC games, preferrably simple and less addictive ones like the Gameboy and DOS games.<p>This project has been also inspired by [4], which has been featured on HN recently.<p>[1]: <a href="https://github.com/mristin/pop-that-balloon-desktop">https://github.com/mristin/pop-that-balloon-desktop</a><p>[2]: <a href="https://github.com/mristin/cactusss-desktop">https://github.com/mristin/cactusss-desktop</a><p>[3]: <a href="https://github.com/mristin/ski-leu-desktop/">https://github.com/mristin/ski-leu-desktop/</a><p>[4]: <a href="https://github.com/everythingishacked/Semaphore">https://github.com/everythingishacked/Semaphore</a><p>Edit: clarified title; layout of references
Show HN: Let your body be the gamepad using a webcam
Hi HN,<p>I made a keyboard emulator that tracks your body pose and emits the key presses accordingly.<p>My main motivation was to make my kids move more on rainy days. I already made a couple of mini-games using the body pose [1-3], and those were definitely fun to make and play! However, once the kids learned the tricks, they got bored. I could only produce that much content myself, and soon realized that I lack time for churning out games.<p>Finally, I decided to tap into an endless pool of PC games, preferrably simple and less addictive ones like the Gameboy and DOS games.<p>This project has been also inspired by [4], which has been featured on HN recently.<p>[1]: <a href="https://github.com/mristin/pop-that-balloon-desktop">https://github.com/mristin/pop-that-balloon-desktop</a><p>[2]: <a href="https://github.com/mristin/cactusss-desktop">https://github.com/mristin/cactusss-desktop</a><p>[3]: <a href="https://github.com/mristin/ski-leu-desktop/">https://github.com/mristin/ski-leu-desktop/</a><p>[4]: <a href="https://github.com/everythingishacked/Semaphore">https://github.com/everythingishacked/Semaphore</a><p>Edit: clarified title; layout of references
Show HN: Mousedroid – Use your Android phone as a mouse and keyboard
Show HN: Mousedroid – Use your Android phone as a mouse and keyboard
Show HN: Mousedroid – Use your Android phone as a mouse and keyboard
Show HN: TypeAPI – An OpenAPI alternative optimized for code generation
Show HN: TypeAPI – An OpenAPI alternative optimized for code generation
Show HN: TypeAPI – An OpenAPI alternative optimized for code generation
Show HN: A curated list of remote jobs
Show HN: What Should I Cook – Cooking Ideas
Hey all,<p>I made this prototype called What Should I Cook to help me think of what to cook.<p>It is still a WIP but I feel comfortable sharing it now. I am still adding recipes and some features!<p>Please try it out and let me know what you think.
Show HN: SaaS for making software documentation less annoying
As a developer, I absolutely despise writing documentation. That's why I've started building software that would make it a more bearable experience.<p>Our current features include the following:
- An AI assistant that lets you talk with your documentation.
Ask questions like: How do I do thing X? What is the method for fetching a model from the database? And the AI assistant will answer.<p>- Developers can choose their preferred way of writing: online WYSIWYG editor or writing to markdown files using their favorite editor and then synchronizing with the system via CLI.<p>- Tagging relevant documentation pages with the corresponding code files. Git integration will let you know when one of those tagged code files changes and lets you know the documentation needs an update.<p>I'm sure the people in HN have many more pain points they are experiencing with their documentation software, and we would love to hear them. Any feature suggestions are more than welcome.