HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Menu_Overview

no profile record

comments

Menu_Overview
·قبل 8 أشهر·discuss
AirDrop is faster and more secure and reliable than simple Bluetooth file sharing. There are a number of reasons they weren't going to do that.
Menu_Overview
·قبل 9 أشهر·discuss
Often times that is to create a comfortable reading width. (https://ux.stackexchange.com/questions/108801/what-is-the-be...)
Menu_Overview
·قبل 9 أشهر·discuss
Yea, the version of Angular is from 2020. I don't think there is much to be gleamed from this study.
Menu_Overview
·قبل سنتين·discuss
Well, what's next? Beyond prototyping, I imagine this is an early step towards more practical agents building their own world model. Better problem solving.

Prompt: Here's a blueprint of my new house and a photo of my existing furniture. Show me some interior design options.
Menu_Overview
·قبل سنتين·discuss
Yea, this was the one "feature" I've wanted. My S8 is still working just fine, so no upgrade this year, but I'm glad they're trimming it back after several years of slight increases.
Menu_Overview
·قبل سنتين·discuss
I've thought about this. How much more battery life would they have to build in for it to be noticeably better?

When I charge my watch at the end of the day, I usually have plenty to spare, but not always enough to make it through to the morning (especially if I tracked an exercise). Even if a new watch got 24hrs of battery life, I would still have to charge it at night so I wouldn't really matter. I'd guess that 18hrs it a balance that keeps people content and gives Apple's engineers enough room to fit in all the features they want.

Of course, I would love to be able to track a long exercise or a 10-hour hike...but there's a different price tier for that.
Menu_Overview
·قبل سنتين·discuss
If you want to use or show off React, use it. If you want to make it simple, keep it simple.

If your portfolio's content is simple enough for one page, or just a unique pages, go for just HTML! You will like it. Static HTML files (with a bit of JS) will be easy to deploy and better for SEO and performance.

That said, you might quickly find you want something with more capabilities.

Through my experience, you're eventually going to want some sort of template engine. Want to reuse the same "article" layout or you want a for-loop over a list of articles? Templates. Your template engine could be as simple as Pug or Handlebars templates, no client-side rendering needed yet. Compile your templates and deploy your HTML files.

Pug (or other template engines) will probably carry you a long ways. The next step would be some sort of static site generator. This is basically the same as Pug, with with extra options and more structure. Hugo and Jekyll are popular, but there are a lot of options. Deploys are the same: build locally, deploy, or set it up with some hoster like Netlify or Vercel to build and deploy automatically (and for free!).

The next level is something like Nuxt, Vuepress, or Next, which can generate static websites, but also give you fancy things like client-side rendering for fancy page transitions (although there is now a native way to accomplish this with just HTML and CSS!). My blog articles are written in Markdown so they are easy to port to other frameworks or themes. This is the approach that I use because I like to stay up to date with Vue...but you'll spend a lot more time "upgrading" things instead of building or writing. Just my experience.
Menu_Overview
·قبل سنتين·discuss
Why isn't is sustainable? Bad for customers, good for credit comapnies, but it isn't any different from other kinda of credit card debt, is it?

I considered it a few times, but like, it only spaced the payments out over 6 weeks and I had to unfreeze my credit report so...it wasn't a big win.
Menu_Overview
·قبل سنتين·discuss
I was ready to buy one today, too. Disappointing.

I miss my old iPad mini 4. I guess I could try the 11" iPad, but I think I'd prefer it to be smaller.
Menu_Overview
·قبل سنتين·discuss
Sorry?
Menu_Overview
·قبل سنتين·discuss
> and it would have been faster to just do it.

False. Obviously this depends on the work, but an LLM is going to get you 80-90% of the way there. It can get you 100% of the way there, but I wouldn't trust it, and you still need to proof read.

In the best of times, it is about as good as a junior engineer. If you approach it like you're pair programming with a junior dev that costs <$20/mo then you're approaching it correctly.
Menu_Overview
·قبل سنتين·discuss
If you read it to the end, you'll see their note on the name. That is also something they want up for debate.
Menu_Overview
·قبل سنتين·discuss
I also love my Kobo.

Only issue I have is syncing. There is no wireless sync, right? I have to plug it in to sync my library and tack on extra files.

The Overdrive/Libby support is excellent, though.
Menu_Overview
·قبل سنتين·discuss
This only works with Google products.
Menu_Overview
·قبل سنتين·discuss
You'll need a library that can render to some 2D-context that can then be converted to PNG.

JS is probably where you should look. You might be able to find a good PHP drawing library but I've never come across that in my work. Lots of image converting libraries out there (usually just a wrapper around ImageMagik), but "drawing images" usually a client-side thing and you'll find more support for it.

In JS, you'll draw the image to a `<canvas>` element, which can then be downloaded as a PNG. You could go the SVG route, too, depending on the art style. Canvas is the safer bet.
Menu_Overview
·قبل سنتين·discuss
Yea, but look at how fast that 11MB loads.
Menu_Overview
·قبل سنتين·discuss
Thats for the writeup. I tend to agree with most of those, although the "super app" things is weird to me...I don't like the idea of "super apps" because it is hard for the user to share only the minimal permissions.
Menu_Overview
·قبل سنتين·discuss
I think the etymology for both of these kinda comes from "letterpress".

> producing many copies by repeated direct impression
Menu_Overview
·قبل سنتين·discuss
VitePress is geared more for documentation websites, while Nuxt Content is more for regular websites.

Of course, VitePress can be used for all sorta of stuff. My old website used to be based on it. If you click through the sites using VitePress you can see the similarities and what you get for free with the default theme.
Menu_Overview
·قبل سنتين·discuss
Vite Pres has client-side routing, right? Like, it works without JS, but if JS is enabled, it runs as a SPA.