Comment Re:SlashBI (Score 1) 339
But we already have that!
But we already have that!
Given that the article says it crashed onto the highway, and helicopters aren't known for gliding, I'd say they were on top of the highway.
Their video shows the drone flying away from the highway, then returning towards the highway presumably after it was shot at; around 2:15 in the video, it looks like it took some damage to one of the rotors, so it was perhaps damaged enough to no longer maintain altitude, but not enough to prevent them bringing it back under some control.
the hunters knew they were doing something that would be considered fucked up, otherwise they could have just gone on with the shoot.
Something tells me a large artifical thing floating around and making noise scares off the birds somewhat.
He never said a QR code would be the *only* way to RSVP; as an option, it's fine, as long as it's not the only option.
To those who are unfamiliar, each commit in Git has a SHA1 hash which is used as an identifier instead of a revision numbers. Unfortunately, they are very unwieldy to communicate to others. At work we always use the name and date-time instead, but that has problems as it doesn't convey the branch for instances when it matters.
You don't have to use the entire SHA - e.g. for a long unwieldy SHA like a809deeb979c33a7cc9ac48da72a2a22eaa7dc62, you can simply refer to it as, say, commit a809deeb, or even a809 - as short as you like, as long as it's still unique. In most repositories, the first 8 characters should be a pretty safe bet.
I checked out the full repository of an open source project I have been tinkering with in both SVN and Git (libgdx). The SVN was MUCH larger than the Git repository on my hard drive (i think 33% more, but I can't remember).
I think the point being made was that, in Subversion, you can check out just a small part of the repository if you want to do so, rather than the whole thing. I'm not aware of that possibility in Git.
If they use ProFTPD for hosting the code too, why wouldn't the Hackers just use that same exploit on that? Why do they need to insert another way in?
I suspect whatever vulnerability was used allowed the attackers to upload files, but didn't give them actual control over the machine; their backdoored version, as stated in the article, allowed attackers to gain root on the box.
[What if, for a start...] the OpenOffice "effort" split into the (clumsy) user interface and (not that good) underlying render library? And make the whole thing available in a more free license?
Instead of coming up with such an ergonomical disaster?
[...] Such a pointless effort from the OO staff just makes me wonder whether Sun (or is that Oracle?) just want to ditch OpenOffice altogether.
Their FAQ says:
Is the OOMouse part of OpenOffice.org?
No, the OOMouse is produced by a private company called WarMouse. OpenOffice.org is a open source software community. The OOMouse comes with profiles designed specifically for use with the five primary OpenOffice.org applications utilizing information gathered by OpenOffice.org's Usage Tracking group.
It was produced by a private company, it seems the most OO had to do with it was providing stats on which features were most commonly used, and agreeing for their "brand" to appear on it.
IRC in itself is pretty good, but it misses a couple of features, like offline backlogging and some kind of more direct integration with pastebins, source code repository and such.
If you want offline backlogging, an IRC bouncer like ZNC can take care of that for you. As for pastebins, pasting the URL to a post is dead easy; there's plenty of IRC bots out there which can automatically post a "$user has made a new pastebin post at $url" message to a channel as soon as someone posts.
At work, we use IRC to communicate, we have a copy of the codebase from pastebin.com with a small modification to report pastebin posts to our development channel, and a script run from a Subversion post-commit hook which reports commts to the channel with a link to view the diff.
Works pretty well for us!
[How can it still be a zero day exploit]...if everyone knows about it?
Being an attack against a vulnerability for which a patch has not yet been released qualifies it as a 0-day attack.
From Wikipedia's Zero day attack article:
A zero-day (or zero-hour) attack or threat is a computer threat that tries to exploit computer application vulnerabilities that are unknown to others, undisclosed to the software vendor, or for which no security fix is available.
(Of course, one security fix is available: disable Flash, or use Flashblock
That's why the sensible money is on buying a fairly small SSD on which you put your OS & apps for speed, and a large normal HDD for your data.
Public transport doesn't work for everyone. It's of little use in rural areas, or to people who need to travel at times when it is unavailable (night shift workers, for instance).
Even when it's available, I could leave my house, walk about 10 minutes to a bus stop, then spend 30-40 minutes on a bus that travels a convoluted route across town, stopping every minute or two. Or, I could walk outside, get straight in my car, and drive directly to the same destination in about 10 minutes in comfort, with no waiting for the bus, easily carrying whatever I need, with control over the temperature in the cabin, the music, happy in my own little world. I can return whatever time I want to, without wondering if it's too late for the last bus.
Public transport still has a long way to go.
So, you can't stab someone with it, you have to slash them instead?
A well-placed slash to the throat is still likely to cause death through blood loss.
The knife isn't the problem, it's the nutter holding it that you need to deal with!
Never test for an error condition you don't know how to handle. -- Steinbach