Search
Search the archive with full-text matching across story titles, bodies,
and comments. Phrases are quoted; or, -word,
and parentheses behave as in a web search. Queries must be at least
3 characters.
Stories · 3,462
-
Requiem for the Once-Imagined Future
Carl Bialik from the WSJ writes "The underwhelming Discovery mission has the Wall Street Journal Online's Real Time columnists lamenting the space program's failure to realize the sort of intergalactic exploration they once imagined as kids through the works of Arthur C. Clarke and Robert Heinlein. Considering the Viking landers were digging around Martain soil back in 1976, 'we figured the place would be necklaced with orbiters and cris-crossed by rovers by now. Maybe there'd even be astronauts (or cosmonauts or taikonauts) tracing the courses of unimaginably ancient rivers.' Instead, we get a mission whose highlights were 'a) it came back; and b) an astronaut pulled bits of cloth out from between tiles.' At this rate, the columnists fear the innovations of the future won't be much more exciting: 'Maybe Real Time 2030 will fret about how our college kids do little more than steal full-res holographic porn when they're not getting their financial identities stolen by cyber-jihadists eager to build more backpack nukes.'"
-
PCs in the Living Room?
mwebert asks: "OK. I figure a large number of my fellow Slashdot readers have encountered this same scenario, so please respond. Right now, we keep our Dell Inspiron notebook on the corner of our coffee table in the center of our living room, accessing our home wireless network, and allowing the user to see the TV and multitask their little heart out. (Yay, IMDB!) That said, sitting on the edge of the couch (or worse, the floor) is getting old fast. Of course, I could get a true desk, but I don't want it to face the wall or corner, and I don't want it to turn the decor of my living room into a dentist's office reception area. I'm looking for a handsome (yet unobtrusive and functional) rolling workstation, preferably with a shelf/drawer or two. I've checked out http://www.anthro.com/ - but their offerings look pretty utilitarian, don't they? Any other ideas?"
-
Best Way to Handle Email for a Small Domain?
CorkBobbingInTheSeaOfLife asks: "Our company just had its bi-annual email crisis/outage, so my boss wants to try something new -- to give me the 'opportunity' to figure out and implement a better way to host our small domain's email. We've changed hosts a few times, but whether we spend a little money or a lot none have been as reliable as we've liked -- companies fold, get blacklisted by AOL, and so forth. Is there a way to be smart about this, without hiring a dedicated email server pro? Do reliable email hosts actually exist? Should we run 'email appliance' software (such as ClarkConnect or E-Smith) on our own server? I'd appreciate any tips here - hell hath no fury like people without email, and I am very afraid..."
-
Server Makers Push Linux
Rob writes "The bi-annual LinuxWorld trade show is under way this week in San Francisco, and once again the major platform makers are swearing their fealty to Linux and trying to figure out any angle they can to use Linux as a lever to wrest sales away from their competition and money out of their customer bases. The Linux market has largely proven itself (even if it is still dwarfed by Windows and Unix), and now the major server makers are getting down to the brass tacks of marketing as well as broadening and deepening their support of Linux on their platforms." Also FYI, I will be attending the Slashdot BOF session on Wednesday and answering questions. I'm hoping to be able to show people a good demo of Slashdot in CSS!
-
What Xbox Games Will Be Backwards Compatible?
alvinrod writes "IGN has whipped up a nice article about how and which Xbox games will be compatible with the Xbox 360. The article explains that Microsoft is using emulation to play old Xbox games rather than including the chipset from the original Xbox. From the article: 'Xbox 360 compatible games are going to be decided on a case-by-case basis. Microsoft's engineer's are, right now, figuring out which games are compatible, and which are less than compatible. Thus, at the 360 launch, only a few games, let's speculate that number is somewhere between five and 20, will be backward compatible.'"
-
Visual Studio Hacks
Jim Holmes writes "Microsoft's Visual Studio is an elephant of an IDE. It's got tremendous power and adaptability, but it's difficult to dig through all the less-than-helpful documentation. It's also very tough to figure out which of the many available add-on tools are worthwhile to add. Visual Studio Hacks by James Avery is a terrific reference for helping get the most out of Visual Studio." Read on for the rest of Holmes' review. Visual Studio Hacks author James Avery pages 512 publisher O'Reilly rating Outstanding reviewer Jim Holmes ISBN 0596008473 summary Get the most out of Microsoft's Visual Studio
Disclaimer: James is a friend who's helped me with starting a developers group, and I'm also working on an open source project with him. The possibility exists that I may work on a paying project with him at some time in the future; however, I haven't had any financial dealings with him so far. (Other than I still owe him a beer for coming to speak at one of our group's meetings.) For what it's worth, I spent my own money to buy this book from Amazon. End Disclaimer.
Avery's book is great both for new users of Visual Studio as well as the more experienced developer. Also, readers won't have to worry about buying a book which will be outdated when Microsoft releases its next version of Visual Studio in November. Tips and tricks are included for Visual Studio versions 2002, 2003, and 2005.
VS Hacks spreads 100 "hacks" across 13 sensibly delineated chapters. Each hack is clearly marked with its number in a blue box at the upper, outer corner of each page. Hacks are also marked with a thermometer icon representing the hack's relative complexity. One of my few complaints about the book is that the moderate and expert icons look too similar - but frankly I ignore these icons anyway, so the criticism's most likely wasted.
The introductory chapters on projects and solutions, navigation, and editor usage aren't introductory in skill level. Avery covers these topics in great depth, diving down to some useful, but less-than-obvious settings in VS's environment. Examples of this would include Hack #2: Master Assembly and Project References, where Avery shows how to add additional assemblies to the Add Reference dialog's list of .NET assemblies. This is a timesaver if you've got custom libraries you make frequent use of; adding the assemblies to the default list saves having to use the Browse button to search for the files every time you need to add them.
Some of the most uninteresting drudgework in development involves writing code for basic software elements such as business entities or data access layers. It's repetitive, it's template-like material, and it's boring. Documenting such work is every bit as tedious.
Hack #50 covers using CodeSmith to generate code via templates. Other hacks detail tying UML into the development process. Hack #81 covers using Visio for Enterprise Architects to generate code from UML diagrams. Hack #82 covers the opposite of that process: generating class diagrams via Visio's reverse engineering support. (UML's capable of much, much more than the simple drudgework of business entities or data access layers, and these hacks shouldn't be confused with anything more than a cursory introduction of how to tie UML via Visio into Visual Studio.)
One of the most useful sections is Chapter 5: "Debugging." This chapter focuses on getting the most out of Visual Studio's debugger capabilities. These hacks are critical helpers to good developers effectively use Visual Studio's debugger.
Avery covers the basics of setting up breakpoints, diving down to various options such as setting how often to break on specific break points, or setting conditional break points. He then moves on to troubleshooting breakpoints in Hack #37, and there's also great coverage on using Visual Studio to debug scripting code inside a browser session, working with SQL server, and attaching to a running process or one that's just about to crash.
I found the best content of this book in hacks focusing on making the most of tools both inside and out of Visual Studio. Hack #79 is a great section detailing how to stress test web applications using Visual Studio Enterprise Architect's Application Center Test. This hack makes it easy for readers to understand how to get detailed stress testing on a web application. Along this same line, Hack #80 shows how to make use of the Dotfuscator tool to obfuscate .NET assemblies to protect them from modest efforts at reverse engineering. (Like Java, .NET assemblies can be disassembled, revealing all your hard work and intellectual property.)
Other gems in this same arena include tools for running and debugging unit tests inside Visual Studio (#93), testing regular expressions (#100), and using tools which automatically generate documentation based on naming conventions in the source code (#69).
The mechanics of this book are great. The Table of Contents breaks down each chapter by its individual hacks, and the index is very detailed and clear. I also like how hacks are listed on the top of each page, making it quick to find something if you know the hack's number or name and don't want to fuss with the table of contents.
My sole complaint about the book (aside from the annoying thermometer icons I've already mentioned) is that it's not always clear which add on tools work with which version of Visual Studio.
The author maintains a website specifically for this book, complete with code and tool downloads. RSS feeds are also available to monitor any updates the author makes.
This book is a critical addition to the bookshelf for any developer who spends any amount of time working in Visual Studio. You'll become much more productive by using tips in the book, and you'll find tips to help you decide which add-on tools you'll want to make use of. More importantly, you'll understand how to get the most out of Visual Studio's capabilities.
You can purchase Visual Studio Hacks from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page. -
Looking at Birds in a Whole New Spectrum
Shipud writes "Historically, bird species are classified using may different indicators, including plumage colors. Also, plumage variation has figured heavily in description of similarity between species. In a recent article in PNAS, Robert Bleiweiss shows that if we look in the ultra violet spectrum, birds species which seem similar, or are even considered related based on plumage colors, appear quite different. Quite a few theories regarding supposedly sympatric (sibling) species would have to be re-checked now. And yes, birds can see in the near UV spectrum, which is invisible to humans."
-
Peter Tippett on Biomedicine and Security
gManZboy writes "IT security borrows some of its most basic terminology (e.g., virus) from biomedicine. It's therefore no surprise then that some of the top minds in the field have backgrounds in biomedicine. Two such figure are Peter Tippett, CTO of Cybertrust, who earned a medical degree and went on to develop what later became Norton Antivirus; and Steve Hofmeyr, who studied the marriage of biology and computation at MIT and later founded Sana Security. In this roundtable discussion, the two discuss how biomedicine informs their thinking about security and when and when not to apply the metaphor. Of particular note is their discussion of the pros and cons of using both signature and non signature-based methods of intrusion detection."
-
Simple-to-use ZigBee Hardware
An anonymous reader submits "I thought this was interesting. Up till now, ZigBee was only available as a chipset or some rudimentary modules. Now regular schmucks like me that don't want to mess with a soldering iron can use ZigBee and see if it sucks or not. These radios have a range of almost a mile and cost less than $100. Not bad since nobody else seems to offer anything like this (yet). Now I can get my laptop to communicate with some of my robotics projects without an RS-232 umbilical cord." (WikiPedia's page on ZigBee a is a good way to figure out whether this is interesting to you; in short, a low-power, medium-range radio spec for all sorts of interesting uses.)
-
Skype's Sale As Media Feint
ansak writes "Bob Cringely's latest article shows evidence that some aspects of the 90s bubble are indeed back: Why would Rupert Murdoch think of paying $3billion for a mostly free online service like Skype? But his last line shows a keen understanding of Murdoch's skills and methods: 'By putting Skype in play, he distracts for no money at all most of the major media companies. And while they try to figure out how to respond to VoIP, old Rupert will be attacking them on some completely other front. He'll be stealing their shoes.'"
-
Thousands and Thousands of Hours of PVR TV
Thomas Hawk writes "Cory Doctorow is posting over at Boing Boing about some technology that he apparently saw this weekend at London's Open Tech conference. According to Cory, this new technology from Promise TV takes the form of a home-built PVR with lots of high-capacity hard drives and claims to be able to record every show on every channel being recorded in the UK for an entire month. 'Why program a TiVo to get certain shows for you when you can record every single show on the air, all at once, and then use recommendations, search, a grid, or any other means you care to name to figure out which of those thousands and thousands and thousands of hours of programming you want to watch.' The company seems somewhat cryptic with a simple website that appears to be collecting your email addresses for an announcement in August. "
-
Sharp Zaurus SL-5500 Today?
TheAdmin writes "A few years ago the first Linux-based Zaurus, the SL-5500, was released for some $600 by Sharp. Today, it only costs $140 in some places online. This article at TuxTops reviews the 5500 from the point of view of trying to figure out how this model fares against today's PDAs and if it's still a good purchase after all these years, especially at this low price. And so I bought one recently because I needed a full-fledged pocket Linux at my workplace where I work as an admin. I just added a $30 Linksys WCF12 WiFi card (works out of the box after upgrading the SL-5500 ROM to version 3.10) which I use with SSH and by utilizing Zaurus' thumb-board. Works great and it's much more portable than a laptop, especially when all you need is some email and SSH on the go."
-
DS Wifi Bounty Set
Chris_Yates writes "A bounty has been set to go to the first person to release an open-source tcp/ip implementation for Nintendo DS's wifi hardware capabilities. It may not include illegal source from the SDK, it must compile under a free compiler, preferrably GCC, and you can use other libraries as long as they are non-contaminating. There are also three milestones to the bounty, the first one winning 50%, and the second two winning 25% of the bounty. They are: 1) Figuring out the register set to accomplish (specific list) 2) Implementing correct connect/disconnect code and implementing correct send/recieve code, each of which works both with DSes and PCs and 3) Bootstrapping TCP/IP (or, UDP/IP)"
-
Online Backup Solutions?
OmnipotentEntity asks: "I'm an IT Manager (and also a lifeguard, don't ask) for a small private club. Recently parts of our server's RAID went bad just as Hurricane Dennis hit, making life a living hell for me and everyone involved. So, I figured perhaps backing up information online would make stuff like this less incredibly painful. A quick browse of Google will show that there are a lot of businesses offering automatic, offsite, online backup solutions. It seems it's becoming a big thing. The largest problem is that they all look alike -- same implementation, similar websites, it looks like someone came through this part of the Internet with a cookie cutter, and by the information available on the website and pricing (which may or may not be available without filling out 100 forms) I can't tell a good company from bad company. I've never had any experience with any of these companies, and I wanted to know if any of you guys had, and if so what were your experiences with them? What are the things to look for? What are the things to avoid? Am I barking up the wrong tree?"
-
Full Debian ARM for Under $200
An anonymous reader writes "With minor elbow grease, you can now set yourself up with a complete Debian ARM Linux box for under $200. This is thanks to Peter Korsgaard, who figured out a cool byteswapped kernel hack for the little $99 Linksys NSLU2. Add a $99 USB harddrive, and the tiny, cute, quiet 'Slug' can run any of about 16,000 Debian ARM packages, 24x7, for pennies per month worth of electricity, since ARM is still orders of magnitude more power-efficient than anything x86. Serve files, music, web pages, printers, backups, kernel images, webcams/motion detection, firewalls/routers, wireless access point... or whatever. Oh, did I mention you can overclock the Slug?"
-
Home Power Monitoring Hack
dvogt writes "You think your power bill is bad? I built a power monitoring system to monitor every circuit in my house with three second resolution for over a year. And while I had to rewire all my electrical to do it, I can now reconcile my electricity bill down to the penny... Of course when my wife figured out most of the bill was because of my computer gear I had to build her a dome, so reader beware!" From the article: "About a year ago I developed a web based power monitoring application for data centers. The application was designed to monitor thousands of individual branch circuits using current transducers at the breaker panels. Among other things, the data logging requirements were to provide one year of min/max/mean measurement data with one minute resolution per circuit. Since I had all the hardware for testing, I figured what better way to test things than to install it in my own home."
-
Got Spyware? Throw out the Computer!
geeber writes "The New York Times (reg. required) has an article about a new response to spyware - throw out the computer and buy a new one. The notion is new computers can be had for $400 so it's a cost effective and 'rational response.'" From the article: "While no figures are available on the ranks of those jettisoning their PC's, the scourge of unwanted software is widely felt. This month the Pew group published a study in which 43 percent of the 2,001 adult Internet users polled said they had been confronted with spyware or adware, collectively known as malware. Forty-eight percent said they had stopped visiting Web sites that might deposit unwanted programs on their PC's. Moreover, 68 percent said they had had computer trouble in the last year consistent with the problems caused by spyware or adware, though 60 percent of those were unsure of the problems' origins. Twenty percent of those who tried to fix the problem said it had not been solved; among those who spent money seeking a remedy, the average outlay was $129."
-
Linux and Windows Security Neck and Neck
Linurati writes "According to vnunet.com, Linux and Windows are neck and neck when it comes to security, but 'misleading figures and surveys are muddying the waters.' The article lays blame on both sides for the misleading information." From the article: "...Microsoft had made real progress on security in the past two years, but that the increasing number of Linux enthusiasts coming into the market would help the open source alternative in the long run."
-
Survey Sees Tough Times for 360 in Japan
GamesIndustry.biz is reporting that a survey recently conducted by Japanese news agency C-News would tend to suggest that the Xbox 360 will encounter consumer resistance when it is launched in Japan. From the article: "The poor showing for the Revolution is perhaps understandable, given that Nintendo has released only sketchy outline details regarding the console so far - but the figure for the Xbox 360 will come as a disappointment to Microsoft, which has focused heavily on the Japanese market in recent months." GameDailyBiz has a look at the survey as well, concentrating on the PS3's popularity.
-
The New C Standard
derek_farn writes "At a very late stage Addison Wesley decided not to publish my book, 'The New C Standard: An economic and cultural commentary'. Now that the copyright issues have been sorted out I am making the pdf freely available. You can download the pdf (mirror 1). The organization is rather unusual in that the commentary covers each sentence of the C Standard (actually the latest draft of C0X, excluding library) one by one (all 2022 of them). One major new angle is using the results from studies in cognitive psychology to try and figure out how developers comprehend code. The aim being to try and produce some coding guidelines that reduce costs (ie, reduce the time needed and bugs created). The book also contains the results of lots of measurements (over 400 figures and tables) in an attempt to back the arguments being made -- another unusual feature since most software related books don't publish any figures to back up what they say. Other subsections discuss common implementations and differences between the latest draft standard and C90/C++. More background on the project is available from the Inquirer.