Wednesday, 27 February 2013

BLACK HOLE SPIN REVEALED FIRST TIME...

Astronomers have made the first reliable measurement of a supermassive black hole's spin, showcasing a technique that could help unravel the mysteries of these monsters' growth and evolution.
The enormous black hole at the center of the spiral galaxy NGC 1365 is spinning about 84 percent as fast as Einstein's general theory of relativity allows it to, researchers determined. The find demonstrates that at least some supermassive black holes are rotating rapidly — a claim previous studies had hinted at but failed to confirm.
"It's the first time that we can really say that black holes are spinning," study co-author Fiona Harrison, of Caltech in Pasadena.


Staring at a black hole in X-ray light
Supermassive black holes are almost incomprehensibly huge, with some containing 10 billion or more times the mass of our sun. Scientists think one lurks at the heart of most, if not all, galaxies.
NGC 1365, located about 56 million light-years from Earth in the constellation Fornax, does indeed harbor a gigantic black hole — one as massive as several million suns. And this behemoth is blasting out enormous quantities of energy as it gobbles up gas and other nearby matter, making it an intriguing target for astronomers.
In the new study, researchers analyzed observations two X-ray space telescopes — the European Space Agency's XMM-Newton observatory and NASA's Nuclear Spectroscopic Telescope Array (NuSTAR) — made of NGC 1365 in July 2012.
By zeroing in on high-energy light emitted by iron atoms, the telescopes were able to trace the motion of the flat, rotating accretion disk that circles NGC 1365's black hole and funnels gas and dust into its greedy maw.
Astronomers found that the emissions are strongly distorted, suggesting that the inner edge of the accretion disk may be quite close to the black hole — close enough for gravitational effects to wreak havoc with the X-rays streaming from the disk. This in turn implies a rapidly rotating black hole, since general relativity states that the faster a black hole is spinning, the closer its disk can come to it, Harrison said.
But that's just one interpretation. Another holds that such distortion, which has been observed in accretion disk emissions before, could be caused by clouds of gas that hang between a supermassive black hole and the telescopes observing it. [The Strangest Black Holes in the Universe]
"This has been a big controversy — which of the two is going on?" Harrison said.

source: space.com


RUBY 2.O RELEASE



The Ruby community has just announced the first stable release of Ruby 2.0, exactly twenty years to the day since Ruby creator Yukihiro Matsumoto first created the language on February 26, 1993.
Ruby 2.0.0-p0, as the release is formally known, represents the first major revision of the language since Ruby 1.9 was released in December 2007.
The most recent entry in the 1.9 line, Ruby 1.9.3, was released on October 31, 2011. Although the full list of changes since Ruby 1.9.3 is fairly long, Ruby 2.0 is essentially an incremental release, one that maintains nearly full backward compatibility with the previous version.
According to the language's maintainers, most developers today will find it much easier to migrate from Ruby 1.9 to Ruby 2.0 than previous versions.
Among the language changes in the new release are the ability to pass arguments to methods as named keywords; new syntax that makes it easier to create arrays of symbols; and Module prepend, a way to allow methods loaded from a module to override those in a specific class.
The default character encoding for Ruby scripts has been changed from US-ASCII to UTF-8, which can cause issues with some older scripts but it still eliminates the need to use magic comments to declare UTF-8 encoding in modern programs.
Refinements, another new feature that improves how modules can be used to extend core classes among the Ruby community – is present in Ruby 2.0, but it's still considered experimental. Its specification may yet change in future releases, so it's not recommended for everyday use.
Changes to the Ruby core libraries in v. 2.0 include a new, more powerful regular expression engine; a new API for asynchronous exception handling; and "lazy" methods for the Enumerator and Range classes and the Enumerable module that delay evaluation of expressions until their values are needed.
A number of optimizations have been made to the Ruby runtime that improve performance. In particular, Ruby on Rails startup times have been much improved. Shortly after today's announcement, the Rails team confirmed that Rails 3.2.x is already compatible with Ruby 2.0. In addition, Ruby 2.0.0 now supports run-time debugging of production code using DTrace.
Unlike Ruby 1.9, Ruby 2.0 is considered a stable release and current Ruby 1.9.3 programmers are encouraged to start using it for their production code.
As the release notes state, "Ruby 2.0 is ready for practical use, and will absolutely improve your Ruby life." The new version is available for download from the official Ruby website and the source code is also available via Github.