HackerTrans
TopNewTrendsCommentsPastAskShowJobs

loueed

no profile record

comments

loueed
·há 9 meses·discuss
Computers get old and EV tech is constantly improving. ICE has been stable for decades. Tesla believes they can increase the market value of older EV's eventually by pushing autonomous driving.

I like the direction of https://slate.auto. Module, bring-your-own-computer. We'll see if they allow affordable trade-in's for upgrading battery/motors.

They could also work with CommaAI for autonomy.
loueed
·ano passado·discuss
Nice work - The link is broken due to the `www.`, works fine without it https://thezentask.netlify.app

A couple of suggestions: 1. Instead of multiple tiny inputs, you could have a single form with a date picker which defaults to todays date. Clicking a column header could set the date input value. 2. An end user wont know about the formatting requirements for entering task duration. A more user friendly option would be to parse the duration from the task name. Using some regex to match, heres an example.

// Look for time patterns like "30min", "1h", "2 hours", etc. const timeRegex = /(\d+)\s*(min|mins|minutes|h|hr|hrs|hours)/; const match = text.match(timeRegex);
loueed
·há 2 anos·discuss
Apple's chips are based on the ARM architecture, which is inherently more power-efficient than the x86 architecture used by AMD and Intel for their laptops. Apple also designs these chips in-house.

Apple is using a combination of high-performance and high-efficiency cores (Big.LITTLE architecture), allowing the chip to balance performance and power usage based on the task at hand. They also include dedicated hardware for specific tasks (like video encoding/decoding), which can be more efficient than performing these tasks on general-purpose cores.

AMD and Intel design chips for a wide range of devices and systems, requiring a more generic approach. This limits their ability to optimise for specific hardware and software combinations. Apple designs chips solely for its own products, allowing for tighter integration between chip, hardware, and software.
loueed
·há 2 anos·discuss
Sony has a monopoly and limited production on MicroOLED, which is why the displays are the most expensive part of Vision Pro.

Apple is reported to be testing displays from BOE, Apple will be able to negotiate better prices once Sony loses their monopoly.

If Vision Pro 2 is planned for 2027, we might see Apple use Samsung eMagin OLED.
loueed
·há 3 anos·discuss
Pure Vision currently. The last we heard about LiDAR was the issue of combining Lidar Data with Vision in the NN. Which technology should take priority in the NN? For example LiDAR might recognise the shape of a sign but vision will know if its a stop sign or not.

I'd be super interested to see if someone has successfully combined RGB data with LIDAR data.
loueed
·há 3 anos·discuss
mailerlite.com has a free tier for 12,000 emails per month but limited to 1,000 subscribers.

If you don't mind writing a bit of javascript, you could use Cloudflare workers which allow sending emails via MailChannels API. Be sure to setup certificates so people cant spoof your domain.
loueed
·há 3 anos·discuss
I also have a bookmarklet for quick notes.

> data:text/html,<html contenteditable><body style="margin: 10vh auto; max-width: 720px; font-family: system-ui"><h1>New Note

I added some basic styles so I can screenshare :D

Also in most browsers, CTRL + B, I and U work in contenteditable divs.
loueed
·há 3 anos·discuss
From what I've seen, they include a fallback set of gear shifter buttons below the centre console. These work even if the screen is black.

I do see a lot of praise for its ability to auto shift, basically it should predict the direction of the vehicle based on the surrounding environment.
loueed
·há 3 anos·discuss
Interesting post, I've not used YAML outputs as of yet. When using GPT3.5 for JSON, I found that requesting minified JSON reduces the token count by a significant amount. In the example you mention, the month object minified is 28 tokens vs 96 tokens formatted. It actually beats the 50 Tokens returned from YAML.

It seems like the main issue is whitespace and indentation which YAML requires unlike JSON.
loueed
·há 3 anos·discuss
What do you enjoy most about software dev? Open source is great for basically any area of software development, you could create some PRs to existing projects you find interesting. I'm a frontend dev but recently enjoyed learning about Deno and built a tiny blog using their Deno KV service, I'm now trying to built a super basic sandbox like codepen using Cloudflare Workers and KV.

If you're not a fan of serverless, fly.io or render.com are great for hobbyist projects.

Also ChatGPT can be great to help work out a project idea.
loueed
·há 4 anos·discuss
I made an iOS Shortcut for this so I can ask Siri for the QR code when needed. There's a built in "Generate QR Code" action that can take a text action containing the wifi string.

Only issue is hard coding the password in the shortcut.
loueed
·há 4 anos·discuss
Great work! Any idea why the import isn't resolving in a Vue app? `Cannot find module 'thememirror' or its corresponding type declarations`
loueed
·há 4 anos·discuss
Great work!
loueed
·há 4 anos·discuss
Wondering how would they prevent the faraday cage solution? I guess the OEM could disable the car if it cant phone home but surely that would lead to accidents e.g. blocking the modem while driving.