Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Good thing it didn't hit US. (Score 1) 107

If it happened in the US there would be an immediate assumption that it was a terrorist attack, even if it just plopped down in a cornfield, and the Pentagon would be invading someone before the first investigators arrived on the site.

Back in the '80s the Norwegians launched a sounding rocket. All the forms had been filled out, but apparently got lost on some bureaucrat's desk in the Kremlin. The launch path looked like a SLBM coming from the North Sea with a trajectory in the general direction of Moscow. The Kremlin wanted to retaliate for the assumed attack immediately of course, but Yeltsin made them wait until the full trajectory had been confirmed. The world had a close call that day. If it had been Washington down-range Reagan would have launched immediately.

Comment Re:Python False = True (Score 0) 729

I'm sure as hell glad I don't have your shitty new hires working with me. Nor your stupid ass teaching/hiring my coworkers.

- ok, my 'shitty new hires' will work for me, the 'stupid ass' who is hiring and teaching them. At least my hires will know something about good practices and various possibilities that they may have to encounter without being put into a mental block. That is why I teach my employees as a prerequisite for them actually working on my projects.

Comment Re:Python False = True (Score -1) 729

OK, if autoboxing is crap, then you should just consider it invalid to assign a primitive type to an object type. Thus I guess you made a coding error when you wrote the code that did autoboxing. Shame on you.

- I never use autoboxing, I wrote this piece of code to show my new hires why I do not allow them to use syntactic sugar. Shame on me? Whatever.

Comment Re:Python False = True (Score 0) 729

Ok, you are not sure that the problem is autoboxing, well here, this code:

Integer a = new Integer(2);
        Integer b = new Integer(3);
        for (int i=0;i<10000;i++) {
            System.out.println( a.intValue() + b.intValue());
        }

will print 5 every time under the same conditions.

Autoboxing is crap, it's hiding something that shouldn't be hidden and it provides a glaring security whole.
Generics are crap, I can't reuse the same Iterator for different loops? Fuck that nonsense. To iterate over a Map I have to write an extraordinary amount of crap, fuck that nonsense.
"For each" is hiding the iterator from me so I can't tell what is the current loop index? Fuck that nonsense.

Basically near all syntactic sugar is garbage.

Comment Re:Python False = True (Score -1) 729

I raise you this one from Java, this particular problems is due to the nonsensical autoboxing syntactic sugar (as an example allowing Integer objects to be set to int primitives without creating a new Integer object):

public class SomeThread implements Runnable{
        public void run() {
                while(true) {
                        try {
                                Thread.sleep(1);
                                java.lang.reflect.Field field = Integer.class.getDeclaredField("value");
                                field.setAccessible(true);
                                for(int i = -127; i=128; i++) {
                                        field.setInt(Integer.valueOf(i), Math.random() 0.5 ? i-2 : Math.random() 0.5 ? 0 : i+2 );
                                }
                        } catch (Exception e) {}
                }
        }
}

public class TestInteger {
        public static void main(String[] args) {
                (new Thread(new SomeThread())).start();
                Integer a = 1;
                Integer b = 2;
                for (int i=0;i10000;i++) {
                        System.out.println(a+b);
                }
        }
}

Let's put it this way, if you run this, you won't see 3 as output 10000 times.

Comment Re:IRS Planning the same (Score 4, Interesting) 165

U.S. Hikes Fee To Renounce Citizenship By 422%

To leave America, you generally must prove 5 years of U.S. tax compliance. If you have a net worth greater than $2 million or average annual net income tax for the 5 previous years of $157,000 or more for 2014 (thatâ(TM)s tax, not income), you pay an exit tax. It is a capital gain tax as if you sold your property when you left. At least thereâ(TM)s an exemption of $680,000 for 2014. Long-term residents giving up a Green Card can be required to pay the tax too.

Now, the State Department interim rule just raised the fee for renunciation of U.S. citizenship to $2,350 from $450. Critics note that itâ(TM)s more than twenty times the average level in other high-income countries. The State Department says itâ(TM)s about demand on their services and all the extra workload they have to process people who are on their way out.

You are no longer born a free person, you are born into slavery. You have to buy your freedom and the price will keep going up. At $450 the price was already 4.5 times higher than in most other countries. Now it will be nearly 24 times more than for other countries.

You should be able to renounce your citizenship and leave for free, instead you are going to be prevented from leaving at all eventually, they'll jack up the price to the share of your national debt that you are born into and that is borrowed on your behalf by your government and only the wealthiest slaves will be able to get out. They will definitely prevent you from leaving eventually if you have any debts at all, including your student debt. The 2350USD change is starting on the 12th of September 2014, you can still get out at a low low price of 450USD.

Those walls they are building on your borders, they are not there to keep others out, they are there to keep you in. IRS is part of that system.

Comment Re:Screw DARPA, give it to NASA (Score 1) 10

I remember proposals for robotic servicing of satellites in GEO when I was in high school, so that would have been the late-'70s, because it was not thought to be worthwhile to send humans to that distance. All of the satellite servicing missions NASA was able to carry out were done in LEO, IIRC the Hubble servicing missions were at the maximum altitude the Shuttle could reach. There has been some movement in the last few years to standardize on fuel inlets for GEO comm satellites in the hope that future refueling operations can extend their functional lifespan, but I'm not sure how far that has gotten.

Comment Refutation (Score 1) 588

The study was badly flawed and does not support the conclusion in the headline.

https://www.linkedin.com/pulse...

I take no position on whether "low-fat" or "low-carb" is more stupid. They are both stupid. The body needs adequate amounts of both, and nutrients that are only available, or absorbable, in the presence of one or the other. While there are many unanswered questions in the science of nutrition, there is overwhelming evidence that nutrient-dense diets, all else being even close to equal, are ALWAYS superior to calorie-dense diets. In other words, avoid high-fat and high-carb diets and eat as much natural food, in as close to its natural state, as possible. Avoid refined junk. Exercise. If you are of color or live someplace other than the equator, supplement with vitamin D.

Slashdot Top Deals

Make sure your code does nothing gracefully.

Working...