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

 



Forgot your password?
typodupeerror
×

Comment Re:The Secret of Nim (Score 2) 520

I completely disagree. I have worked extensively both with Matlab and Numpy, and I much prefer Python's 0-based indexing and half-open intervals over Matlab's 1-based indexing and closed intervals. Edsger Dijkstra, the famous computer scientist, explained why this is a good idea. E.g. splitting the first n items off an array in Matlab is head = x(1:n); tail = x(n+1:end) , while in Python it is head = x[:n]; tail = x[n:] . Even worse is when doing some computation over blocks within an array, in Matlab you do for i=1:n; y(i) = fun(x((i-1)*m+1:i*m)); end , while in Python it is for i in range(n): y[i] = fun(x[i*m:i*m+m]) . In Matlab, you always have to think careful about the extra +-1, which causes many off-by-one errors, while in Python you just write it down intuitively.

Comment Re:Twitter: Ran out of Hydralic fluid (Score 1) 213

The fact that he can make this claim only half a day after the fact (so I assume they had no time to piece together the debris) means that they did recover the most valuable part: the telemetry. Overall, they achieved probably 95% of the required challenges. With around 5 successful retro burns, 1 low-level flame out due to loss of roll control, 2 soft water landings, 1 bullseye impact on a boat and around ten successful low altitude tests with grasshopper, only extremely bad luck can stop them from making a good landing in the next few attempts.
Television

Dish Pulls Fox News, Fox Business Network As Talks Break Down 275

An anonymous reader writes Fox News and Fox Business were pulled by Dish Network over the weekend, as both continue to argue over a fee agreement. From the article: "Dish said in a statement early Sunday morning that 21st Century Fox had blocked access to the two networks after Dish balked when rates for other networks owned by the media conglomerate were made a part of the negotiations. Tim Carry, executive vice president of distribution at Fox News Channel, countered in a statement that "Dish prematurely ceased distribution of Fox News in an attempt to intimidate and sway our negotiations. It is unfortunate that the millions of Fox News viewers on Dish were used as pawns by their provider. Hopefully they will vote with their hard earned money and seek another one of our other valued distributors immediately."

Comment Make fun of them as much as possible (Score 2) 182

Some years ago, an advertisement for a Dutch insurance company made fun of some Stalinist dictator, without mentioning North Korea by name. As far as I know, this did not cause any large-scale hacking warfare against the involved company, but Korean diplomats were not amused. Watch it here while you still can. This regime cannot be ridiculed enough, Sony should just release the whole movie for free.

Comment Too expensive (Score 3, Interesting) 36

With 50 euro for a power supply, 100 for a sensor conditioning module (without the sensors!), 300 for a base station and 800 for a complete starter pack, I don't care if it is open source or not, it is way out of budget for the casual hobbyist. There are already enough different alternatives, most of which appear to be vapourware. Home automation seems easy enough that many people who follow the IoT hype start their own project. But we don't need more standards, we need less. The best would be if one of the existing protocols (not necessary that one) would win, so that people could mix and match their own components, which don't have to be more fancy than some arduinos and RPis thrown together.

Comment Advantage of x-wings over normal fins? (Score 1) 96

Can some aerospace engineer enlighten me about the advantage of these tennis-racket shaped x-wings over some standard steerable fins which you see e.g. on a guided missile? I could imagine that the grid-shaped 'louvers' could be seen as many small fins in parallel, but intuitively I would think that one big fin would have more effect. Is it something related to hyper-sonic aerodynamics? Or is it mechanically stronger?

Comment Russian propaganda for the home audience (Score 4, Informative) 340

For a decent debunking go to the Bellingcat blog. Also saw some graphic somewhere that clearly showed that the perspective was wrong by an order of magnitude, either the plane was 1 km wide or the satellie was orbiting at 20 km or so. This fake is so bad, that I think the only target audience is the Russian public, most of whom believe everything that Putin's propaganda machine feeds them. I have a Russian colleague, whom I normally regard reasonably high, that believes some really strange facts about this incident. She probably gets all her info from Russian websites.

Comment Re:That's not the reason you're being ignored. (Score 1) 406

I am afraid I am feeding a troll, but that is complete BS. It is a shitty job, since you have to get up at 5:30 in the morning and get paid very little for beginning crew, but it is not useless. Flight crew is needed to evacuate 200 people within 90 seconds in case of fire. They are needed to extinquish fires on board, if you don't everyone is dead (lithium laptop batteries are extremely nasty). They are neede to calm down drunk and annoying people, the legal limit is 1 crew per 50 passengers, so this requires a lot of social skills. They know how to handle a potential hijack situation. They are needed to serve you drinks, clean up people and toilets when someone throws up. They are fully trained to perform first aid to keep you alive until the plane can land. Source: a good friend flew for 8 years herself and now trains 18-20 year olds in 6 weeks to become a fully qualified cabin crew member.

Comment Re: Any news on the first stage landing tests? (Score 1) 129

Comment Re: Any news on the first stage landing tests? (Score 2) 129

I am not so worried about the patents. Vertically landing a rocket has been described in the TinTin comic ''Objectif Lune in 1953, has been demonstrated on the moon in 1969, with the Delta Clipper in 1993 and more recently with the X-prize in 2009. The patent by Blue Origin (sponsored by your purchases on Amazon) is from 2009, and is being challenged. I didn't read the patent and I am not a patent attorny, but the 'on a boat' part seems very much like the 'on a mobile device' part that gets slapped onto old ideas.

Comment Any news on the first stage landing tests? (Score 2) 129

This time, they launched without the landing legs, but since they are still testing above water that does not matter a lot. Deploying the legs and soft landing on water have been tried successfully already, so I imagine they could test other things like partially flying back to the launching site, fuel permitting. The twitters are silent, so far, however.

Submission + - Stars Exposed in Massive Nude Photo Leak

PapayaSF writes: Nude celebrities, bitcoins, and Apple: it's a story seemingly designed to stir up the entire internet. Scores of private photos of celebrities such as Jennifer Lawrence, Kate Upton, Selena Gomez, Ariana Grande, Kirsten Dunst, and Mary Elizabeth Winstead have been leaked (allegedly from Apple's iCloud), and posted on 4chan in exchange for bitcoins. A list of 100+ names has appeared, but pictures have not yet appeared for many names on the list (including Kate Bosworth, Kim Kardashian, Rihanna, and Kaley Cuoco). Victoria Justice claims the photos of her are fake. Twitter accounts are being shut down. The story is still developing, so grab your popcorn.

Comment Re:What's the point? (Score 1) 511

There is currently an enormous discussion going on at python-ideas (see various large threads towards the bottom). Guido himself seems to be in favor of including something like MyPy into Python's standard library, which is allows for optional specification of arguments and return types using function annotation. The main use would be for static/offline code analysis/linting.

Slashdot Top Deals

"Protozoa are small, and bacteria are small, but viruses are smaller than the both put together."

Working...