The best Hacker News stories from Show from the past week

Go back

Latest posts:

Show HN: I made a free transcription service powered by Whisper AI

Show HN: I made a free transcription service powered by Whisper AI

Show HN: Tweek Calendar – A minimal weekly planner and to-do list

Show HN: I am building a new Python library to read/write PDF files

Hi HN! This is my pet project, written from scratch because there is so much to discover and learn in the process. The focus is on simplicity and incremental updates. Progress is slow because I do not have much spare time to work on this, but I would love to hear some feedback. Regards

I record myself on audio 24x7 and use an AI to process the information

Show HN: DivestOS – Long-term support for end-of-life Android devices

Show HN: Open-source alternative to Retool

Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.

Hey HN,<p>Over the past two years, I've been building Upbase, an all-in-one PM tool.<p>I've tried so many project management tools over the years (Trello, Asana, ClickUp, Teamwork, Wrike, Monday, etc.) but they've all fallen short. Most of them are overly complicated and painful to use. Some others, like Trello, are too limited for my needs.<p>Most importantly, most of these tools tend to be focused on team collaboration and completely ignore personal productivity.<p>They are useful for organizing my work, but not great at helping me stay focused to get things done.<p>That's why I decided to build Upbase.<p>I try to make it clean and simple, without all the bells and whistles. Apart from team collaboration, I added many personal productivity features, including Weekly/Daily planner, Time blocking, Pomodoro Timer, Daily Journal, etc. so I don't need another to-do list app.<p>Now I can use Upbase to collaborate with my team AND manage your personal stuff at the same time, without all the bloat.<p>If these resonate with you, then give Upbase a try. It has a Free Forever plan though.<p>Let me know if you have any feedback or questions!

Show HN: I built my own PM tool after trying Trello, Asana, ClickUp, etc.

Hey HN,<p>Over the past two years, I've been building Upbase, an all-in-one PM tool.<p>I've tried so many project management tools over the years (Trello, Asana, ClickUp, Teamwork, Wrike, Monday, etc.) but they've all fallen short. Most of them are overly complicated and painful to use. Some others, like Trello, are too limited for my needs.<p>Most importantly, most of these tools tend to be focused on team collaboration and completely ignore personal productivity.<p>They are useful for organizing my work, but not great at helping me stay focused to get things done.<p>That's why I decided to build Upbase.<p>I try to make it clean and simple, without all the bells and whistles. Apart from team collaboration, I added many personal productivity features, including Weekly/Daily planner, Time blocking, Pomodoro Timer, Daily Journal, etc. so I don't need another to-do list app.<p>Now I can use Upbase to collaborate with my team AND manage your personal stuff at the same time, without all the bloat.<p>If these resonate with you, then give Upbase a try. It has a Free Forever plan though.<p>Let me know if you have any feedback or questions!

Show HN: Wa-tunnel – HTTP Tunneling through Whatsapp

Side project tunneling a TCP port through WhatsApp, can be useful on airplanes or any WiFi/carrier that has unlimited social network data limits. Appreciate feedback :)

Show HN: Wa-tunnel – HTTP Tunneling through Whatsapp

Side project tunneling a TCP port through WhatsApp, can be useful on airplanes or any WiFi/carrier that has unlimited social network data limits. Appreciate feedback :)

Show HN: A little side project, a watercolor art generator

