Earlier quoted context omitted.
how many times do we need to link to the dropbox comment before HN commenters get it? https://news.ycombinator.com/item?id=9224
I Don't care. There are tons of examples of building shit on stacks that won't be around. How about investing a shit ton of time into Azure Kubernetes using Docker containers to find out they dropped support, just like this startup can drop out and never be heard of again. Good luck with that.
Vercel raise $40M Series B
181–190 of 208 posts
Re: Vercel raise $40M Series B
#182Earlier quoted context omitted.
Could you describe what kind of pain points have you had? I've been building a photo-intensive static personal website lately. I started off with Next.js, but later switched to Gatsby, because so many things just worked out-of-the-box with it. This was especially the case with optimizing and resizing images. For Gatsby there is gatsby-image, which works super well. For Next.js there is next-optimized-images which is…
NextJS supports export for 100% static site generation (like Gatsby). Unlike Gatsby, it _also_ supports a server runtime and SSR, and everything in between. Its magic is the good kind that decomposes into sane primitives. Respectfully, it sounds like you might have needed to spend a little more time with the docs.
Re: Vercel raise $40M Series B
#183Re: Vercel raise $40M Series B
#184No offense, I think people are crazy to rely on a stack they can easily make themselves vs. a series B startup. It's not that difficult to build and deploy full stack apps on your own server.
Re: Vercel raise $40M Series B
#185Re: Vercel raise $40M Series B
#186From first hand experience - Vercel is pretty magical. I’ve helped my wife develop an e-commerce site for her planetary-themed kids merch [1], we chose NextJS with a Shopify Storefront backend and deployed the entire thing to Vercel. Didn’t even need SSL certs, no fiddling with CDNs, it’s just magic. We are super happy with how it turned out vs dealing with full Shopify front end/backend stores. [1] https://littleast…
After a quick look in the profiler I found that you're eager loading full-res images from shopify, and it's adding quite a bit of time before the page fully paints, with a lot of reflow. I'd recommend lazyloading them after the fact, with a super low res version as a background-image and adding a min-height to the images so that the whole page doesn't reflow as much.
Otherwise a great site and good looking products, If I had kids I'd buy a shirt.
Re: Vercel raise $40M Series B
#187No offense, I think people are crazy to rely on a stack they can easily make themselves vs. a series B startup. It's not that difficult to build and deploy full stack apps on your own server.
I'm a designer w/ some developer experience that uses Vercel for our startup... I'd have no clue how to deploy my own server. And Digital Ocean costs money... Vercel is free for me right now
Re: Vercel raise $40M Series B
#188Hi, serious question what is Vercel? As a developer, what do I use it for? Back-end as a service? Hosting? Database? from reading their homepage several times and looking at their products I still cant tell... can some explain?
Basically node-js servers running your code with an integrated CDN, but they also support Go, Python and Ruby for running server-side logic.
Re: Vercel raise $40M Series B
#189From first hand experience - Vercel is pretty magical. I’ve helped my wife develop an e-commerce site for her planetary-themed kids merch [1], we chose NextJS with a Shopify Storefront backend and deployed the entire thing to Vercel. Didn’t even need SSL certs, no fiddling with CDNs, it’s just magic. We are super happy with how it turned out vs dealing with full Shopify front end/backend stores. [1] https://littleast…
The website looks excellent but the perf could really do with some work. After a quick look in the profiler I found that you're eager loading full-res images from shopify, and it's adding quite a bit of time before the page fully paints, with a lot of reflow. I'd recommend lazyloading them after the fact, with a super low res version as a background-image and adding a min-height to the images so that the whole page d…