Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Would it be less tedious to have 10,000+ keys? (Score 2, Informative) 728

When it was first announced (5 years ago now?), I thought the Optimus Maximus keyboard was going to solve this problem. With a little smarts built into the keyboard I wouldn't mind esoteric key combinations if the result was displayed directly on the keyboard. Something like this might, someday, be the solution but at $1500 dollars it's going to be a while and assuming a direct-brain interface doesn't come first.

Comment Re:Why not just scarp US Intelligence (Score 1) 230

The fact that there's still people there is just another example of the extreme cowardice of the right wing. When we actually tried to get some of those guys in front of a real court of law all the tough Republicans started crying about the danger. Republicans, man up! Stand up for the Constitution; all of it, not just the 2nd Amendment. Stop pissing your pants.

Comment Re:Where did you get your information? (Score 1) 217

"A stock is a portion of ownership of the company."

While that may be technically true, if there's no dividend the value of their ownership is your yearly vote in your various shareholder meetings (you do vote, don't you?). Stocks are at the bottom of the barrel if the company goes belly up -- behind bonds, creditors and just about everyone else.

And, there is no inherent problem with this on face value. Stocks are stocks. More volatile and therefore more risk but also more potential rewards than bonds or your FDIC-insured savings account.

The problem comes from how this statement has distorted politics. Politicians have convinced the masses that we are all part of an ownership society, to own a stock is to be as good as a CEO and that the rules that are good for Murdoch or Fuld or Paulson are also good for factory workers, computer programmers and waiters. That's how we got a country where taxes on income from useful, productive work are higher than taxes on idle non-productive wealth. We have an entire political party organized around protecting millionaires estates and dividends and a second political party that is afraid to stand up to them.

Comment Re:Agreed. (Score 1) 383

Yes; at least in the macro sense. If you limited the set of potential programmers to only those high school students who are inclined to pick a programming book at random from a bookstore and teach themselves -- without help from family, friends or the school -- to be programmers then you are going to end up with a very small number of programmers.

Comment Re:Even if it were simple or sensible... (Score 1) 184

Exactly. In a slightly more perfect world the government of Afghanistan would try to implement a version of the Alaska Permanent Fund. But, that didn't happen in Iraq, why would it happen in there. Instead the profits are going to go to foreign corporations and local corruption, just like in Africa.

Comment Re:Features Android tablets need (Score 2, Interesting) 168

This is probably more of a hardware problem than an OS problem (Android, iPad or whatever) but what I would like to see in a tablet is Wacom-quality inputs. All the tablets appear to be platforms for consuming entertainment (music, movies, social networks, apps and books) that other people have created for you. I would like to be able to create on a tablet by painting, handwriting, or sketching directly on the screen.

I've only used an iPad for 10 minutes and I've never had a chance to work with an android tablet so I'm curious, how far away is that technology?

Comment Re:I've.never.used.groovy.so.I.have.a.question. (Score 1) 667

(Sorry for the delay)

I should have been more clear. A linked list (implemented as a dequeue, I think) provides for O(1) efficiency for insertions and deletions while an array list is O(N). However, an array list allows for O(1) for random access while a linked list is O(N). You use different list types for different tasks.

The vector is an old version of an array list this is synchronized. The current, correct way of indicating a synchronized data structure is to wrap it on one of the "Collections" wrappers.

But, don't get me wrong. I'm loving working in Ruby but it doesn't make Java inherently wrong, just different.

Comment Re:I've.never.used.groovy.so.I.have.a.question. (Score 1) 667

I love the artistic -- almost poetry -- of well-written Ruby. But the verboseness of Java can be helpful for long term code maintenance (this is assuming the programmer writing the code is aware of what the various constructs mean.)

Java:
// Hey code maintainers, I'll probably be doing inserts and deletions with this list
List list1 = new LinkedList();

// Hey code maintainers, I may be doing a lot of random access with this list
List list2 = new ArrayList();

// Hey code maintainers, either: // a. I haven't learned any new Java since 1.1 or // b. I really need a synchronized, random access list
List list3 = new Vector();

// Hey code maintainers, I need a synchronized, random access list
List list4 = Collections.synchronizedList(new ArrayList());

This is versus your Ruby example; concise, but not very implicit information.

Ruby:

# I'm informing my readers that I need a list
myList = []

Comment Re:New and old notes (Score 1) 3

Thank you to the two answers so far.

The PDA approach might be worth a try. I haven't used one since the old Handspring and I can't imagine my client (ie. my wife) willing to migrate her note taking to meet the Palm "graffiti-style". Do modern PDA's handle handwriting better?

As far as the laptop, as a psychiatrist she's talking with her patients in a more friendly face-to-face setting and she's worried that typing is far more intrusive than writing. That being said, a laptop caddy and a small laptop set-up next to her chair might be our inevitable solution.

Submission + - Ask Slashdot: How to Counter a Domain Squatter? 3

pspahn writes: Recently, our small business has decided to finally put the "our website sucks" reality to bed. We are working hard on getting a modern, polished, and effective web site up and running. Today, however, it came to my attention that one of our local competitors (who has a history of stealing our innovations) has registered a domain name identical to ours except for "the" at the beginning. When arriving at their squatted domain, it implies to the user that we have gone out of business and then redirects them to their website (which is equally as crappy as ours).

After some brief research, it appears that there are two "legal" paths to follow. Hiring a lawyer or going through Uniform Domain Name Resolution Policy. Both are somewhat cost prohibitive at this point, and it seems silly to have to fork over thousands of dollars to resolve something that has likely cost us plenty of business as it is. What alternative options do we have for resolving this? Can we send them a generic cease-and-desist? DMCA? Anonymous? Chinese flesh searchers? I'm hoping that we can employ some type of Barbara Streisand spin on this, as we have a long history of being an honest business that doesn't use these kind of deceptive practices to lure customers.

Slashdot Top Deals

1 + 1 = 3, for large values of 1.

Working...