HackerTrans
TopNewTrendsCommentsPastAskShowJobs

gbba

no profile record

comments

gbba
·2 года назад·discuss
Steam Link is tailored for gaming, but it works great for remote access. Performance is excellent and it has clients for all major platforms.
gbba
·2 года назад·discuss
> create a new bank account somewhere and allow Plaid to have access to it.

This is the way. There's plenty of free online banks, and it's pretty easy to open accounts nowadays.
gbba
·3 года назад·discuss
It's meant to run GNU Linux instead of Android, so maybe the 4GB RAM might be ok?

Definitely not enough if this was running Android. RAM usage on my Android right now: - 2.1 GB Android OS - 1.0 GB Google - 0.5 GB Android System - 0.5 GB Firefox - 0.4 GB Android System Intelligence - 0.4 GB System UI - 0.4 GB Google Play services ... and a bunch more < 0.1 GB services that seem necessary
gbba
·3 года назад·discuss
I was trying to figure out why the update wasn't working on my Archlinux box. After a few attempts I barely caught a glimpse of an error message that flashed by: something along the lines of "unzip not found".

After installing unzip, the firmware updated successfully.
gbba
·4 года назад·discuss
Video games are more enjoyable with the increased processing power!

Where the 2018 model struggles at high frame rates, the M1 version enables more fluid gameplay at 95-120fps. The new M2 would likely deliver more consistent 120fps performance given the advertised 15% CPU and 35% GPU uplift.
gbba
·4 года назад·discuss
> focus on the basics instead of marketing gimmicks

This reminds me of what Steve Jobs said about Xerox[0]. After achieving market leadership in their industry, engineering at iRobot seems to have been pushed aside in the company's decision making process.

Is this a consequence of being a publicly traded company? After all, pushing consumables and subscription services requires less capital and makes more money compared to developing a better robot. The $1.7B exit seems like a good outcome for a stagnant (relative to its peers) company.

[0] https://youtu.be/NlBjNmXvqIM?t=56
gbba
·4 года назад·discuss
Still considered experimental in 2.35.0: https://git-scm.com/docs/git-init
gbba
·4 года назад·discuss
I use a few secondhand Netgear R7800 with OpenWrt installed to blanket the house in fast WiFi and 1Gb Ethernet. This setup has been in place for almost 4 years now and has been very reliable. Maintenance is needed to keep software up to date.

With so many radios, I've segregated IoT devices on their own frequency to maximize throughput on workstations. VLANs provide network isolation.

I think the routing performance is fine for most households. If you need a router that does QoS on a gigabit internet connection, you'll need something more powerful.

Occasionally I'll wish that I had something faster than 1GbE, so the hunt for hardware continues...
gbba
·5 лет назад·discuss
New Intel hardware supports SR-IOV, the successor to GVT-g, but unfortunately driver support is apparently missing for Linux: https://www.reddit.com/r/VFIO/comments/o7l2zr/sriov_on_intel...
gbba
·5 лет назад·discuss
Be careful as this syntax can potentially introduce SQL injections.

PHP's parameterization features in PDO can be abstracted so you can turn this into:

  $vars = array(":userid" => $userid);
  q("select name from users where id = :userid", $vars);
It's still pretty concise and is much safer.