Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Backup software? (Score 1) 71

I recently 'discovered' duplicity - it's very good for this sort of thing, but it can't use this or Glacier as a store. I can use S3 though, which you can use as staging for Glacier.

Personally, I use Duplicity to backup my NAS to another disk. I then have a script that copies full backups up to Glacier (and then deletes them). I'm working on a nicer glacier client for this, but the java one I downloaded from github works well enough to get going.

Comment Re:Seriously? (Score 1) 282

After a burglary:

Officer: Oh, so you have a camera right over your safe. Was it on and recording?
You: Yes, I have the guys face nice and clearly, good resolution, lighting etc.
Officer: Can we have a copy, please? We'll run it against our mugshot database
You: No, but you can give me your mugshots and I'll run it though my system if you like

As an aside, I got burgled once - I was the nice bloke in a crappy neighbourhood. I had 4 computers in the house at the time - only my laptop got nicked - I'm sure I could have had camera all over the place and got pictures of the guy. Not sure it'd have helped all that much back then though.

The beat cops asked for a crime scene investigator because they found a bit of a boot print on the floor. She came next morning (Saturday), and looked and sounded like she had a hangover. She wasn't impressed with the boot print. Eventually, another cop came over to sort of round things off. I asked what was really going to happen about this - to his credit, he was honest - he said not much, but it'll go on the crime map so will be contributory to any possible future work if there's a pattern. Never did see my stuff again, and whilst the insurance paid out well, you never replace everything exactly as you'd like it.

Comment Re: Thanks to Wang (Score 1) 180

Calling their global support service Wang Care wasn't a great move.

(the story goes that the European head had to answer directly to Dr. Wang about why the name had been changed from Wang Care to whatever it ended up being)

Opening an office in Cologne, Germany wasn't a successful one either - no one wanted to go to Wang Cologne ;-)

Comment Re:Try before you buy (Score 1) 284

In the downloading sense, no one spent any (appreciable) time or money delivering the content, Further, by listening to it, you didn't deprive anyone else of that quantity of content. This, this is nothing like ordering food (or indeed anything else) and not paying for it.

The point here is to clearly understand the differences between digital content and physical property or goods. It's then to clearly understand the similarities between them and design new laws, or apply existing ones appropriately. At the moment, all we have is the media distribution companies (who have a dwindling business model) talking about how digital content is just like physical - but unfortunately for them, that's simply not true. It doesn't matter if you're a so-called "freetard", a hardened criminal, a law abiding citizen, a media exec, a politician or an alien from the planet Zod - digital content is never, ever going to be the same as physical property. Thus, laws surrounding it cannot be the same either.

Comment eh? (Score 2) 44

I don't get it... what's the for? is it for the host running the containers, or for the containers themselves?

I set up a bit of Docker goodness at work because I needed to do some stuff in RHEL5, 6 and 7 sort of simultaneously. I found getting the base image of a RHEL system into a container to be annoyingly hard - first of all, you somehow have to know what all the bajillions of 'base' packages are that you're going to need. Then you make your container and spin it up to a bash prompt. Great - all looking good, right? Wrong. For any other packages you want to install you need an RPM repo, only Redhat give you a satellite - for which you need a client license. You'll need one of those for every container you ever create - that can't be right, can it?

Maybe I'm completely missing the Chosen Path here, but getting Dockers up and going in an enterprise setting seems remarkably fiddly. That said, being able to spin up a considerably smaller container would be very welcome. I'm not so sure having a stripped down host to run them on necessarily excites me all that much, but whatever it takes to get the bloat out of distributions is fine with me.

Comment Re:The Brock string (Score 1) 55

I had non-binocular vision when I was a kid. the guy in the white coat just took a length of cardboard, drew a line down the middle of it and drew some blobs on the line which he marked from 1..10. I got a bunch of other exercises too (I seem to remember two stick men, one with arms but no legs and one with legs but no arms and having to make them into one complete stick man). I can't remember those very well, but that bit of cardboard fixed it for me.

As an aside, if lazy eye affects such a small proportion of the population, how is that most of them seem to end up in engineering/technical jobs?

Comment Re:Politics aside for a moment. (Score 3, Insightful) 538

...and I'll bet pretty much any ranking politician does much the same, and thinks along the same lines - in any party, in any country, in any system of governance.

