Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Pity (Score 5, Interesting) 51

It was a very simple, very clear service that I could actually use with non-technical clients for project management.

Good thing is, you could probably duplicate the functionality in Ruby on Rails in a weekend

Comment Re:New thing same as the old thing (Score 1) 80

3D scanning is really important. Whenever we figure out how to do it faster/cheaper/easier, that's important. 3D scanning is useful for all kinds of future activities, from the maker movement (3D printer + 3D scanner = 3D copier), to gaming (eg. Kinect), to driving (eg. DARPA Grand Challenge), to mobile devices (eg. Google Glasses).

Comment Re:of course... (Score 5, Insightful) 280

whose idea was it to use metal detectors as gun detectors? Time & technology change... and detection methods must change with them.

If non-metallic guns were truly viable, they would have been used 20 years ago to sneak past metal detectors and kill judges and politicians and airplane pilots. Plastic manufacturing has been around for a long time, the only thing 3D printers do is reduce the cost. There are well-funded spy agencies and a few individuals who would have paid hundreds of thousands of dollars for a single gun. And yet none has materialized: [1] [2] [3]

Comment Re:liability (Score 1) 68

I can only speak to how my local hackerspace handles it, I don't know how others do.

At this one, most power tools are owned by individual members. If someone gets hurt and wants to sue someone, the only person they can sue is the individual owner. On one hand, this sucks because it puts all the burden on individuals' shoulders. On the other hand, it decreases the chance that someone tries to pay legal fees from prospective damage awards, because damages are likely to be very small, so it reduces the chance someone will lawyer up.

Our hackerspace hasn't had any incidents yet, so I don't know how well this plays out in practice.

Communications

Google Drops XMPP Support 416

Cbs228 writes "During last week's Google I/O conference, the company announced a replacement for its aging Talk instant messenger: Google Hangouts. Hangouts, which is only available for Android, iOS, and Chrome, offers closer integration with Google+. Unfortunately, the new product drops support for the XMPP instant messaging protocol, which has been an integral part of Talk for over ten years. XMPP delivers instant messages to desktop clients, like Pidgin, and enables communication between users on different instant messaging networks. Hangouts users attempting to communicate with contacts on non-Google servers, such as jabber.org, have found that all communications have been suddenly and inexplicably severed. A Google account is now required to communicate with Hangouts users. Google Hangouts joins the ranks of an already-crowded ecosystem of closed, incompatible chat products like Skype." Interesting, because Google Wave was based on XMPP and Google was integral to the creation of the Jingle extension that enabled video chatting over XMPP. Note that no end date has been set for Talk yet, but the end must surely be nigh given Google's recent history of axing products like Reader and CalDAV support from their calendar app without much notice.

Comment x86 Assembly Language (Score 1) 185

I would recommend teaching her x86 Assembly Language.
The instructions are simple little things like MOV, PUSH, POP, CALL, and INT. She can and should comment heavily and that can be in any language.
The mnemonics come from English, but are abstracted enough that they shouldn't turn her off for language's sake.
The concepts are basic as well. What she learns now will always be relevant. Consider this:
[...] a design architecture for an electronic digital computer with subdivisions of a processing unit consisting of an arithmetic logic unit and processor registers, a control unit containing an instruction register and program counter, a memory to store both data and instructions, external mass storage, and input and output mechanisms.
Von Neumann wrote that in 1945 and it all still applies today.

Comment RTFM (Score 4, Interesting) 79

The goal is to "engineer software-based radios that transmit data faster than a competitor using identical hardware".

The goal isn't to develop fancy new hardware, or to use an overwhelming amount of power. The goal is to develop fancy new software.

With frequency-hopping and time-hopping techniques, if you can intelligently adapt to the local interference, and transmit in the time and frequency gaps where the interference doesn't occur, then you can transmit more data for the same amount of power. That's the goal.

Comment extracting keys from RAM (Score 4, Informative) 268

This tool extracts the keys from RAM dumps. There are free tools that do this too, of course.

But isn't it difficult to get a RAM dump, you say? Not really:

  • Hibernating a computer writes this data to disk. Starting in Windows 8, "shutdown" actually writes some hibernate data by default.
  • VMs also have their own suspend functionality that does a RAM dump, as well as non-SAN VM migration.
  • Firewire ports actually allow devices to scan RAM of the machine they're connected to.
  • Obviously, if you have access to a live machine, you can get the keys directly from RAM.

Slashdot Top Deals

FORTUNE'S FUN FACTS TO KNOW AND TELL: A giant panda bear is really a member of the racoon family.

Working...