Hi HN - this is a little side project I threw together. Some implementation details: image processing is all done with headless GIMP (running inside a Docker container) through its built-in Python API. It's _very_ slow (about 50 seconds/image), and currently it processes exactly one image at a time. The website is built with NextJS; payments are processed by Stripe.<p>I've had the best results with pictures of houses, although certain photos of people or nature can look neat, too. (For example: <a href="https://brushify.art/s/ruYmQWk" rel="nofollow">https://brushify.art/s/ruYmQWk</a>, original photo from <a href="https://en.wikipedia.org/wiki/Pillars_of_Creation" rel="nofollow">https://en.wikipedia.org/wiki/Pillars_of_Creation</a>.) The effect obscures the edges of the photo, so images with plenty of margin around the subject work best.<p>Something I'd like to play around with is swapping the GIMP script for an AI-based process (maybe using something like Stable Diffusion?), with the goal of generating images that look more handmade (something like these: <a href="https://www.etsy.com/ca/search?q=watercolor+house" rel="nofollow">https://www.etsy.com/ca/search?q=watercolor+house</a>). I have exactly zero AI experience though, so there would be a bit of a learning curve.<p>Would love any thoughts or critiques!<p>----<p>edit: remove unrelated details

Show HN: A little side project, a watercolor art generator

Hi HN - this is a little side project I threw together. Some implementation details: image processing is all done with headless GIMP (running inside a Docker container) through its built-in Python API. It's _very_ slow (about 50 seconds/image), and currently it processes exactly one image at a time. The website is built with NextJS; payments are processed by Stripe.<p>I've had the best results with pictures of houses, although certain photos of people or nature can look neat, too. (For example: <a href="https://brushify.art/s/ruYmQWk" rel="nofollow">https://brushify.art/s/ruYmQWk</a>, original photo from <a href="https://en.wikipedia.org/wiki/Pillars_of_Creation" rel="nofollow">https://en.wikipedia.org/wiki/Pillars_of_Creation</a>.) The effect obscures the edges of the photo, so images with plenty of margin around the subject work best.<p>Something I'd like to play around with is swapping the GIMP script for an AI-based process (maybe using something like Stable Diffusion?), with the goal of generating images that look more handmade (something like these: <a href="https://www.etsy.com/ca/search?q=watercolor+house" rel="nofollow">https://www.etsy.com/ca/search?q=watercolor+house</a>). I have exactly zero AI experience though, so there would be a bit of a learning curve.<p>Would love any thoughts or critiques!<p>----<p>edit: remove unrelated details

Show HN: All-SVG websites with complex animation

I created a system for building SVG-only websites called Svija. But, though the content was nice, the sites felt too static — a bit flat and lifeless. Even a basic HTML website has mouseover effects, but SVG doesn't have them for free the way HTML does.<p>I wanted to find an easy way to recreate mouseover functionality in SVG. For my first try, I labeled objects in Adobe Illustrator:<p><pre><code> • linkSomeName: an invisible link <rect> (over the link text) • mouseoverSomeName: a <g> mouseover decoration (usually bold or colored text, or an underline), initially hidden </code></pre> The two objects are connected by "SomeName", and a javascript event listener attached to the link object would change the mouseover object's CSS display from "none" to "block".<p>Once I had used it for a bit, I thought that it might be nicer if the effects faded in and out. So, I tried animating the transitions with GSAP. It immediately became clear that there was enormous potential to manage complex animations visually, and I worked over the summer to create Svija Vibe.<p>It's all based on linking Adobe Illustrator object names to the GSAP script. Most basic transformations already work well but there's a lot I'll be able to do to make it even simpler to use.<p>I'm really excited about it! I've only just started but I have a million ideas about how to make it more capable — the big one being the ability to chain animations together.<p>There's a support document at <a href="https://tech.svija.love/how/animation" rel="nofollow">https://tech.svija.love/how/animation</a> that gives more detail about exactly what can be done.<p>Svija Vibe is free. It works with Svija, which is also free, but you do need to create an account to use it (Maconly, at least for the next three months).<p><a href="https://news.ycombinator.com/item?id=29430368" rel="nofollow">https://news.ycombinator.com/item?id=29430368</a> · previous HN about Svija 2022-12-03<p><a href="https://news.ycombinator.com/item?id=30454324" rel="nofollow">https://news.ycombinator.com/item?id=30454324</a> · previous HN about animation 2022-02-24<p><a href="https://greensock.com" rel="nofollow">https://greensock.com</a> · GSAP

Show HN: Cozo – new Graph DB with Datalog, embedded like SQLite

Hi HN, I have been making this Cozo database since half a year ago, and now it is ready for public release.<p>My initial motivation is that I want a graph database. Lightweight and easy to use, like SQLite. Powerful and performant, like Postgres. I found none of the existing solutions good enough.<p>Deciding to roll my own, I need to choose a query language. I am familiar with Cypher but consider it not much of an improvement over CTE in SQL (Cypher is sometimes notationally more convenient, but not more expressive). I like Gremlin but would prefer something more declarative. Experimentations with Datomic and its clones convinced me that Datalog is the way to go.<p>Then I need a data model. I find the property graph model (Neo4j, etc.) over-constraining, and the triple store model (Datomic, etc.) suffering from inherent performance problems. They also lack the most important property of the relational model: being an algebra. Non-algebraic models are not very composable: you may store data as property graphs or triples, but when you do a query, you always get back relations. So I decided to have relational algebra as the data model.<p>The end result, I now present to you. Let me know what you think, good or bad, and I'll do my best to address them. This is the first time that I use Rust in a significant project, and I love the experience!

Show HN: textshader.com

TLDR: Click the link to see some cool visualizations, refresh a few times for random examples, and try editing some of the code yourself.<p>This is a small weekend project of mine inspired by shadertoy.com<p>It's a static single-page site hosted on GitHub pages so the website design is pretty barebones. I'm not a web developer so I mainly wanted to create a Cool Thing with my free time and not have to learn tons of front-end to do it.<p>I'd love to hear what people think about it and please post or send me any shaders you make! You can use the link button in the bottom right to share.<p>I hope that this gets more people interested in shaders because GPU programming is a pretty different paradigm and learning it has made me a better software engineer even though my current job doesn't touch it. That said, textshader only runs normal Javascript on the CPU so think of it like a simplified sandbox and not the real thing. I'd highly recommend checking out shadertoy to level up to the real deal too!

Show HN: Feep! search, an independent search engine for programmers

Hi HN! This started late last year as an afternoon project to play around with ElasticSearch, and then I kept thinking of new features I wanted to add. I still have a lot of things I want to build, but now seemed like a good time to put it out there: even if the results aren’t nearly the quality I’d like, I’ve still found it useful and I want to show it off!<p>I’ve been working on it since September 2021, but only in fits and starts. The entire thing runs on a computer in my living room (there’s a picture on the About page); I haven’t done any load testing so we’ll see how it holds up.

Show HN: Reveddit.com: Improving online discourse with transparent moderation

Hi HN, this talk represents a summary of my work over the last four years on addressing shadow moderation with Reveddit.<p>Let me know what you think, good or bad, and I'll do my best to answer.<p>What is shadow moderation? It is any action taken against your content that you aren't told about and aren't able to detect while logged in. I focus on Reddit comments since every single removal is shadow removed— removed comments are shown to you as if they're not.<p>You can try this for yourself on,<p><a href="https://www.reveddit.com" rel="nofollow">https://www.reveddit.com</a><p><a href="https://www.reddit.com/r/CantSayAnything/about/sticky/" rel="nofollow">https://www.reddit.com/r/CantSayAnything/about/sticky/</a><p>Your content will be removed, you won't be told, and it will be shown to you as if it's publicly visible.

Show HN: Reveddit.com: Improving online discourse with transparent moderation

Hi HN, this talk represents a summary of my work over the last four years on addressing shadow moderation with Reveddit.<p>Let me know what you think, good or bad, and I'll do my best to answer.<p>What is shadow moderation? It is any action taken against your content that you aren't told about and aren't able to detect while logged in. I focus on Reddit comments since every single removal is shadow removed— removed comments are shown to you as if they're not.<p>You can try this for yourself on,<p><a href="https://www.reveddit.com" rel="nofollow">https://www.reveddit.com</a><p><a href="https://www.reddit.com/r/CantSayAnything/about/sticky/" rel="nofollow">https://www.reddit.com/r/CantSayAnything/about/sticky/</a><p>Your content will be removed, you won't be told, and it will be shown to you as if it's publicly visible.

Top 70000 educational YouTube channels in 20 languages by category

< 1 2 3 ... 60 61 62 63 64 ... 122 123 124 >