If I'm honest, I reckon to be a politician of any note, you pretty much have to be a bit under-handed from time to time, and you pretty much have to push the rules to their limits. If you just want to be a local politician, or even maybe a national politician that doesn't do much more than that (what we call 'back bench' here in the UK) then you can probably be fairly noble, if you really want to be. If you've got any sort of ambition though, then you've got to 'play the game' considerably harder than that, and so pushing boundaries of the rules/decency/morality start to become more of a requirement.

Comment Re:AI endpoint is key (Score 1) 71

interesting... so if your genetic algorithm were written in some "simple" high level language, then the second level 'noodling' would be easier as it would have less potential options to choose from. Thus, it could arrive at the destination in fewer generations, and the destination would be (hopefully) easier for us puny humans to understand.

This approach means you need higher raw power to run the first and second level algorithms, and as such will need a higher minimum processing power to achieve it. However, I look forward to the day where you buy a "vanilla" computer, and just ask it "make me a word processor", whereupon it just goes ahead and 'evolves' one for you (admittedly, you might not need a word processor much by then, but you get the point). When you've written your book, you send it to your friend to read. She receives a bunch of bytes in an email attachment, and just says to her computer "find a way to read it", rather than having to know it was created in SomeonesProduct v2.3 - her computer just 'evolves' a reader for your particular file type - there's no need to make sure both of you have the same software at the same time.

Comment Re:Almost going after the guys who ruined the econ (Score 1) 66

Anyone know how the FBI/others know it was him? I mean, he's been charged, presumably whilst absent, so there must be some 'damning' evidence of some sort. It's easy to say "we traced some connections to his house in Meerkovo", but how on earth did they do such a thing, and how can they be sure that it was actually him? I mean, wouldn't he have covered his tracks pretty comprehensively? I presume they (also?) found him lurking on some IRC channels or some such, but again, how would they know it was really him?

I dare say a lot of the methods they use are secret (eg. the NSA methods), but surely the principles of them must be public record if they've been used on anyone else.

Comment Re:Can someone explain node's supposed speed (Score 1) 319

Just to add, that the event driven thing makes a difference where you're doing lots of small transactions - in that case, you can support thousands of incoming requests with just one process using a relatively small amount of RAM. You can really make it fly by locking it to a CPU core and giving it real-time priority. If you expand that out to all but one of your system's cores, then assuming you have the ram, one box can serve nearly everyone on the planet, just so long as no one asks for anything too complicated. That's a pretty specialised use-case, which very few of us really need to think about.

However, as you say, almost no one really needs to squeeze the last few percent of performance out of any web app they're running. Your boss might complain about the cost of another server, but it's easily manageable in the grand scheme of things. That being the case, having a slightly inefficient stack, and some occasional cross-core IPC, in exchange for keeping your systems pretty close to vanilla, and keeping your code, testing and deployments super-simple makes a lot of sense.

Comment Re:... and this is surprising how? (Score 1) 153

Absolutely.

Samsung just can't write software. Every piece of software they're responsible for has a problem one way or another (or at least all the ones I've ever seen - and I've got a Samsung phone or two, so I've seen a lot). Their hardware is generally good, so they should stick to doing that and let the rest of us take over their software. Hell, if they had the whole of their "smart" features in a sort of plug-in box, then they could invite other 'partners' to make entirely new TVs out of their base hardware - that would be awesome for us consumers and it would mitigate the utter shitness of their own software.

If in doubt, unplug the TV - all the smart bollocks you've paid for are now useless, but at least you're safe.

Comment Re:Who cares? (Score 1) 153

I know you're A/C and so have a lower bar of thinking to reach than the rest of us, but it amazes me that you can't see the problem here.

You live in a neighbourhood, that presumably you chose and like. You presumably know your neighbours, at least vaguely. This TV (with the feature enabled, and if it's buggy, without the feature enabled) means you're now living in some shithole backwater in Elbonia where some geeks are using what you say for nefarious purposes. You're also living next door to the NSA, GCHQ, whomever the KGB turned into, and countless others - in fact, you have no way of ever knowing who you "neighbours" are.

Slashdot Top Deals

If you want to put yourself on the map, publish your own map.

Working...