HN user

devtailz

482 karma

Building https://kaizen.place https://engramhq.xyz

Writing https://devtails.xyz

Posts62
Comments37
View on HN
news.ycombinator.com 8mo ago

Tell HN: Cursor charged 19 subscriptions, won't refund

devtailz
17pts7
www.worldometers.info 1y ago

All People on 1 Page

devtailz
3pts0
devtails.xyz 2y ago

What Does GitHub for Music Look Like?

devtailz
2pts1
news.ycombinator.com 2y ago

Ask HN: Does Compiling to WebAssembly Prevent Issues with Unsafe Languages?

devtailz
2pts5
news.ycombinator.com 2y ago

Ask HN: Are you more likely to use something because it is open source?

devtailz
18pts18
devtails.xyz 2y ago

I Paid for an Award to Prove the Internet 2.0 Conference Is a Scam

devtailz
4pts3
devtails.xyz 2y ago

Ruffle.rs Breathed New Life into My First Gaming Creation

devtailz
3pts0
www.theverge.com 3y ago

All posts on r/pics and r/GIFs must now be about John Oliver

devtailz
52pts3
adam.xyzdigital.com 3y ago

Hey Jarvis, What Is Writer's Block?

devtailz
1pts0
kaizen.place 3y ago

Show HN: Kaizen, music updated over time like software

devtailz
6pts6
kaizen.place 3y ago

Music NFTs will not be the main source of income for artists

devtailz
2pts0
engineering.fb.com 3y ago

Why xHE-AAC is being embraced at Meta

devtailz
61pts58
news.ycombinator.com 3y ago

Ask HN: How Long Does a Deployment Take at Your Company

devtailz
34pts40
devtails.xyz 3y ago

I Am Struggling to Get Behind Next.js and Vercel

devtailz
6pts3
share.hsforms.com 3y ago

ChatGPT Conveniently “At Capacity” After Unveiling Paid Plan

devtailz
1pts1
news.ycombinator.com 3y ago

Ask HN: Twitter Employees, How Have Things Changed from Your Perspective?

devtailz
20pts2
devtails.xyz 3y ago

Am I Overreacting? Or is React Over-Reacting?

devtailz
3pts2
twitter.com 3y ago

GitHub Text Editor Making Request on Every Key Press Slowing to a Crawl

devtailz
1pts0
devtails.xyz 3y ago

Accelerated Reader: My Favorite Software as a Second Grader

devtailz
1pts0
devtails.xyz 3y ago

Building a Web Browser with SDL in C++

devtailz
4pts0
github.com 3y ago

Show HN: Offline First Notes Web Application

devtailz
4pts1
devtails.xyz 3y ago

We Are All Creative Now

devtailz
2pts0
news.microsoft.com 3y ago

Benefits of Xbox and Activision-Blizzard

devtailz
2pts0
devtails.xyz 3y ago

Switching to C over 'Modern' Programming Languages

devtailz
2pts2
devtails.xyz 3y ago

Five Positive Interactions for Every Negative One

devtailz
1pts0
devtails.xyz 3y ago

VHS Is Back (Confessions of a Former Tape Junkie)

devtailz
2pts0
devtails.xyz 4y ago

How Can a 10 Second Video Take All Day?

devtailz
2pts0
devtails.xyz 4y ago

Old Movies Are Garbage (In the End)

devtailz
2pts0
devtails.xyz 4y ago

Building My Own App to Enhance Language Learning

devtailz
2pts0
news.ycombinator.com 4y ago

Ask HN: What Is the MAU and DAU of HN?

devtailz
2pts1

Been through a few iterations now...

