Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Submission + - The Reverse Geocache Puzzle Box

whitefox writes: An enterprising friend of the bride & groom hands them a wedding gift. They unwrap it to find a locked, wooden box the size of a book with a small LCD screen and a single button. When they press the button, assuming a GPS signal is available, a message appears:

Bonsoir, famille Immel!
This is attempt 2 of 50.
Distance 391km
*Access Denied*
Powering off...

What follows is an interesting story on the creation of a puzzle box that will only unlock itself when it's in the right geographic location and its presentation to the newlyweds. A follow-up sequel to the story is now available.

Programming

Submission + - Development Hardware Requirements

Monkeedude1212 writes: So after a handful of successful flash games our game development team has decided to kick it up a notch and produce something "Real" and "Possibly Profitable". We've settled on Valve's Source Engine not only because its free and open source, but it already has a distrubution method tied to it (Steam). The problem is that we are all running on some pretty old hardware, myself being on a laptop thats approaching 4 years old. If Any of you have ever tried to Recomplile Half Life 2 with 2 Gigs on Vista you'll know that it can take the better part of a day to finish. So its time for an upgrade.

Sadly, I am not a hardware junkie, nor do I know any, so I'm not 100% on exactly what's best to suit my needs for development. I will be running windows (Either XP or 7) and Visual Studio 2008. I had once worked on a Mac Pro, the 2x Quad Core with 32 gigs of Ram, and I found it to be a dream. So I want something comparable to that, but I want it cheaper. If I order parts from Tiger Direct I'm sure I could get a good rig going at a fraction of the price of buying one setup.

So I am opening it up to /. — Can it be done? The Price Range is anything below $3,300. Minor preference towards NVidia (but not necessary). Any suggestions on where else to order are also welcome.
Security

Submission + - Gizmodo serves malware and blames Linux and OS X (gizmodo.com)

JacobSteelsmith writes: The very popular, technology focused blog Gizmodo was apparently duped into serving advertisements offering 'scareware.' These advertisements notified users that their PC was infected with malware, and offered up 'antivirus' software. It's not clear whether this was a drive by installation or if it required user interaction.

In an apology, the author claims the staff would have noticed sooner 'except everyone on staff is on OS X or Linux for production machines.' They did not say whether AdBlock prevented them from seeing the advertisements, or they did not notice any installation prompts. The author says the advertisements only ran 'for a little while' and only 'a few people' should have been affected. The blog post warns to look for qegasysguard.exe if you are experiencing random popups.

Comment Re:don't name by person just makes it harder to do (Score 4, Informative) 688

My old university/job used a three letter department code, and then the last six digits of the asset tag. You'd get systems like ITS-26301 and MTH-31415.

This is pretty solid, especially because:

  1. Machines rarely if ever change departments. Even the laptops. Entire departments can change buildings without issue; sociology moved across campus, and we were like, "Wait, when did you guys get the fuck over here?"
  2. The first four digits of any asset tag (in the foreseeable future) are fixed, so just prefix it with 7802 and look it up in the online database (or Mac OS X dashboard widget made by yours truly, for the two other people in IT who have and use Macs) for more information than one cares to know.

Your mileage may vary.

Google

Submission + - IPv6 at Google: A Chat With Lorenzo Colitti

Alex Band writes: IPv6 Act Now has posted a recent video interview with Google network engineer Lorenzo Colitti, in which he discusses the experience of making Google services available over IPv6. "We're committed to a good user experience and IPv6 will give us that when IPv4 addresses run out," he explains in the video, adding that, "We basically went from zero to being able to serve most Google services over IPv6 to users that had good connectivity in a year and a half. Lots of progress can be made because it's not a huge undertaking." Colitti is the latest to appear on the IPv6 Act Now website. It already features discussions with, for example, IIJ's Randy Bush on IPv6 deployment and Cisco's Patrik Fältström on the role of governments with regards to IPv6. New interviews are released on a regular basis.

Comment Re:Argument moot, just use both (Score 1) 459

That's an excellent client-side solution.

In the interest of asking, though, what about a server-side solution? One could use HTTP Accept headers and content negotiation in the HTTP server, if you'll excuse the slight dip in performance. For example:

  1. Browser requests /path/to/video.
  2. The browser sends the Accept header (or X-HTML5-Video-Accept header, if you want it that way), which contains video/mp4;q=0.9; video/ogg;q=0.8.
  3. The server sends /path/to/video.mp4.

Likewise:

  1. Browser requests /path/to/video.
  2. The browser sends the Accept header (or X-HTML5-Video-Accept header, if you want it that way), which contains video/ogg,*;q=0.1.
  3. The server sends /path/to/video.ogg.

Something like that, at least. In fact, were browsers to add video MIME types to their Accept headers, one could implement this yesterday. This solves the issue of codecs, as long as content providers make it available in as many formats as possible.

Slashdot Top Deals

THEGODDESSOFTHENETHASTWISTINGFINGERSANDHERVOICEISLIKEAJAVELININTHENIGHTDUDE

Working...