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

 



Forgot your password?
typodupeerror
×
Space

Submission + - Angry Bird Catapulted Into Space (discovery.com)

astroengine writes: "Not satisfied with being catapulted across iPhone and iPad screens all over the world, this particular Angry Bird (the "plain old projectile" one) decided to use the ultimate catapult to blast himself into space: a Soyuz-FG booster rocket. The Soyuz capsule successfully launched two cosmonauts and a NASA astronaut to the International Space Station last night, and they used the Angry Bird soft toy as a "zero gravity indicator."

"As you can see from the Angry Bird floating above Shkaplerov, the crew has reached orbit," the NASA launch commentator said humorously during the live NASA TV footage of the launch."

Comment Re:How about Fedora? (Score 1) 685

Simply using the list of installed files to search against is not a hack, is well documented and works exactly as expected. Also, if a file wasn't installed through the package manager, dpkg will tell you as well:

$ dpkg -S weeblefrob
dpkg-query: no path found matching pattern *weeblefrob*.
$ dpkg -S /usr/bin/weeblefrob
dpkg-query: no path found matching pattern /usr/bin/weeblefrob.

Only one version of any given package may be installed at any time and to see which version is installed you can use either dpkg -l $package or apt-cache policy $package (this tells you which version would get installed, too). If you want to search for files in all packages (even those not installed), you can use apt-file.

Comment What's the point (Score 0, Flamebait) 225

Why would anyone drive around in their laptops? Anyone who has one of those know how quickly they die. Sure, electric cars don't produce CO2 but those batteries aren't exactly environmentally friendly on the inside, they need replacements after a certain amount of cycles and the power for the charger still needs to come from somewhere. Could be coal plants for all we know. Investments in these type of cars are useless, no one will be driving around in these kind of cars for long.

You see, petrol has been used quite successfully for the past 100 years and we need something which will last for at least another 100 years. Perhaps something like, you know, hydrogen.

Comment Re:How about Fedora? (Score 1) 685

I don't see how dpkg -S can't do this, why would a filename search against all packages be inadequate? Perhaps an example would be useful:

$ dpkg -S `which git`
git: /usr/bin/git

Here, `which git` returns /usr/bin/git and since packages must not overlap in the filesystem dpkg will always return one package name when given a full path. Even for example with ls, when there's also lsmod, lsof, lsusb, etc.

Slashdot Top Deals

Our OS who art in CPU, UNIX be thy name. Thy programs run, thy syscalls done, In kernel as it is in user!

Working...