Started with just recording the canvas using MediaRecorder (https://devtails.xyz/@adam/how-to-record-html-canvas-using-m...). This was super simple and I wish could have left it at that...But unfortunately Chrome gives you a webm file back and IG doesn't let you upload webm.

So then I went the route of ffmpeg.wasm in the browser to convert the webm to mp4.

I've finally landed on an approach that uses the WebCodecs API and mp4-muxer library (https://devtails.xyz/adam/how-to-save-html-canvas-to-mp4-usi...).

*upfront cost

Nothing requires an artist to receive tips through the platform, so if they preferred buymeacoffee they can use that. We will be adding additional features to our Pro plan that will enhance the experience on top of bringing the fees to a comparable 5%.

Again, still early days. Appreciate the feedback, we will work with artists on the platform to find what works well for everyone.

Thank you for the feedback. Our free plan is intended to allow new artists to receive tips without any cost to them. As soon as someone starts consistently receiving money through the platform our intent is that they move to the $8 / month Pro plan bringing the fee down to 5%.

Bandcamp, for comparison, charges a 15% fee.

We are still early days and will continue to solicit feedback on our pricing model.

My favourite win of my development blog is stopping myself from doing the same project multiple times. I used to tinker a lot, but wouldn’t document anything and so I often had to start all over when I picked that project back up.

Writing forces me to break things down into manageable chunks. I’ve seen much more consistent progress this way.

https://devtails.xyz

I don't think I can edit the post, but I agree. Though many have kind of described their process which gives somewhat of a picture. If anything it's been interesting hearing different people's definitions of deployment.

I would probably condense my definition to how quickly can you go from new code added to someone seeing that code running (in web dev terms essentially available on some URL). So even if you had different layers of pipeline, the build artifact stage would still be included, because you can't deploy without it.

Hey Lee, thanks for the response.

I'm still getting familiar with all the different tools involved. You mention Turbopack as something that will speed up production builds, but I'm seeing similar build times (using npm run build) with that demo project (npx create-next-app --example with-turbopack) as I was with the normal Next.js toolchain.

Is there any way to have the production build re-use build artifacts from a previous build so that my 1 line code change doesn't trigger an entire rebuild?

I appreciate the thoroughness of your response! In my journey to writing this article I definitely stumbled on your blog (so cool to "bump" into the author on HN).

I'll update the article with a production build. I originally planned to do it, but then copped out (partially because I wasn't sure how to, so thanks for the pointers).

I agree with your final statment, but have begun to wonder whether there's a simple enough way to accomplish the same goals, while being performant by default. We'll see where I land after further explorations.

I have found very few simple web apps that demonstrate how to enable the application to run completely without an internet connections (after the initial download). I put together this app as a reminder to myself (and others) how to set up IndexedDB and a service worker to make this work.

My camera has a light that indicates when it is on. From what I can see no other websites trigger it to turn on (unless they obviously are using the camera).

It appears to turn on briefly and then turn off again. This seems to break my understanding of the browser security model as that domain is definitely not allowed access to my camera.

Any thoughts?

Thanks for checking it out!

A long time ago I sketched out a note-taking app that I was excited about. About a year later I stumbled on Notion and saw that the core idea of hierarchical notes was accomplished wonderfully.

I figured there was no point building something that would essentially end up becoming a Notion clone. I proceeded to use Notion regularly (and still do) - but I have come to see that with flexibility comes other challenges.

I often found myself on a walk or at the gym wanting to capture a random idea that just came to mind. Unfortunately, doing so in Notion (and pretty near most notes apps) was laborious. The app would open to the last page I had open - which was usually not where I wanted this new random idea to go. Even if I was in the right place, the text editor on mobile was clunky.

engram organizes notes by day and type (note, task, and event). I've found with these primitives, I don't need to fumble to get things organized. Instead, ideas can be submitted independently and out of order. Storing them by date keeps recent and relevant data within reach.

Final thought - engram is not intended to replace all note taking capabilities. Instead, it acts as a place to capture the unfiltered thoughts before you lose them. From there they can be further fleshed out in a more organized fashion using your preferred method.

Dubsado | ONSITE | Burbank, CA | https://www.dubsado.com

Dubsado helps businesses stay in motion. Build relationships, schedule appointments, and create workflows to streamline projects from start to finish.

Looking for talented people all across the stack. Mongo, React, Node, GraphQL are some of the main technologies we are using.

Who we are: https://www.youtube.com/watch?v=PyCv4wtu0ik

Apply at: https://www.notion.so/Dubsado-Job-Board-d122c307a4bb4025a9c4...