The best Hacker News stories from Show from the past day

Go back

Latest posts:

Show HN: Blogs.hn – tiny blog directory

Like others on here, I was inspired by the "personal blogs" post :)<p>[0] <a href="https://news.ycombinator.com/item?id=36575081">https://news.ycombinator.com/item?id=36575081</a><p>In proper HN fashion, the site is open-source and requires no JS!<p>There's instructions on how to add/edit a blog on the Github README.<p>[1] <a href="https://github.com/surprisetalk/blogs.hn">https://github.com/surprisetalk/blogs.hn</a><p>Note that your blog might appear in blogs.json, but not on the site! Right now I'm using the following code to filter out blogs. Your blog might appear if you add more metadata:<p><pre><code> if ( 3 > 0 + !!blog.title + (blog.desc.length > 40) + !!blog.about + !!blog.now + !!blog.feed + 3 * (blog.hn.length > 1) ) continue; </code></pre> As I mention on the /about page, if you don't already have a blog, I recently made a minimal static site generator! It's easier than ever to begin your writing journey :)<p>[2] <a href="https://github.com/surprisetalk/worstpress">https://github.com/surprisetalk/worstpress</a>

Show HN: OPML list of Hacker News Users Personal Blogs

Show HN: OPML list of Hacker News Users Personal Blogs

Show HN: Software Developer salaries in Switzerland: average and percentiles

Show HN: Pytheus – Python Prometheus client built with multiprocessing in mind

Sharing this side project of mine, if you had issues while using multiprocess in python when collecting metrics this might interest you :)<p>The library offers the same interface between single process & multi process, the only difference is doing a function call specifying which backend to use and everything will work out of the box. It supports default labels & partial labels so that you can build your child instances incrementally. It strives to be flexible & well documented.<p>There is also an experimental backend for it written in Rust as a way to support asyncio applications, more in the docs!

Show HN: b2bsaaskit.com

Show HN: Ngnr.club – A link-in-bio service for engineers

Show HN: Banger.show – Create colorful visuals for your songs in seconds

I made an app for music producers to tease their music in a fancy way. Something that looks better than this: <a href="https://twitter.com/eprombeats/status/1647072160547246081" rel="nofollow noreferrer">https://twitter.com/eprombeats/status/1647072160547246081</a>

Show HN: Banger.show – Create colorful visuals for your songs in seconds

I made an app for music producers to tease their music in a fancy way. Something that looks better than this: <a href="https://twitter.com/eprombeats/status/1647072160547246081" rel="nofollow noreferrer">https://twitter.com/eprombeats/status/1647072160547246081</a>

Show HN: LineSelect, shell utility to interactively select lines in a pipeline

Allows you to "pause" a shell pipeline to interactively select a subset of lines to proceed with. I've always wanted a tool like this, as it effectively combines the best of shell pipes (easy to automate) and visual file managers (easy to make selections). Now that I have it I can't believe a tool like this is not already part of the standard set of shell utilities. There are so many situations where it is useful.<p>Tested on Linux but should also work on MacOS.<p>Also: please help me come up with a better name!

Show HN: LineSelect, shell utility to interactively select lines in a pipeline

Allows you to "pause" a shell pipeline to interactively select a subset of lines to proceed with. I've always wanted a tool like this, as it effectively combines the best of shell pipes (easy to automate) and visual file managers (easy to make selections). Now that I have it I can't believe a tool like this is not already part of the standard set of shell utilities. There are so many situations where it is useful.<p>Tested on Linux but should also work on MacOS.<p>Also: please help me come up with a better name!

Show HN: LineSelect, shell utility to interactively select lines in a pipeline

Allows you to "pause" a shell pipeline to interactively select a subset of lines to proceed with. I've always wanted a tool like this, as it effectively combines the best of shell pipes (easy to automate) and visual file managers (easy to make selections). Now that I have it I can't believe a tool like this is not already part of the standard set of shell utilities. There are so many situations where it is useful.<p>Tested on Linux but should also work on MacOS.<p>Also: please help me come up with a better name!

Show HN: I made a puzzle game with Three.js

