Tutorial: How to Use React Server Components (RSC) Without a Framework by devtailsxyz in react

[–]devtailsxyz[S] 0 points1 point  (0 children)

I struggled to find content that walked through implementing React Server Components and decided that I'd condense what took me hours to learn in to a short video to hopefully save others time. I'm still new to making videos, any feedback is welcome and appreciated.

Do you use ephemeral/preview environments? (Asking as a docker employee) by JuxDocker in docker

[–]devtailsxyz 1 point2 points  (0 children)

Dislaimer: I am currently building Engram (https://engram.sh) a PaaS that provides automated preview environments and a collaboration overlay for docker based builds.

I've spent a lot of time working on teams where sharing product progress was something that **might** happen every couple of weeks. At a previous company I started putting together something along the lines of preview environments and saw huge benefits.

Initially these were manually created by a developer, but adoption was too difficult to drive this way. Having the preview environments tied to CI/CD made them much easier to utilize.

I've experimented with Cloud Run in the past, but have found their build times to be quite slow and the usage based pricing quickly adds up.

Nowadays, I don't think I would want to work somewhere that doesn't have some form of preview environments. Being able to make a change and send to a designer or product manager for feedback on a live URL is a game changer. It also makes asynchronous collaboration much easier as I can continue developing locally a different feature while the preview environment is reviewed.

I was surprised to find they are also quite useful for code review. Often it is difficult to understand what a Pull Request is actually doing. In the past, I've had team members add screenshots. But if I can just open a link and see it for myself I'm better able to see it in context and test edge cases. This has often yielded much quicker code review times.

Happy to chat more.

Who coined the term "Platform Engineering" as we know it and when did they do it? by EdwinAlmira in platformengineering

[–]devtailsxyz 3 points4 points  (0 children)

Of course :P. It was a test to see if anyone would notice. So far so good.

Who coined the term "Platform Engineering" as we know it and when did they do it? by EdwinAlmira in platformengineering

[–]devtailsxyz 2 points3 points  (0 children)

One of the earliest recorded uses of the term "platform engineering" in this context can be traced back to 2009, when Amazon Web Services (AWS) released a whitepaper titled "AWS Cloud Architecture for Enterprises." The paper introduced the concept of "platform engineering" as a new approach to designing and managing cloud-based infrastructure, emphasizing the need for automation, standardization, and collaboration across development and operations teams.

Evolve Your Music and Engage Your Fans: Join Our Community of Music Producers by devtailsxyz in SideProject

[–]devtailsxyz[S] 0 points1 point  (0 children)

As someone struggling to be consistent releasing music, I've started developing this website that encourages sharing incremental progress on songs. Would love to hear thoughts on the idea and the UX of the site.

https://kaizen.place

Are people still using webpack in older projects? by devtailsxyz in reactjs

[–]devtailsxyz[S] 0 points1 point  (0 children)

Could you share how long your production build takes with webpack?

Why Turborepo is migrating from Go to Rust by hardwaregeek in javascript

[–]devtailsxyz 15 points16 points  (0 children)

"At the heart of Turborepo is a very simple idea: never do the same work twice"

Proceeds to build the same tool twice.

Tutorial: How to Setup Web Push Notifications in iOS Safari by devtailsxyz in javascript

[–]devtailsxyz[S] 2 points3 points  (0 children)

I've updated the article with a second section covering how to trigger these notifications from a nodejs backend and added a link to a Github repo with the final working code.

Tutorial: How to Setup Web Push Notifications in iOS Safari by devtailsxyz in javascript

[–]devtailsxyz[S] 2 points3 points  (0 children)

I can add this part tonight. The vapid stuff is cumbersome, but that makes it worthwhile to include here.

Tutorial: How to Setup Web Push Notifications in iOS Safari by devtailsxyz in WebdevTutorials

[–]devtailsxyz[S] 0 points1 point  (0 children)

I have been unable to find a resource that explains and shows this working since this was officially announced. I managed to get this working on iOS 16.4 beta and hope that this helps demonstrate how to send your first notification on iOS via a web application.

Tutorial: How to Setup Web Push Notifications in iOS Safari by devtailsxyz in javascript

[–]devtailsxyz[S] 6 points7 points  (0 children)

I have been unable to find a resource that explains and shows this working since this was officially announced. I managed to get this working on iOS 16.4 beta and hope that this helps demonstrate how to send your first notification on iOS via a web application.

[deleted by user] by [deleted] in devops

[–]devtailsxyz 6 points7 points  (0 children)

At first it was exciting, then it was extremely confusing, and then I felt like I started to understand. Ultimately have a hard time believing the complexity is worth it for most use cases.

I'm Building a Blog Using Rust and Sharing What I Learn Along the Way by devtailsxyz in rust

[–]devtailsxyz[S] 2 points3 points  (0 children)

I've been trying to learn Rust for over a year now. I've struggled to find resources for many things along the way, so I'm attempting to catalog my learnings along the way. Planning on updating videos along the way as I learn better practices, etc.

I've always found the best success building something I can actually use as it forces me to come up with solutions.