Forgot your password?

typodupeerror

Comment: Re: Equal rights (Score 4, Insightful) 832

by tempest69 (#43614629) Attached to: So What If Yahoo's New Dads Get Less Leave Than Moms?
INCOME TAX + SS + Medicare + State Income + State and local Sales + Gas + property + plates + fees + utility franchise fees + workers comp tax + tolls +liquor taxes + other sin taxes + corporate income tax + a whole bunch of stuff
is going to come pretty dang close to the 51.1% for the median family.. The numbers can be moved around some, but taxes are paid something fierce. We just break is down into chunks that each seem fair, some of it falls on the employer, so it is hidden.
I'd take 51.1% total tax in a heartbeat to have really good government services. I'm paying pretty close to that for a system with few safety nets, few employee protections, and for insurance that has been pillaging the population.

Sweden isn't utopia. But I don't hear horror stories from my friends who are Swedish nationals.

Comment: Because we live. (Score 1) 414

by tempest69 (#43442497) Attached to: Stephen Hawking Warns Against Confining Ourselves To Earth
Some organism anchor in one place, and hunker down, relying on the external forces to spread their offspring. This has worked for plants for a long time. We have the ability to sense dangers that no other animal can, to plan an escape from a multitude of catastrophes. We don't wait around for misfortune to find us when we know it's coming. We don't stand in the middle of the street just because we will eventually die.

It isn't egotism to give the people a better chance at survival. We take the steps today so that there is a chance that we won't screw it up when it matters. Today we are the beneficiaries of the work done by the people of the last hundred years. It seems a waste to sit down on the railroad tracks and wait for the train to hit us. Doing this as a species is immoral cowardice.

Storm

Comment: Instructions from scratch (Score 1) 338

by tempest69 (#42100415) Attached to: A Gentle Rant About Software Development and Installers
What I want are the full instructions on how to get software X to function on a known good configuration.
I'm talking ALL the instructions, as in I have a box with the minimum Fedora v 26 install, what are all the keystrokes that I will need to install this software. No assuming that I will have X set up some way on my machine, or that I've installed the right version of Mesa3D, or that vim is installed.

I don't want to find out that I'm hunting down some bug because yum install kerberos installed MIT kerberos instead of Hemidall kerberos.
I want this because almost everyone skip steps they consider obvious. The puzzle is so much easier to figure out when you can look at the picture on the lid.

Comment: Re:Keep the Doctor Who series the same (Score 1) 170

by tempest69 (#42016845) Attached to: The New Series of Doctor Who: Fleeing From Format?
Baah... The kicker is that The Doctor is like your uncle when your three years old. Sure the monster in the shoe-box is scary, but your uncle know's it's only a sock. boom now he's running from the monster too, all good fun. Figuring out how to stop a sock monster is fun, but not a real threat.
The Doctor has technology that is so insane that it dwarfs any problem he's in. Heck, the sonic screwdriver is probably much bigger on the inside, utilizing power that might rival a small star.
The plot holes are amazingly huge.. 2 companions get trapped in NYC past. because it's tough to get a Tardis to them, they never consider taking a plane to London or LA. Or having the long lived doctor just park early and just meet them in NYC in a few years. Now either the Doctor has horrible writers, or they are ok with the Doctor stranding his friends in a workable past.
The deus ex machina is the goal of most of the episodes.

Comment: Re:Does *any* industry start a new union anymore? (Score 1) 761

Ok,
1. Ban corporations from politics. The government is for the people. No money, no lobbying.
2. Require "news" to be a purely independent enterprise (syndicated) with barriers that prevent monetary coercion.
3. Change the law drafting practices. So a complex law cannot simply be drafted by a corporation that create calculated loopholes. The people "hacking" the legal system really need to be stymied.
Any of the above would be a huge boon the country.

Comment: Re:They are still made (Score 1) 201

by tempest69 (#41857949) Attached to: The Evolution of the Computer Keyboard
I snagged one of the keyboards a couple years back. Nothing else compares for typing. I have an old das keyboard, which is very good, and feels so much better for fps gaming. The F key lost some clickyness. but it's still an awesome choice to type on. The big kicker is that it has the windows key (nifty for moving windows on multiscreens) and a usb interface. It has a freaky long cord which can be handy. The loud clicks can be a bit rough on coworkers.

Comment: Re:No it doesn't (Score 1) 479

by tempest69 (#41801363) Attached to: Does Coding Style Matter?
Good coding style can catch those mistakes.
A normal function
if (state=1) {do stuff;}
has some issues, but with a consistent style
if (1 = state) {do stuff;}
GCC will throw a compile time error that it obvious, rather than strange behavior that has to be hunted down.
Style is far more than tabs and spaces. When and how variables are initialized, do you populate them with error flags, do you have some byzantine check for correctness states. Or do you have a big pile of intermediate variables to determine the state. Do you have a assume true with a disprove, or assume false with a prove X as true.
style matters

Now there's three things you can do in a baseball game: you can win or you can lose or it can rain. -- Casey Stengel

Working...