Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Submission Summary: 0 pending, 31 declined, 11 accepted (42 total, 26.19% accepted)

Databases

Submission + - Canonical drops CouchDB from Ubuntu One (h-online.com)

rsk writes: "Since the Ubuntu One desktop synchronization service was launched by Canonical it has always been powered by CouchDB, a popular document-oriented NoSQL data store with a powerful master-master replication architecture that runs in many different environments (servers, mobile devices, etc.)

John Lenton, senior engineering manager at Canonical, announced that Canonical would be moving away from CouchDB due to a few unresolvable issues Canonical ran into in production with CouchDB and the scale/requirements of the Ubuntu One service. Instead, says Lenton, Canonical will be moving to a custom data storage abstraction layer (U1DB) that is platform agnostic as well as datastore agnostic; utilizing the native datastore on the host device (e.g. SQLite, MySQL, API layers, "everything"). U1DB will be complete at some point after the 12.04 release."

Cloud

Submission + - AWS ELB Sends 2 Million Netflix API reqs to wrong (thebuzzmedia.com)

rsk writes: Amazon Web Services's Elastic Load Balancer is a dynamic load-balancer managed by Amazon. Load balancers regularly swapped around with each other which can lead to surprising results; like getting millions of requests meant for a different AWS customer. Using ELBs can result in AWS unintentionally introducing a man-in-the-middle (attack) into your application environment. Most AWS users do not realize this can happen and have not secured against it.
Printer

Submission + - Makerbot Thing-o-Matic 3D Printer Review (prestonlee.com) 1

rsk writes: A review of the $1200 Makerbot Thing-o-Matic 3D printer. After a 16-hour self-assembly and a few weeks of use a blown PSU was replaced with a higher powered PSU via a mod to the Thing-o-Matic. Video of the Thing-o-Matic printing out little solar panel mounts from Google Sketch-up included in the review. Final thoughts suggest that the Thing-o-Matic is not a great gift for non-engineers: You need a decent understanding of robotics, hardware, software, electronics and mechanics, need a little hand dexterity and a ton of patience.

Submission + - Amazon Fake Products and Fake Reviews (thebuzzmedia.com)

rsk writes: The first time I came across fake reviews on Amazon, it was hilarious. Using Amazon's Window Shop app I came across a great category, "Peculiar Products", and was more than happy to look through it. Almost every one of the products I found on the list (Uranium Ore, 1 Gallon of Milk, Parent Child Test, Fresh Whole Rabbit) were fake with thousands of reviews on them. As a shopper, I wasn't aware of how easy it was to apparently fake product reviews and it bothers me. When I'm shopping, the first (and a lot of times only) place I visit is Amazon to read the reviews if I'm in the market for something. I don't expect the reviews to be the word of God, but I do assume a certain level of legitimacy for most of them. While this won't effect my use of Amazon (especially not at this time of the year) I would like to bubble this up to Amazon's attention so some time is spent on improving the quality of the reviews.
Java

Submission + - Java IO Faster Than NIO – Old is New Again (thebuzzmedia.com)

rsk writes: Paul Tyma, the man behind Mailinator, has put together an excellent performance analysis comparing old-school (java.io.*) synchronous programming to Java's (java.nio.*) asynchronous programming showing a consistent 25% performance deficiency with the asynchronous code. As it turns out, old-style blocking I/O with modern threading libraries like Linux NPTL and multi-core machines gives you idle-thread and non-contending thread management for an extremely low cost; less than it takes to switch-and-restore connection state constantly with a selector approach.
Microsoft

Submission + - Adding CSS3 Support to IE 6, 7 and 8 with CSS3 Pie (thebuzzmedia.com)

rsk writes: Internet Explorer 6, 7 and to some extent 8 have been the bane of every CSS-loving web developer for years. With the spreading adoption of CSS3's fancier rendering effects like rounded edges, drop shadows and linear gradients, the frustration of needing to deal with IE compatibility is growing. 327 Creative's Jason Johnston has created the CSS3 Pie library to address this. CSS3 Pie adds support for CSS3's most popular rendering techniques to Internet Explorer 6, 7 and 8 by way of the IE-only CSS property "behavior". CSS3 Pie is open sourced under the Apache 2 license and can be accessed from it's github repository.
Google

Submission + - Issues with 3G Signals on T-Mobile with Nexus One (breakitdownblog.com)

rsk writes: One of the most popular questions on the Google Nexus One support forums is the 'Spotty 3G?' thread with almost 700 posts of users complaining about their 3G signal coverage fluctuating up down and between EDGE/3G with the phone just sitting on the desk or compared to other 3G devices on the T-Mobile network that don't offer the same unpredictable behavior. One workaround that seems to fix the issue is forcing the phone into "3G" or "WCDMA Only" mode. This is a bit of a downer given that T-Mobile just finished their 3G upgrade to 7.2Mbps. Official word from Google is "We are investigating this issue...".
Movies

Submission + - Netflix Throttling Instant Video Streaming (breakitdownblog.com) 1

rsk writes: "For the last few weeks I've been experiencing terrible streaming video performance from Netflix on both my Xbox 360 and PC. While my Xbox 360 would at least stream at a lower resolution, my PC cannot seem to avoid 2hr buffering times before playback even started. I smelled shenanigans and started digging. With some help finding the debug menu for the streaming video player, I set out to figure out why playback was so slow. It seems that Netflix is significantly throttling Watch Instantly users (on the PC) down to an unusable cap on a per-connection basis."
Google

Submission + - Google Open Sources Android (breakitdownblog.com)

rsk writes: "It's official, Google has Open Sourced Android. The source code can be downloaded from Android's Git repository. Bugs are handled at the Google Code Android project page with documentation being handled by a collection of Google Site pages.

One of the more interesting aspects of Android seems to be the seemingly Eclipse Foundation-like organization of the project, welcoming both Individual and Commercial developers into the Android development pot. One of the benefits of this arrangement is securing the existence of the project by involving commercial interests and their money in the process... this is also one of the downsides; having commercial entities charter and lead features of a platform that their own commercial offerings provide "enhanced" versions of, sometimes leaving the free offering always lacking in one obvious way or another. It's hard to say at this point how involved Google will be in this process, or the Open Handset Alliance in general, with managing the health of sub-projects under the Android umbrella as time goes on."

Java

Submission + - Computerized Lego Art Project (breakitdownblog.com)

rsk writes: "Justin Voskuhl, a Google engineer, in a 2-fold bid to fight boredom one weekend and figure out something to cover a large barren wall in his living room, developed a Java program using an annealing algorithm to figure out the best layout and colors of Lego blocks to reproduce a source image exclusively in Lego blocks inside a frame. He plans to release the source code soon. I probably would have just painted the wall..."
Programming

Submission + - Easy Encryption in Java and Python with Keyczar (kallasoft.com)

rsk writes: "Keyczar is an encryption toolkit born out of the Google Security Team and released under the Apache 2 license. Keyczar's purpose is to make managing encryption of secured data much easier than it exists today with the following features: A simple API, Key rotation and versioning, Safe default algorithms, modes, and key lengths, Automated generation of initialization vectors and ciphertext signatures, Java and Python implementations (C++ coming soon), International support in Java (Python coming soon). The example on the website is only 2 lines long and we also provide another for folks wanting to get started "for reals"."

Slashdot Top Deals

186,000 Miles per Second. It's not just a good idea. IT'S THE LAW.

Working...