Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:News? (Score 1) 158

But you still have to push the updated data files to the device. With embedded devies that's not necessarily simple.

And even if tzdata is updated, sometimes you need to tell programs to read the updated data, which isn't just a simple restart. One example is MySQL where you have to run mysql_tzinfo_to_sql to load the zoneinfo files into the internal equivalent (it's stored internally in database tables).

Yes, as I said in the post to which you replied:

But there still needs to be an update, and that might require restarting processes that have already loaded the now-out-of-date rule information, so, yeah, it's not as if the timezone cabal can wave their hands and magically update all the systems out there.

Comment Re:News? (Score 1) 158

So... How is this even tangentially related to being newsworthy for a tech site?

Like, seriously, WTF?!

It's newsworthy because we finally have proof that another countries legislature is at least, just as ridiculous as our own.

Note that the quoted statement can be made in a number of different countries; if you want proof that a lot of countries fuck around with daylight savings time rules, etc., just download the tzdata files and read.

Comment Re:News? (Score 1) 158

Even then its still a headache.

Just because someone else fixed the library, doesn't mean my servers and embedded devices have the update yet.

Presumably by "the library" you mean "the tzdata files"; this involves no code changes. The whole point of the Olson timezone database and library was to remove any knowledge of specific daylight savings time rules from any code whatsoever, so that changes to the rules could be handled without having to change source code, recompile, and relink every program (this was back in 1987, when shared libraries were still somewhat rare on UN*X systems). Thank you, Clorox and company.

But there still needs to be an update, and that might require restarting processes that have already loaded the now-out-of-date rule information, so, yeah, it's not as if the timezone cabal can wave their hands and magically update all the systems out there.

Comment Re:Someone explain this to me (Score 1) 710

I remember back in the 1990s (I think) reading news stories about corporations pursuing 'increased productivity' per worker as a strategy for success, particularly in relation to international competition. Is there any other way to translate that language into plain English other than to say that what was desired was less wages for the same amount of work?

Yes. It could be translated as "more output for the same amount of work", if the increased productivity is per-work-hour productivity. Whether that translates into "less pay for the same amount of work" or not depends on whether wages grow with productivity. In the US, they grew with productivity from the late 1940's until the early 1970's, but haven't done so after that.

Comment Re:The problem is not switch speed (Score 1) 183

Not the production process so much as the design process. It'd mean starting over from scratch with a whole new architecture, redoing decades of work in hardware and software.

Presumably the hardware and software to which you're referring is the hardware to manufacture the chips and the software used to design them, considering that the asynchronous processor that was "faster (~3x) and consume less energy (~2x)" was an "asynchronous, Pentium-compatible test chip that ran three times as fast, on half the power, as its synchronous equivalent.", so the asynchronous processors themselves don't have to have a shiny new instruction set architecture. (The original PDP-10 KA10 processor was asynchronous - "[the arithmetic processor] operates asynchronously using hardware subroutines, whereby the start of each operation is triggered by the completion of the previous operation rather than by a trigger from a synchronous timing chain" - but the KS10 was a synchronous microcoded machine using AMD 2900 bit-slices.)

Comment Re:Half a century (Score 3, Informative) 113

Uh, I thought this was the descendant of Burroughs B5000? You know, the computer that Alan Kay tells everyone to take a look at to understand how silly today's architectures look in comparison.

It's both the descendants of the 36-bit Univac 1108 and the 48-bit-plus-tags Burroughs 6500 (very much like, but not compatible with, the B5000).

Comment Re:Isn't Samsung the largest UNIX vendor? *grin* (Score 1) 396

But is Mach UNIX? I don't mean 'POSIX compliant' because Windows NT 4.0 is POSIX compliant.

If Mach is "the Mach kernel", I don't think it offers UNIX APIs, but at least two OSes based on Mach have passed the Single UNIX Specification test suite (which NT 4.0 hasn't, and which even Interix^Wthe Subsystem for Unix-based Applications hasn't).

Comment Re: Legacy file systems should be illegal (Score 1) 396

Forget about moving Windows off NTFS.

Microsoft haven't. I guess they realized that software actually used alternate data streams, so they had to add them back to ReFS, although only "up to 128K for both Windows 8.1 and Windows Server 2012 R2", so they're more like "big extended attributes" than full alternate data streams.

Comment Re:Legacy file systems should be illegal (Score 2) 396

10.5 added hardlinking.

Are you certain? The ln command, when run without -s, would return an error if you used it under Tiger or earlier?

Or are you referring to hardlinking to directories, which was something UNIX traditionally supported, but which required root permissions (as it was used by the mkdir command to create the . and .. directories), and which was removed at one point (4.2BSD, as that added the mkdir() system call, making the ability of link() to link to a directory unnecessary?), and added back in 10.5 with the introduction of Time Machine, so that it could be used in backup trees as a very hacky form of de-duplication (each backup tree is a complete copy of the file system being backed up, but if there's an older copy of an unchanged file or a directory everything under which is unchanged, the "copy" is done by making a hard link rather than by copying the file to the backup disk).

Instead of tackling "bitrot" head-on, Apple seems to have taken the "make backups easy" approach. This works to some degree, but since the backups use hardlinking, you really only have two copies of the data -- the one on your main drive, and the one on your backup drive. This makes cycling your backup drives even more important than it already was.

That's what happens with any backup scheme that does incremental backups - if a file hasn't changed, a copy isn't made.

Slashdot Top Deals

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...