* Posts by iTheHuman

26 publicly visible posts • joined 28 Mar 2017

Still no love for JPEG XL: Browser maker love-in snubs next-gen image format

iTheHuman

If size matters.... avif beats it for non-graphical images, but jxl is a better One ring.

However, none of this matters if we don't actually move away from jpeg (Android, start mandating avif support)

iTheHuman

AVIF doesn't have any real patent issues, lonely troll not excluded.

Linus Torvalds flames Google kernel contributor over filesystem suggestion

iTheHuman

Re: A better long-term approach...

Ha! Ok, Pottering= German + German nsa equivalent. - systemd / irrational hatred

iTheHuman

Re: A better long-term approach...

I'm sure Linus would agreeಠ⁠_⁠ಠ

iTheHuman

Re: A better long-term approach...

They didn't break any part of the gpl, they just stopped offering a nicety that was advice/beyond the gpl.

Call it lawyerly but you either meet the terms of the gpl or you don't.

What company contributes to more areas of the kernel than RH? That's excluding all the maintainers they employ, and supporting projects.

iTheHuman

Re: A better long-term approach...

What do you have in mind?

Also, why does it matter for open source projects?

iTheHuman

Re: A better long-term approach...

Ok, why should Google & RH be banned from contributing?

Data-destroying defect found after OpenZFS 2.2.0 release

iTheHuman

Re: ZFS here we go again

Maybe UFS, or ext4. I'll leave file corruption checking to the media and other tooling, same with replication.

If the Linux Foundation was a software company, it'd be the biggest in the world

iTheHuman

Re: Wrong

It meets the needs of its users (datacenters) without having difficult to work around architectural bottlenecks.

It's definitely becoming increasingly chimeric.

Fedora sours on Creative Commons 'No Rights Reserved' license

iTheHuman

Re: Yet another reason why

Pharma needs to be more closely allied with government for many reasons. The issue of patents (something closer to FRAND rather than exclusivity for 15 years) being only one.

Some 'security people are f*cking morons' says Linus Torvalds

iTheHuman

Re: Google's Pixel security team

That's not unintentional. That's what you get when you have a huge software project lead only by programmers. They've no interest in something unless there is code, and code is more important than design.

Mazda and Toyota join forces on Linux-based connected car platform

iTheHuman

It's possible that's it's Linux based but my problem is that, I fear, they are taking on unnecessary development.

Take agl (or genivi -- they had a nice stack for media interoperability), skin it, and call it a day.

In fact, it looks like they did deploy agl very recently.

http://www.electronicdesign.com/automotive/toyota-including-automotive-grade-linux-platform-2018-camry

iTheHuman

Wow, way to know your strengths.

Android Auto sucks, but I'd prefer it over entune.

They should just stick with Apple & Android until Android Automobile is released. That, or toss in agl with support for apple and Android.

Red Hat banishes Btrfs from RHEL

iTheHuman

I'm not doubting that you've had problems involving dbus, but I can't say that those were problems caused by dbus (indication of a deeper issue). That you couldn't determine the actual issue provides additional support for my assertion.

Dbus is just ipc, and stratis is going to make heavy use of IPC as the daemon which can hold additional state so that better global decisions can be made than would otherwise be possible (this is exactly how they plan to be able to take advantage of these well defined, existing, services while enjoying many of the features that monolithic fs like zfs/btrfs have without needing to poke holes through the vfs/block boundary).

Something else to keep in mind, userspace is far more forgiving of errors than a kernel.

iTheHuman

Re: People are still using btrfs?

Bluestore?

It's probably not there yet, but it won't be much longer, so, no, zfs isn't needed (and is also not recommended by the ceph folks).

iTheHuman

Mmmmmm, ok....

Thumbs up, I guess?

You certainly seem like a rational person who can make objective evaluations in technical matters. Your company's IT future is bright

iTheHuman

Here's the link to that other project:

https://github.com/stratis-storage/stratisd

iTheHuman

So, had anyone informed the Facebook and Oracle devs that the fs they've been working on its finished?

You know, it's not as though rh had ever been a vigorous backer of btrfs since most of their fs folks are on team xfs..not to mention clustering filesystems like Ceph and Gluster.

Btw, some rh dev announced a new project that seems to be aiming for a more UNIX-y zfs (that is, without the layer violations, but with many of the same features). It actually looks kind of interesting with most of neat stuff happening in the fs daemon.

Open-source world resurrects Oracle-free Solaris project OmniOS

iTheHuman

Re: YAWN

Distros aren't differentiating based on their kernel, with a few niche exceptions.

systemd'oh! DNS lib underscore bug bites everyone's favorite init tool, blanks Netflix

iTheHuman

Re: underscore illegal dns character

Mmmmmm yup. 10min. Not impressed. Move to devuan.

Hopefully you never change software unless it's for bug fixes, because, if it ain't broke.

DeepMind takes a shot at teaching AI to reason with relational networks

iTheHuman

A refrain I've heard from the Big Names in the field is one that Moravec first proposed in the 80s being that we should expect the two approaches (bottom-up and top-down) to meet prior to practical agi

This is a very nice result

OpenWRT and LEDE agree on Linux-for-routers peace plan

iTheHuman

Re: Forks and Choice

Dalvik is a register based vm.

Everspin's new gig: a gig or two of non-volatile RAM on PCIe

iTheHuman

Your ssd would have a much broader latency curve that results in those occasional several ms pe operations.

The small sizes aren't very useful for enterprises, but nvm with dram-like latency distributions over pcie is a big deal. For one thing, dram sucks up power even when it's not doing anything and has to refresh its leaky capacitors every ~50-100us.

Google's video recognition AI is trivially trollable

iTheHuman

Re: Is it a bug?

I assume you mean "emits"? As long as backpropagation applies the right weight, it will.

It does remind me of the ai version of a honeypot.

A paper was making the rounds recently that described a universal method to fool, iirc, cnn, by applying a distortion field over an image. The images remained recognizable by humans. What seemed to be forgotten was that the algorithm is now a part of new training sets which will make the systems more robust.

Red Hat: OpenStack big, getting bigger, OpenShift fatter than Linux

iTheHuman

That you immediately look to those two as an option (rather than suse) suggests that you are either not a customer, or have been looking for a reason to move to a Debian-based distro (for whatever meaningful difference you think exists).

For what it's worth, red hat tends to score amongst in the industry when it comes to customer service.

Firefox Quantum: BIG browser project, huh? I share your concern

iTheHuman

Threads != processes

Your might want to brush-up on your knowledge of rust (very important here for a reason I'll get to in a moment), servo and project quantum.

Most importantly they AREN'T going to spawn a process per tab but only start a few processes that handle content duties (I believe four is the current goal) and handle the different pipelines of the frames (and tabs) using THREADS. This is where rust is important. It allows enough thread isolation such that a single thread can't affect the other threads in the process. THAT'S one the big changes relative to the other browsers. The others are webrender and Stylo.