Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Fucking idiots (Score 1) 1532

Interesting form of dictatorship you got there...

A discharge petition signed by 218 members (or more) from any party is the only way to force consideration of a bill that does not have the support of the Speaker. However, discharge petitions are rarely successful, as a member of the majority party defying their party's leadership by signing a discharge petition can expect retribution from the leadership.

So if they rebel against the Dictator^W Speaker, they get kicked in the nuts by their party leaders. Why do you need members of Congress again? They should just stay home and let the Speaker vote for them.

Which part of the law allowed the Speaker to impose this "majority of the majority" rule anyway? Wikipedia says it's "an informal governing principle used by Republican Speakers of the House of Representatives since the mid-1990s to maintain their speakerships". I take "informal" to mean "because that's how I like it", but not like "and you can't do anything about it". USA being the land of lawsuits, I'd assume this would have gone to court by now - or something.

Unlike some Westminster system parliaments, in which the office of Speaker is considered non-partisan, in the United States the Speaker of the House is a leadership position and the office-holder actively works to set the majority party's legislative agenda. The Speaker usually does not personally preside over debates, instead delegating the duty to members of the House from the majority party.

(That's from Speaker of the United States House of Representatives)

You what?

Comment Different markets (Score 1) 214

The Raspberry Pi's main mission is education. I have no idea where they're at with that, but the commercial aspect of selling boards to the masses is a very slick way to raise funds. Would you give them money just because you like their cause? Not so readily. Intel isn't competing in this market and most likely won't do so any time soon.

If this board had an Nvidia card that did VDPAU, instead of that GMA cruft, I may have been interested - because I need VDPAU, and it works awesomely well with an Atom CPU and 1080p H.264 video on the ION platform. Not an ION? Not interested. (to Nvidia: wink, wink)

If people actually do switch to Intel's "competitor" board in the detriment of the Raspberry Pi, it's going to hurt Raspberry Pi Foundation's goals, the people who buy Intel's stuff will be a lot more out of pocket for not much in return (can you get the same or more power if you give the $200 to Raspberry Pi and build a cluster with their boards?) I somehow don't see that happening though...

Bottom line is that if you want a Raspberry Pi you get a Raspberry Pi, and if you want a crap x86 computer - just because it is small - you get the "competing" board from Intel.

Comment Re:What about TV? (Score 1) 169

Actually, you don't pay for TV. You pay for cable. The copper and the shoving of signal down said copper. There are places in this world where you don't have to get cable if all you want to see is free to air channels. The channels you do pay for don't show ads.

Comment Market share (Score 1) 463

Is it me, or is Microsoft trying *really hard* to lose customers? And the idiots just won't leave! Of course, they can't just say "stop buying our stuff".

Feels like MS got a friendly letter about their dominant position from the DOJ or the EU, and they're trying to tell them that even if they build high walls and put large chains and locks on their gates* people still want to get in.

*somebody, somewhere, is now imagining Bill Gates with large chains and locks around him, and smiling.

Comment Prior art (Score 5, Interesting) 322

Can this discovery of old stuff be patented today, or is the fact that the romans did it so long ago constitute prior art? Or will the argument go like "We don't have a treaty with the Roman Empire regarding Intelectual Property Rights, an nobody did this in our country yet, so sure, go ahead an patent it"...?

Comment Re:I sure do hope.... (Score 1) 196

As for nuclear weapons, chances are they would be seen as the equivelant of bows and arrows to any civilazation far enough advanced.

REally? I see this idea popping up a lot on /. why should it be true? I am a physicist and unless aliens have super lasers or anti-matter weapons, nuclear weapons are up there in terms of destructive power. I mean we (humans) possess enough nuclear weaponry to make this planet extremely hazardous to life. Given that all life-sustaining planets are probably in the same size range as Earth, that makes us a pretty formidible foe if push comes to shove.

To me the above statement just reeks of sci-fi-fan-dork...too much star trek rots the brain.

If I were an alien and saw a rocket heading my way, I think I'd use my super high mega giga tech to do this to it: flip its trajectory so it comes back to you. Let's see you flip it back. I'd probably EMP it just to be sure too. You'd be mighty busy trying to hit it with other rockets before it gets near you. Some foes we are.

Comment Re:Interesting. Not clear if it's good yet. (Score 1) 41


typedef Meta::Type_tuple<Rpc_create_thread,
Meta::Type_tuple<Rpc_utcb,
[snip]
Meta::Empty>
> > > > > > > > > > > > > > Rpc_functions;

Now that's a _very_ interesting way to build a singly linked list at compile time. And you can append to it at runtime as well. And manipulate it. And all without a writing a single line of linked list management logic yourself and without bringing STL in. Just (ab)using language constructs.

Comment Letters overlaid on talking guy - really? (Score 3, Insightful) 28

Don't make scrolling text and a talking guy compete for attention - I couldn't pay attention to either of them. Play again, and again? You wish.

I was about to suggest you do what "Hide/Show Transcript" does, but I noticed it before I submitted this, so I deleted 2/3 of what I wrote. :)

Comment Whose money did they spend? (Score 3, Interesting) 91

All that money spent in the courts to get ISPs to block the Pirate Bay from direct access, and by the ISPs to implement the ruling, and for what? It appears only the lawyers won. The artists aren't any better off as a result, the "industry" isn't getting any fatter, and the pirates were only slightly inconvenienced for the five minutes it took to find a way around the blockade. You know, given this perspective, I'd suggest that the "industry" spends that money helping people in Africa or poor regions of the US (yeah, I crack myself up sometimes).

Comment Re:Comments (Score 1) 238

Of course, if you write " /* sets A equal to B */" then he's going to duck tape a dead fish to the bottom of your office chair.

Thanks man. I haven't laughed so hard in a long while. My normal mood is grumpy, but in the last 5 minutes I've been full with laughter. Cheers.

Comment Re:WTF? English fail (Score 2) 464

Actually, that "pull" operation exists in other distributed versioning systems as well (Mercurial, Bazaar, Monotone). They also have a "push", for when you want to give your patches to others. Pulling and pushing are common operations in these systems. Also, your sense of "pulled" would be presented as "reverted" (as in "undone").

Comment Re:kernel in c++? (Score 5, Informative) 151

And you need a kernel in C++ why? Because you can't get your head around objects that aren't enforced by the language? Or you can't get your head around doing error cleanup without exceptions enforced by the language? The Linux kernel even does reference counting without explicit support from the language.

Just to get a complete picture, I looked at some competing kernels (I skimmed over the source really quickly):

FreeBSD kernel - C, with objects and refcounts, similar to Linux
OpenBSD kernel - C, but I have a hard time finding their equivalent to objects and refcounts, and I gave up looking
GNU Hurd - C, and I'm not even going to bother looking around too much
XNU - C, but with I/O Kit in C++ - works only with Apple software?
Haiku kernel - C++, which is interesting in itself - but supports only IA-32?
Plan9 kernel - C
OpenSolaris kernel - C

I think it's pointless to look at the rest. All the others listed by Wikipedia are even more obscure than some of the above.

C seems to dominate the kernel arena, so Next time you post, I'd like to know what you think C++ would bring to the party. No, really. I've seen many dismiss that Linux isn't written in C++, but haven't seen a single one of these trolls (yes, I'm feeding you) say what that would accomplish, and I'm really really really curious. I'll throw a bone from the XNU Wikipedia article: "helping device drivers be written more quickly and using less code", and that seems to be the only bit written in C++, yet Linux does pretty well without, and apparently so do the majority (see above).

Slashdot Top Deals

I have hardly ever known a mathematician who was capable of reasoning. -- Plato

Working...