Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Displays

Submission + - The Best and Worst from CES 2013 (informationweek.com)

CowboyRobot writes: "InformationWeek has collected what it considers to be the five dumbest ideas presented at this year's CES. The list includes: "The HapiFork is an electronic fork that tracks how many mouthfuls of food you consume during a given meal, how many seconds pass between bites, and how long the meal took to complete." Also on the list is the iPotty, which is about what you would guess from the name. And for balance, the list of the seven standout technologies includes 3M's 84-inch touchscreen display and Parrot's $300 "AR Drone 2.0, a gravity-defying spectacle that puts yesteryear's remote-control helicopters to shame with its ability to dive, spin and whirl through the air.""

Submission + - David Hernandez Chicago Actor Portrays Gang Leader in the Mob Doctor (imdb.com)

An anonymous reader writes: David Hernandez has been cast for the Role of Umberto Cruz the leader of The Latin Kings in the latest episode of the Mob Doctor. The episode is called "Game Changers". Mr. Hernandez rugged street look has also been called for in the New series "The Chicago Fire" However, the role was a one line part and David Hernandez agent refused the role as David Hernandez is a strong actor who has worked in many films and can carry the part up next to any lead.
Chrome

Submission + - Web Browser Grand Prix: Firefox 15, Safari 6, OS X Mountain Lion (tomshardware.com)

An anonymous reader writes: The latest browser benchmark results are in for Mountain Lion and Windows 7. On the OS X side, Safari 6 simply steals the show. Chrome 21 comes in second, followed by Firefox 15 which also presents a speedy option for Mac users. Meanwhile, Opera 12.02 isn't exactly the fastest OS X browser these days, placing last in test after test.

Google takes the lead in Windows 7, with Mozilla being a very close second. Between the stellar performance of Chrome and Firefox, combined with the loss of Safari for Windows, Opera takes a nosedive (comparatively) in the rankings. IE9 ties Opera for last place.

Testing in nearly every performance category shows that all the OS X browsers are slower than their Windows versions. Chrome holds up very well between operating systems, and could be considered the best cross-platform browser — an older article shows it scores the highest on Linux as well. Firefox is the second-best choice for HTML5 hardware acceleration on both OS X and Windows, only behind OS-natives Safari and Internet Explorer. IE9 still has the fastest single page load times and solid HTML5 performance. Despite Opera's comparatively poor performance it's still the most stable browser on any platform, requiring the least number of reloads and remaining responsive even when attempting to render 40 pages simultaneously. And although Safari for Windows is dead, Safari for OS X has never been better.

PlayStation (Games)

Submission + - PlayStation Vita hacked, homebrew on the way (playerattack.com)

dotarray writes: Just nine months after launch, and gamers claim to have hacked the PlayStation Vita, meaning homebrew games and apps might not be so far away. Back in April, the Vita Half-Byte Loader meant that Sony's latest handheld was capable of playing unsigned code within the built-in PSP emulator. Now though, an affiliated developer claims he's figured out how to get unsigned Vita code running as well.
Linux

Submission + - Linux K90 - Custom Input Support (github.com)

jupiter126 writes: "After 10 years of intensive use, I decided to get a new keyboard. I choose one of those fancy multimedia keyboard (Corsair k90), in order to have plenty of keys to play with.
I had a 'nice' surprise when upon connecting, I discovered that almost none of the extra keys where supported by xorg (linux). Anyway, smart people check for compatibility before buying, and real man assume their impulsive buying afterwards.
So here we are, one week later, I came up with a little bash script that allows the proper use of the keyboard.
The interesting bit is that this script should be able to handle many more types of keyboards, wiimotes and custom inputs with quite minor adaptations.
The code is open source of course... I hope it helps some :)"

Privacy

Submission + - Sir Tim Berners-Lee accuses UK government of "Draconian Internet Snooping" (telegraph.co.uk)

An anonymous reader writes: According to British daily The Telegraph, Sir Tim Berners-Lee has warned that plans to monitor individuals' use of the internet would result in Britain losing its reputation as an upholder of web freedom. The plans, by Home Secretary Theresa May, would force British ISPs and other service providers to keep records of every phone call, email and website visit in Britain. Sir Tim has told the Times: "In Britain, like in the US, there has been a series of Bills that would give government very strong powers to, for example, collect data. I am worried about that." Sir Tim has also warned that the UK may wind up slipping down the list of countries with the most Internet freedom, if the proposed data-snooping laws pass parliament. The draft bill extends the type of data that internet service providers must store for at least 12 months. Providers would also be required to keep details of a much wider set of data, including use of social network sites, webmail and voice calls over the internet.

Comment Re:Patience (Score 1) 2

Found an easy solution at http://elonen.iki.fi/code/misc-notes/remove-duplicate-files/

OUTF=rem-duplicates.sh; echo "#! /bin/sh" > $OUTF; find "$@" -type f -exec md5sum {} \; | sort --key=1,32 | uniq -w 32 -d --all-repeated=separate | sed -r 's/^[0-9a-f]*( )*//;s/([^a-zA-Z0-9./_-])/\\\1/g;s/(.+)/#rm \1/' >> $OUTF; chmod a+x $OUTF; ls -l $OUTF

This solution is based on the md5 checksum, it is probably the fastest and least reliable of checksums; sha256 or sha512 would be better but will require much more time to run.
This solution requires you to run some version of linux (a knoppix or ubuntu live CD should do).

Comment Patience (Score 2) 2

In my opinion, patience is your tool of choice. The issue with the program you tried, is that you won't know if it works well before you use it - so maybe you might want to search info on how it runs, so you can make sure it will sort your files as you wish. The way I would (will actually, cause I'm heading towards the same problem) is to make a simple script that calculates checksums for all files - and then find dupes based those checksums. I would choose this approach for two reasons: 1. The computer can't understand the contents of files - so there is no point checking it. 2. Checksums are faster to compare than files (though they are longer to calculate - but probability shows that is the way to go as you will need to make all possible comparison between pairs of 4.8million elements - or 4.800.000 (close to 250 000 000 000). Calculating checksums is a CPU intensive task, so the faster the cpu, the faster it will go - depending on the most acceptable factor (time or errors) are the checksums methods you can use. Checksums are not perfect and to reduce errors, you might want to use two checksum algorhytms, although the time required will more than double. I come back to my conclusion, patience, waiting one week was nice, but seen the amount of data you need to sort, I wouldn't be surprised to see the computer running 6 months (or 2 years) to do the sorting.
Graphics

Submission + - New OpenGL version released (khronos.org)

An anonymous reader writes: The specification for OpenGL 4.3 has been released by the Kronos Group at the SIGGRAPH 2012 conference in Los Angeles. New functionality includes compute shaders, shader storage buffers, improved debug message output, memory security improvements, robustness improvements, texture parameter queries, and more.

http://www.khronos.org/news/press/khronos-releases-opengl-4.3-specification-with-major-enhancements

Comment Re:seriously (Score 1) 5

My sarcastic answer wasn't at all oriented towards your post but rather toward the actual patent system.

If inventors --- sorry - investors --- keep on using patents like they are ( shape - weight - size ), then we shouldnt be surprized they start to patent colour - material and why not natural states: 'My tablet is a solid: his should be liquid or gas to be different!'

Slashdot Top Deals

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

Working...