Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror

Comment Bluetooth (Score 1) 203

I don't know why no one has mentioned this but printing from most devices is pretty easy, all you need is a printer with either built-in bluetooth or a host USB port (usually used for mass storage devices). Just plug in a Bluetooth dongle and it'll become visible, send it a file and it'll print. I had an HP which did this 5 years ago and I sent it files from a Symbian phone. Thanks to intents, any application which wants to send a file can queue a print job.

Android

Submission + - Android Ice Cream Sandwich Source Released (google.com)

grcumb writes: Looks like the folks at Google have made good on their promise to release the Android 4.0 source code. Android software engineer Jean-Baptiste Queru writes: "Hi! We just released a bit of code we thought this group might be interested in. Over at our Android Open-Source Project git servers, the source code for Android version 4.0 (Ice Cream Sandwich) is now available."

"This is actually the source code for version 4.0.1 of Android, which is the specific version that will ship on the Galaxy Nexus, the first Android 4.0 device. In the source tree, you will find a device build target named "full_maguro" that you can use to build a system image for Galaxy Nexus. Build configurations for other devices will come later."

If the Cyanogen elves get busy Daddy just might be getting a new ROM for Christmas....

Piracy

Submission + - Pirate Party Gains Another Seat In EU (activepolitic.com)

bs0d3 writes: Amelia Andersdotter is a member of the Swedish Pirate Party elected in 2009. Originally her votes were not enough to beat fellow pirate Christian Engstrom for a seat on the European Parliament. Today the EU has redrawn the lines and Twelve countries are to gain one or more MEPs including Sweden where Andersdotter is set to be confirmed.

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

"I have more information in one place than anybody in the world." -- Jerry Pournelle, an absurd notion, apparently about the BIX BBS

Working...