A while ago I discovered three.js, a JavaScript library to manipulate 3D objects. It looked really interesting, but I had no real need for it...<p>To change that I recently challenged myself to make one 3D web game per month with three.js. And I just release game #2, a puzzle game called Cuboid, and you can try it here: <a href="https://www.thomasfriday.com/cuboid/" rel="nofollow noreferrer">https://www.thomasfriday.com/cuboid/</a><p>Please let me know if you have any questions or feedback. Thanks!

Show HN: I made a puzzle game with Three.js

A while ago I discovered three.js, a JavaScript library to manipulate 3D objects. It looked really interesting, but I had no real need for it...<p>To change that I recently challenged myself to make one 3D web game per month with three.js. And I just release game #2, a puzzle game called Cuboid, and you can try it here: <a href="https://www.thomasfriday.com/cuboid/" rel="nofollow noreferrer">https://www.thomasfriday.com/cuboid/</a><p>Please let me know if you have any questions or feedback. Thanks!

Show HN: I made a puzzle game with Three.js

A while ago I discovered three.js, a JavaScript library to manipulate 3D objects. It looked really interesting, but I had no real need for it...<p>To change that I recently challenged myself to make one 3D web game per month with three.js. And I just release game #2, a puzzle game called Cuboid, and you can try it here: <a href="https://www.thomasfriday.com/cuboid/" rel="nofollow noreferrer">https://www.thomasfriday.com/cuboid/</a><p>Please let me know if you have any questions or feedback. Thanks!

Show HN: CodePerfect, a fast, lightweight IDE for Go

Tell HN: People forget that you can stick any data at the end of a bash script

This is a neat trick I've used to write self-extracting software or scripts that extract files from archives by just using<p><pre><code> tail -c <number of bytes for the binary> $0 </code></pre> All you have to do is make sure you append an explicit 'exit' to the end of your program before your new 'data section', so that bash won't parse any of the 'data section'.<p>One thing to bear in mind is that if you append binary data, it will be corrupted if you save it in most text editors so when I want to make changes I just delete all the binary and reappend it.

Show HN: Hacker News user blogroll

I saw this [0] pretty cool thread by user revskill, and wanted a quicker way to search through it, but also to keep them all in one place so I can read them at my leisure whenever I get time.<p>Right now is like 60 lines of Ruby using Nokogiri, but I will certainly look into it further down the line and improve the list.<p>There's a cronjob checking the thread every 12 hours but I will eventually shut that down and it will become static after that.<p>There are some really awesome blogs in there. I really recommend going through the list, it made my day.<p>[0] "Could you share your personal blog here". <a href="https://news.ycombinator.com/item?id=36575081">https://news.ycombinator.com/item?id=36575081</a>

Show HN: Hacker News user blogroll

I saw this [0] pretty cool thread by user revskill, and wanted a quicker way to search through it, but also to keep them all in one place so I can read them at my leisure whenever I get time.<p>Right now is like 60 lines of Ruby using Nokogiri, but I will certainly look into it further down the line and improve the list.<p>There's a cronjob checking the thread every 12 hours but I will eventually shut that down and it will become static after that.<p>There are some really awesome blogs in there. I really recommend going through the list, it made my day.<p>[0] "Could you share your personal blog here". <a href="https://news.ycombinator.com/item?id=36575081">https://news.ycombinator.com/item?id=36575081</a>

Show HN: Hacker News user blogroll

I saw this [0] pretty cool thread by user revskill, and wanted a quicker way to search through it, but also to keep them all in one place so I can read them at my leisure whenever I get time.<p>Right now is like 60 lines of Ruby using Nokogiri, but I will certainly look into it further down the line and improve the list.<p>There's a cronjob checking the thread every 12 hours but I will eventually shut that down and it will become static after that.<p>There are some really awesome blogs in there. I really recommend going through the list, it made my day.<p>[0] "Could you share your personal blog here". <a href="https://news.ycombinator.com/item?id=36575081">https://news.ycombinator.com/item?id=36575081</a>

< 1 2 3 ... 386 387 388 389 390 ... 854 855 856 >