Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×
Idle

Hand Written Clock 86

a3buster writes "This clock does not actually have a man inside, but a flatscreen that plays a 24-hour loop of this video by the artist watching his own clock somewhere and painstakingly erasing and re-writing each minute. This video was taken at Design Miami during Art Basel Miami Beach 2009."

Comment Re:Life on Mars (Score 1) 297

The same, unfortunately, applies to Venus

Care to elaborate? It has 95% of earth's mass, and as it orbits at 0.72 au, it suffers from roughly twice the radiation from the sun. (assuming all radiation follows 1/r^2) I assume that if it had a magnetic field, it should be able to hold on to it's hydrogen.

Censorship

Sharp Rise In Jailing of Online Journalists; Iran May Just Kill Them 233

bckspc writes "The Committee to Protect Journalists has published their annual census of journalists in prison. Of the 136 reporters in prison around the world on December 1, 'At least 68 bloggers, Web-based reporters, and online editors are imprisoned, constituting half of all journalists now in jail.' Print was next with 51 cases. Also, 'Freelancers now make up nearly 45 percent of all journalists jailed worldwide, a dramatic recent increase that reflects the evolution of the global news business.' China, Iran, Cuba, Eritrea, and Burma were the top 5 jailers of journalists." rmdstudio writes, too, with word that after the last few days' protest there, largely organized online, the government of Iran is considering the death penalty for bloggers and webmasters whose reports offend it.
KDE

Submission + - Is Tabbed Windows Going To Be The Next Big Thing? (digitizor.com)

kai_hiwatari writes: The recently released KDE SC 4.4 Beta 1 has introduced tabbed windows as a new feature. It is now possible to tab together windows from different applications. This looks like it will be a very good productivity tool. Like the tabbed browsers, this may well end up as a feature in all desktop environments in the years ahead.
Hardware

Submission + - leave your PC on to extend it's life - Fail (pcworld.com) 2

wallydallas writes: A lot of ignorance seems to be flowing from industry experts in response to the story about a school district with 5,000 computers using the SETI at home software. PC Mag and a Carnegie Mellon CS professor are spreading the myth that you protect your computer if you don't power off. "Most advice given on computers nowadays is don't power them down," I'm a teacher in a large district with far too many computers left on overnight because the IT staff have a near dictatorship. How does a powerless teacher fight an oppressive IT staff who will not cooperate with teachers who want computers shut down after a decent time without any user activity. These tools exist and have been vetoed with the myth that they do damage to the workstation hardware.

Comment Re:Another Question (Score 1) 410

You can have as many cards and screens as you can fit, but note one thing;

To use more than one card in a multi-monitor setup and be able to move windows from one screen to the other you'll need to use Xinerama.

But the use Xinerama disables compositing. That means no wobbly windows, compiz, etc.

There's a hack to fudge around that by using Xorg over xserver-xgl but it isn't perfect though.

I've only had it running with KDE successfully.

http://mugginix.com/articles/2009/Nov/12/Xinerama_Composite_Fail/
Science

Submission + - ISS can now watch sea traffic from space (esa.int)

gyrogeerloose writes: During it's last mission, astronauts from the Space Shuttle Atlantis installed an Automatic Identification System (AIS) antenna on the outside of the International Space Station that will allow astronauts aboard the ISS to monitor signals from the AIS transmitters mandated to be installed most large ocean-going craft. Although these VHF signals can be monitored from the Earth's surface, their horizontal range is generally limited to about 75 km (46 mi), leaving large areas of the ocean unwatched. However, the signals easily reach the 400 km (250 mi) orbit of the ISS.

The ESS sees this experiment as a test platform for a future AIS-monitoring fleet of satellites that will eventually provide worldwide coverage of sea traffic.

BSD

Submission + - FreeNAS switching from FreeBSD to Debian Linux 1

dnaumov writes: FreeNAS, a popular free NAS solution is moving away from using FreeBSD as it's underlying core OS and switching to Debian Linux. Version 0.8 of FreeNAS as well as all further releases are going to be based on Linux, while the FreeBSD-based 0.7 branch of FreeNAS is going into maintenance-only mode, according to main developer Volker Theile. A discussion about the switch, including comments from the developers can be found on the FreeNAS SourceForge discussion forum. Some users applaud the change, which promises improved hardware compatibility, while others voice concerns regarding the future of their existing setups and lack of ZFS support in Linux.

Comment Re:Llacking in terminology. (Score 1) 195

No, the application needs to call madvise(2) for the memory regions it thinks it can share.

To make this work automatically for all similar pages, the kernel would have to compare every page in memory against every other page in memory, not something you want to do.

Note that something similar already works for normal applications -- shared libraries and program images are shared between applications until their memory regions are written to. If a program forks, every page it has is shared until it's written to.

Google

Submission + - Google Tries Not To Be a Black Hole of Brilliance 4

theodp writes: Google says it's declined to pursue awesome job prospects to avoid an over-concentration of brilliance at the search giant. Speaking at the Supernova conference, Google VP Bradley Horowitz said the company intentionally leaves some brainpower outside its walls: "I recently had a discussion with an engineer at Google and I pointed out a handful of people that I thought were fruitful in the industry and I proposed that we should hire these people," said Horowitz. "But [the engineer] stopped me and said: 'These people are actually important to have outside of Google. They're very Google people that have the right philosophies around these things, and it's important that we not hire these guys. It's better for the ecosystem to have an honest industry, as opposed to aggregating all this talent at Google.'"

Comment Re:Advantages over just adding more FPUs? (Score 4, Interesting) 366

A cache line on a modern Intel/AMD processor is actually 512 bits, or 64 bytes.

A memory bus 512 bits wide wouldn't really help much, though -- right now when dealing with memory, most of the time is spent in the various latencies. When you are fetching a lot of memory sequentially, you can get insane speeds even today. But that's not how you usually read memory -- instead, you read a few words from different locations, and the memory controller needs to activate the correct bank, row and column before you get what you need. On typical PC-10600 DDR3, that means at least 15 bus cycles just waiting around for the memory to adjust. Making the bus 512 bits wide would speed up the actual transfer to one bus cycle from the 4 what it takes currently, but that would only mean an improvement of about 15% -- at a huge cost for having to accommodate those 384 extra data lines on the chip, socket, motherboard and ram. It's better just to try to speed up the memory so burst transfers happen "fast enough".

I don't know about nvidia cards, but at least for ati the card doesn't actually have a 256 bit memory interface -- instead, it has 4 completely separate 64-bit memory channels connected to a fast ring bus. The interleaving of data on those separate memory channels is done very coarsely -- basically, entire textures and such are allocated on a single channel. This means that when that texture is being fetched, the 3 other channels can serve other requests.

This is the way I see cpu's evolve too -- even on current hardware, namely phenom 2, you get better performance when you ungang the memory channels, and wait 8 cycles for a single memory transfer instead of 4, because that way you get to wait on separate latencies on the separate channels at the same time. Of course, in the perverse case all the data you want to access resides on one of the channels, but the chance of that happening by accident is pretty much nil.

Slashdot Top Deals

There are two ways to write error-free programs; only the third one works.

Working...