I got so upset with Docusign being too expensive and unfair, that I quit my last startup to build a new one. I built a complete platform over the past 3 years, that doesn't require a subscription and you only pay for what you send. Give it a go if you need to send a document that needs to be signed. https://goodsign.io
Ask HN: What are you working on (September 2024)?
541–550 of 1001 posts
Re: Ask HN: What are you working on (September 2024)?
#542- media platform at https://zymo.tv
Re: Ask HN: What are you working on (September 2024)?
#543I've take the different approach in building this system as it is traditional MVC architecture in Node with Express, Postgres, Pug, etc. as technologies.
Re: Ask HN: What are you working on (September 2024)?
#544I'm working on a service that generates SVG vector graphics using generative AI. This is something current models struggle with but I've always wanted high quality vector graphics for my projects. https://vectorart.ai
Re: Ask HN: What are you working on (September 2024)?
#545Right now I have 3/7 chapters ready and I am working on the 4th right now. It will be about Deno on the CLI, learning about the permission model, getting user input etc. creating a small CLI application as a single file binary (deno compile)
After abandoning a lot of smaller side projects for years now I wanted to push through and ship something that is not just some hours of work (read <3-4 hours). I learnt that I have a lot of fun writing about and trying to teach things that I'm interested in.
Re: Ask HN: What are you working on (September 2024)?
#546I've been working on https://saasufy.com/ - No-code/low-code serverless platform for building web applications. The idea is that if you're a highly experienced senior developer, it should feel oddly familiar. It aims to address every possible concern that a senior developer might have when building a web application. Avoiding footguns is one of the core principles behind it. It aims to strike the ideal balance betwee…
Re: Ask HN: What are you working on (September 2024)?
#547I have a few functional cards for now, note, social media, article, quote.
Re: Ask HN: What are you working on (September 2024)?
#548I got so upset with Docusign being too expensive and unfair, that I quit my last startup to build a new one. I built a complete platform over the past 3 years, that doesn't require a subscription and you only pay for what you send. Give it a go if you need to send a document that needs to be signed. https://goodsign.io
I have been looking for something like this, but the pricing is too high for my use case. It needs to be comparable to just printing the document and signing with pens, or it's not generally worth it to me. It seems wild to me that something that in principal could be basically free costs so much.
What do web apps like DocuSign offer that Preview doesn’t?
Re: Ask HN: What are you working on (September 2024)?
#549Trying to figure out a bizarre performance drop in a merge sort I wrote for one of those daily coding problems. https://bruceediger.com/posts/mergesort-investigation-1/ It seems that adding one node to a linked list causes a repeatable performance drop. That is, linked lists of say 2^21 nodes sort faster than lists of 2^21 + 1 nodes.
1) at/around powers of two
2) regardless whether using GC or preallocating
makes me think its got to do with cache sizes. For example, the M2 macbook has around 16MiB of cache, which gives you approximately 2 million ~ 2^20 nodes where each node has a 64 bit number and a 64 bit pointer.The jumps in your measurements could be related to the cache hierarchy. On Linux (probably macOS too) you should be able to run "perf stat ./mergesort" to show you the hitrate of your CPU's caches.
I'd be interested in a follow-up post :)
Re: Ask HN: What are you working on (September 2024)?
#550I got so upset with Docusign being too expensive and unfair, that I quit my last startup to build a new one. I built a complete platform over the past 3 years, that doesn't require a subscription and you only pay for what you send. Give it a go if you need to send a document that needs to be signed. https://goodsign.io
Great job all the same, this is nice.