Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
Hardware

Installing Linux On ARM-Based Netbooks? 179

An anonymous reader writes "I am sure that many other Slashdotters have noticed an increase in ARM-based netbooks over the past several months. For example, the Augen E-Go. It is a widely touted theory that it is impossible to install Linux on one of these notebooks, replacing the commonly installed Windows CE operating system. The sub-$100 netbooks carry decent specs, including 533MHz ARM processor; 128MB DDR RAM; and a 2GB Flash drive, as well as most expected netbook components (USB, Wi-Fi, etc.). I find it hard to believe that a computer with these specs is impossible to hack and install Linux to, but Google searches have been largely unsuccessful in finding proper information. Do any Slashdot readers have experience in installing ARM Linux distros to these cheap netbooks like this? If so, what distros do they recommend?" (In particular, I wonder if anyone can comment on Ubuntu on ARM.)
Handhelds

Apple Reverses iPad "No Cash Purchase" Policy 377

ZipK writes "After a few days of bad publicity, Apple has reversed its no cash purchase policy, explaining that the policy was originally implemented to limit the number of iPads an individual could buy during the introductory period of short supply. Now that supply has caught up with demand — and the story has hit front pages and gained national attention — Apple has reversed its policy, and taken the opportunity to put a bow on the story by giving the formerly scorned Diane Campbell a free iPad."
Role Playing (Games)

Aion Servers To Merge, XP Grind Softened 108

Massively reports that NCSoft's fantasy MMO Aion will soon be getting a round of server mergers to balance player populations and shore up in-game economies. A newsletter from Aion producer Chris Hager also brought word that character transfers will be an option starting in June, and NCSoft will be "offering them to all of our players for free for a limited time." This is happening in the lead-up to the game's 1.9 patch, due on June 2, which contains a number of measures to make the XP grind a bit less harsh (among other things; patch notes). They're creating more quests, increasing XP rewards from existing quests, and implementing a system that "grants you experience bonuses as you continue to play."
United States

State Senator Caught Looking At Porn On Senate Floor 574

Everyone knows how boring a debate on a controversial abortion bill can get on the Senate floor. So it's no wonder that Florida State Sen. Mike Bennett took the time to look at a little porn and a video of a dog running out of the water and shaking itself off. From the article: "Ironically, as Bennett is viewing the material, you can hear a Senator Dan Gelber's voice in the background debating a controversial abortion bill. 'I'm against this bill,' said Gelber, 'because it disrespects too many women in the state of Florida.' Bennett defended his actions, telling Sunshine State News it was an email sent to him by a woman 'who happens to be a former court administrator.'"

Comment Re:Whats the diff? (Score 2, Funny) 203

Don't worry, it's still funny here in the US, just for all the wrong reasons. We have "Virtually" the best health care system available, at least that's what they tell me on the TV. Wouldn't want some pinko-commie to actually implement a real health care system. You're right, I shouldn't laugh, someone might charge me for that, it's the best medicine after all?

Comment Re:c++ is 'write-only' code (Score 1) 752

C++ is stuck with C strings, it's wrote into the language.

char *bad = "this is bad\0 ha ha";
sizeof (bad); /* returns size of pointer */
length (bad); /* returns wrong size */

It shouldn't be a happen unless you don't know where the strings originated, but I don't know of a good way to process that. Meanwhile, for web pages, code generators make code from code from code from code, etc. and inline and cache it all. It just doesn't easily work in C++. I could write a template engine, but it'd just end up as "#include " following by why even bother.

Comment Re:i was called to jury duty once (Score 1) 168

Where do you get "dodged" from? Sounds like he did what was asked of him. He showed up and answered honestly, I've served three times, and some of the crap people try will amaze you. Seen one guy try and get excused because he had a "drinking problem" and said he gets off work at 5 in the mourning by 9am he'd be much to drunk for court. The funny thing was the judge look at him and said "The days you are a juror you can't be punished for missing work so you can drink then." But I was excuse because the defendant went to the same high school as me 15 years ago. If that makes any sense at all

Comment Re:360 (Score 2, Interesting) 738

It's all about money. As long at the games are paid for and the console it's self is legit, MS doesn't care. I can grossly cheat on any game currently. The most sever punishment for cheating I've yet to have received was being booted from a game, only to return to the main screen.
http://hicklabs.com/
I've built my own chip and turned it up to grossly exaggerated rates without any real penalties.

Comment Re:Curse of binary floating point (Score 1) 626

So clocks only move at .1 intervals and I never have to use division? What wonderful world to you live in? I expressed it exactly for fix, it's a speed hack that still caries all the problems of float. Not if there is something to be measured that does in fact only happens in quantified increments, then yes, count on those. Time is not one of those things.
So you are quite wrong about fixed point not rounding. 10/3 is always going to be estimated without storing it in a large-number, fractional representation. The last number is always a guess, else it isn't a measurement. Measurements are always estimated, and counts can be held in exact amounts in binary. Time is not a count however, as time does not only change at specified increments.

Comment Re:Curse of binary floating point (Score 0, Troll) 626

Fixed point? What would that accomplish? Rounding creep happens, irregardless of data type, every time it rounds the last digit, fixed or float.
Fixed point is never a good idea, bad idea or not, it does speed up things on limited hardware. A missile isn't "budget" though.
Yes floats are difficult, every operation moves it farther from original guess, it's just guessing the last digit. Only solutions are to not do fractional math at all, or to reload and adjust values periodically. Time keeping however is a subject that been already well researched. Any embedded platform I've seen has at least a dozen app-notes and a dozen different ways to keep accurate time.

Slashdot Top Deals

"Look! There! Evil!.. pure and simple, total evil from the Eighth Dimension!" -- Buckaroo Banzai

Working...