Slashdot Mirror


User: Badge+17

Badge+17's activity in the archive.

Stories
0
Comments
86
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 86

  1. Re:Particles are baloney on Mimicking Vesicle Fusion To Make Gold Nanoparticles Easily Penetrate Cells · · Score: 1

    Taking a look at the paper, it doesn't appear that these results are highly dependent on the striped morphology, which, I agree, is dubious. These guys aren't using that, they're claiming a "checkerboard" shape.

    I haven't read through the whole literature on this - are *all* of the patterns crap? Are there checkerboards, or just noise + STM artifacts?

  2. PNAS contributed paper on Grand Unifying Theory of High-Temp Superconducting Materials Proposed · · Score: 4, Informative

    Disclaimer: I am not qualified to evaluate the science presented here. However, I always wince when I see something with such big claims as a PNAS contributed paper. PNAS allows National Academy members to "contribute" a paper, i.e. they act as the editor, selecting referees for the paper. This allows well-established scientists to get controversial ideas published without a big fuss - but it also means that sometimes goofy and incorrect stuff can slip through.

    Of course, if the theory works out, it will be a huge, huge result. Just add a slightly larger grain of salt than you usually do, because the paper came out of a different peer review process.

  3. Re:A comedic work? on John Scalzi's Redshirts Wins Hugo Award for Best Novel · · Score: 1

    Quick, name me another prominent comedic science fiction author. Are there really enough that this is an issue? (I actually couldn't think of another one off-hand, if you don't count Vonnegut.)

    There is a lot of great science fiction out there. Questions of identity, memory, and continuity? Try Brin's Kiln People. Reaction of societies to profound changes? Robert Charles Wilson's Spin. The Fermi Paradox? Try Revelation Space or Brin's Existence. Also, for "can't find a category for it," try Mieville's The City and the City. If you aren't reading anything past Asimov, you are missing out for no good reason.

  4. Re:I have the book but haven't read it yet. on John Scalzi's Redshirts Wins Hugo Award for Best Novel · · Score: 2

    I have either read or given up on all of the nominees. I am not convinced that Redshirts was the best novel, but it was probably the intersection of "mainstream / well-known" and "not so bad." Remember, Hugos are determined by a vote of science fiction fans at the convention (or who bought "supporting memberships"), and there's no requirement that they read all of the books.

    The nominees were (in order of placement)
    5. Blackout - the third in Mira Grant's Newsflesh zombie series. These books are entertaining, and the setting is fairly clever - where zombies are just a fact of life, and an ongoing danger - but this wasn't the best of the trilogy, and the previous two were nominated but didn't win.
    4. Throne of the Crescent Moon - an entertaining fantasy novel with a lot of Arabic mythology as an influence. I enjoyed it thoroughly, but it was the author's first novel, and it's not as well-known as the others on the list.
    3. 2312 - Another Kim Stanley Robinson book - a little heavy on geology, and a little meandering for my taste, but interesting in bits. KSR has won Hugos before, and is pretty well-known.
    2. Captain Vorpatil's Alliance - part of the whole Vorkosigan / Miles Saga from Lois McMaster Bujold. I usually like her books, but something about the voice this one was in just bothered the crap out of me, so I didn't finish it. Once again, Bujold has a lot of past Hugos, and this is like book 15 in the series, so it definitely has a constituency.
    1. Redshirts - has Scalzi's usual flaws with fairly bland characters and a little bit of generic plotting. But it was funny, and ended up being at least a little touching and thought-provoking.

    Essentially, the fan vote gives a strong advantage to well-known authors. Of the books that apparently had a chance (the top 3), Redshirts might have been the best. (Full stats at http://www.lonestarcon3.org/)

  5. Other aspects of the paper - health data on Computer Scientists Develop 'Mathematical Jigsaw Puzzles' To Encrypt Software · · Score: 3, Interesting

    I can't really comment on the slashdot summary, but take a look at the actual abstract: http://eprint.iacr.org/2013/451

    "In functional encryption, ciphertexts encrypt inputs x and keys are issued for circuits C. Using the key SK_C to decrypt a ciphertext CT_x = Enc(x), yields the value C(x) but does not reveal anything else about x. Furthermore, no collusion of secret key holders should be able to learn anything more than the union of what they can each learn individually."

    In other words, it seems that their technique allows you to encrypt some secret data, then (provably) only release the result of some arbitrary function of that data. It sounds like this means you could (in principle) release health data in encrypted form, then allow researchers to study some ensemble properties of it by giving out the appropriate keys. This aspect of it certainly seems pretty cool.

  6. Re:He's right on Terrible Advice From a Great Scientist · · Score: 1

    Um... well it's possible that the people I know are exceptions. But the MD/PhDs I know are pretty frigging impressive. One in particular is getting his PhD in experimental physics, and he can argue with the best of them on fairly hard stochastic differential equations.

    For the people I know, the MD/PhD is a research degree with added training so that they can effectively and ethically treat people in a research setting. (But I can only speak to the ones I know as a research scientist!)

  7. Re:He's right on Terrible Advice From a Great Scientist · · Score: 1

    Can't speak too much to your complaints about inconsistency, since they aren't very specific. Certainly MATLAB is fairly idiosyncratic. But your complaints about performance are a little unfair. "People going from naive matlab to naive c++ can get x1000 speed-ups." This is kind of true (though 100x is more my experience). But only if you define naive = someone in their first week of MATLAB coding. A relatively small amount of experience with MATLAB will teach you vectorization, which avoids this problem. If your problem can be vectorized (true of many scientific computing issues) the comparison between "MATLAB by someone who is not a total idiot" and "C++ by someone who is not a total idiot' is much closer (maybe a factor of 2), and probably depends on some of the details of the problem being solved (if the rate-limiting step is calculating a giant FFT, only your FFT library matters).

  8. Re:He's right on Terrible Advice From a Great Scientist · · Score: 1

    Yes, it does a great deal of that. Since about 2009 or so, a large chunk of basic MATLAB libraries (most matrix operations, including FFTs) automatically use multiple cores with zero added effort.

    Here's why I use MATLAB: I'm a theoretical physicist. A lot of my time is spent coming up with models, and then I want to - as quickly as possible - see if these models are practical and sane, and work out the quantitative consequences. I don't need the best efficiency possible, but I do need a giant set of linear algebra libraries, and having built-in ODE and PDE solvers saves a great deal of time. Even for the largest-scale simulations I do, the vast bulk of the computational needs are doing FFTs, generating random numbers, and solving linear systems. These operations are just as fast on MATLAB as in anything else - since it's some highly-optimized library at the core.

    There are a few things that MATLAB is just terrible about - performance with for loop-based code, obviously. I have definitely had cases where you can get a factor of 100 from implementing an inner loop in C. You have to use the right tool for the right job.

    As for scaling and GPU operations, does anyone know anything that will run on a GPU "without any changes"?

  9. Re:Astonishing amount to win. He'd better run n hi on CCTV Hack Takes Casino For $33 Million · · Score: 0

    The Reg article and the summary are incorrect. There is no evidence that this was a poker game. In fact, since the Crown casino talks about hoping to recover the money, and not recover it for the players, it might not be. However, I'm not sure what game is played against the house where players' cards are concealed. Maybe they mean looking at the dealer's down card in blackjack? Is Pai Gow Poker dealt with other hands hidden?

    Also note, the cheating did not occur solely over eight hands as the Reg claims. According to the Herald Sun article (the original), "cheating was exposed over eight hands of cards played in a short space of time." The cheater got too greedy, and played too obviously.

  10. Re:Headline is wrong. on CCTV Hack Takes Casino For $33 Million · · Score: 1

    Actually, it could be correct, but there isn't enough information to tell. The Register article claims that the game was poker, but that isn't supported by the original Herald Sun article, which just says "hands of cards." Note how completely devoid of details the Herald Sun article is - they won't say much about the details, the technique, or even what game was being played. This might be because it would identify the players involved.

  11. Re:"The Tool" on Oxford Temporarily Blocks Google Docs To Fight Phishing · · Score: 2

    It's even worse than this. Occasionally, our University's IT actually does send out emails that sound like a phishing attack. The only difference is that they link to a legitimate website. However, because of the general mess of different sign-ons (e.g. billing, payroll, course schedule, parking, etc...) it takes me a while to remember if this is a real service or a fake one.

    I think, somewhat optimistically, that people can be trained to not send username/password over email. However, far too many things reinforce the "go to website linked in email, put in password" message for this to not work some percentage of the time. Maybe we need to normalize "exchange of information" type logins, where you won't input your password until the website provides a signal / response to a challenge?

  12. Re:For fuck's sake, not string theory! on Internet Billionaire Creates Huge Physics Prize · · Score: 1

    While I generally agree with you about the esoteric nature of string theory, I should correct the record on supersymmetry and inflation (I know you didn't complain about inflation, but it's there further up the thread).

    Supersymmetry is an idea with some fairly strong motivations that has driven the last several decades of experimental work in particle physics - there is not solid evidence for it yet, but it is not ruled out. Some of the simplest variants have, however, been ruled out. Here's someone more representative of the experimental particle physics consensus at the moment: http://profmattstrassler.com/articles-and-posts/some-speculative-theoretical-ideas-for-the-lhc/supersymmetry/where-stands-supersymmetry-as-of-42012/
    (Should we be giving awards for theory that is not yet proved, but has motivated and clarified our understanding of particle physics? Maybe not, but supersymmetry is definitely not ruled out.)

    As for inflation, there is a reasonable amount of experimental evidence to support it; I know fewer astro people, but I would not describe inflation as unsupported, or even necessarily that controversial. http://en.wikipedia.org/wiki/Inflation_(cosmology)#Observational_status

  13. Re:My immediate response was on Internet Billionaire Creates Huge Physics Prize · · Score: 5, Informative

    Unfortunately, no. Many intelligent young students are already going into high-energy theory and string theory (the primary recipients of this prize). In fact, there are far more students than jobs. I'm a recent PhD from a top physics (and particularly string theory) school. My classmates in string and high energy theory who recently applied for postdocs applied to 100 in order to receive 1 job offer; none of their jobs were in the U.S. These are not permanent jobs; they are usually 2 or 3 year positions, paying $40,000 or so. At the end of this time, you may then enter the lottery for the (literally) one string theory faculty job per year (see http://www.math.columbia.edu/~woit/wordpress/?p=4701 for job statistics). This is what causes students to leave to go to Wall Street, and piping in more money to the already-established best of the best of the field will not change this.

    The purpose of this award seems to be to raise the profile of so-called "fundamental" theoretical physics; perhaps it will cause more funding to be directed in that direction, which might be good. More likely, it will simply encourage more optimistic, talented students to step into the meat grinder of a particularly depressed job market, making it even worse, and eventually redirecting another generation's best minds into Wall Street.

    I'm not saying don't celebrate physics (I love physics, and am continuing in the field, though on a much more applied topic, where there is more funding) - but there is already enough hype for string theory, and it burns out enough students already.

  14. Re:weird inference on Cray XK6 Supercomputer Used To Simulate Ice Cream · · Score: 2

    While ice cream makers have probably done lots of experimentation, simulations like this (in addition to being cool physics for other reasons) can give us new directions to look in - e.g how should we change the emulsifier used. More fundamentally, what are the controlling factors for the failure of ice cream? Since TFA is a press release, you can get a better taste for the work the Edinburgh group does from their papers - a related one is at http://arxiv.org/abs/1203.0410

    I should also pitch this group's work more generally - Michael Cates' group does a lot of cool simulation work on the dynamics of liquid crystals, as well as active fluids, such as swarming tanks of bacteria. Most of it is on the arxiv, http://arxiv.org/find/cond-mat/1/au:+Stratford_K/0/1/0/all/0/1 and http://arxiv.org/find/cond-mat/1/au:+Cates_M/0/1/0/all/0/1

    Some of the behaviors of fluids with active objects (bacteria or molecular motors) are quite unintuitive - if you try to push a sphere through one of these active fluids, it will sometimes go in the opposite direction of the force you apply to it! http://arxiv.org/abs/1204.1279

    (I am a soft matter physicist, but not from this group.)

  15. Re:The Local on University Sues Student For Graduating Early · · Score: 3, Informative

    Here's another German-language article on the topic: http://www.dradio.de/dlf/sendungen/campus/1802360/

    My German is a little rusty, but none of these articles seem to address at all how students typically pay, and whether the tuition/credit-hour distinction is all that relevant. On the other hand, since the Prorector they got to comment said something as stupid as, (loosely) - "If you drink a Coke twice as fast, you don't get to pay half price," and invokes the "not fair to other students" approach, it doesn't sound like the school has a particularly strong case.

  16. Re:I'm sorry... on The 2011 Hugo Awards · · Score: 4, Interesting

    Having read all the nominees, I think this was not a very strong year. I liked Feed, but I'm sick of zombie novels (and so is everyone else). Cryoburn is (I believe) Book #16 in the Vorkosigan series, and though it's well-executed, it doesn't stand out from the other 15. The Hundred Thousand Kingdoms is fine, but it suffers from a bit of debutnovelitis. I would have picked either The Dervish House or Blackout/All Clear, and apparently The Dervish House is so little known that it doesn't even have a Wikipedia page.

    I disagree about the Hugos being hidebound, though - look at the last three years, with The City and the City, The Graveyard Book, and The Yiddish Policemen's Union all winning - none of which are conventional science fiction at all.

  17. Re:Oh God... on The 2011 Hugo Awards · · Score: 2

    N.B. - Connie Willis won her first Hugo in 1983, and has two previous Best Novel wins. There's some good science fiction in the last 25 years, you might want to look into it. (This year's Hugo class of novels wasn't that strong, though - so don't start there).

  18. Don't do it. on Ask Slashdot: Ebook Reader for Scientific Papers? · · Score: 4, Informative

    E-ink products will not serve your needs. I'm a grad student in physics, and I tried doing exactly this. I love my Kindle for reading books, but the delay and screen size issues (even on the DX) made reading technical papers, where I often am moving back and forward quickly, frustrating. This leaves aside the difficulties of organization - ereaders are not really designed to have 200+ papers. I suggest getting a tablet instead - the ability to download new papers directly from the tablet is worth the additional money.

  19. Re:Can anybody summarize TFA? on Physicists Say Graphene Could Create Mass · · Score: 2, Informative

    Math trick slash analogy. In graphene, electrons behave like massless particles traveling near the speed of light. What this means is that energy increases linearly with particle speed, rather that KE = 0.5 m v^2 , like you learned in physics 101. Particle physics people have argued that adding compact dimensions (rolled up) will change interactions, and these guys have showed that you can also get electrons to act like massive relativistic particles in tubes of graphene. I'm not an expert in the field, but this seems to be a little buzzword-heavy, rather than really groundbreaking. As far as I know, the connection between graphene and relativity had not taught us anything new about relativity, or how mass is generated, but it is kinda cute and gets headlines.

  20. Re:Omissions? on The Map of Critical Thinking and Modern Science · · Score: 1

    There are also some particularly strange choices for the overlaps of mathematics and physics. Einstein, for instance, wasn't pioneering new mathematical methods for the most part, but links the math and physics lines. Then Ed Witten, the only physicist ever to win a Fields Medal, isn't connected to the math line.

    Also a problem: where's Ken Wilson in modern physics? Renormalization group ended up simultaneously revolutionizing particle physics and condensed matter physics - I can't think of a comparable example in the last 40 years or so, aside from the rise of computational methods.

  21. Re:Whatever The Party says on Amazon Pulls Purchased E-Book Copies of 1984 and Animal Farm · · Score: 5, Insightful

    Okay, let's turn down the rhetoric a couple of notches. There are two aspects to this -

    1) This does not appear to be a case where the publisher just "changed their minds." 1984 and Animal Farm are, through the usual idiocy, under copyright in the US but not in other countries, so someone re-publishing the text without paying the copyright licensing is breaking the law, and Kindle customers have, in effect, been sold "stolen" property. (Equivalent: buying software that illegally includes GPL code). If you buy a stolen ipod, it can get confiscated by the police.

    2) However, this does reveal a pretty worrying tendency to kill books first, clarify later. If Amazon had just sent out refunds, plus notes that "Due to an oversight, if you are in the U.S., this version of 1984 is unauthorized," that would have seemed sensible.

    My suggestion - use the Kindle if you like (I love mine), but backup your books, strip the DRM, and pirate shamelessly. Casual piracy adds features to ebooks - the ability to lend and trade books, which is how we all got hooked in the first place.

  22. Re:Vampirism on Stem Cell Treatment To Cure the Most Common Cause of Blindness · · Score: 2, Insightful

    I think part of the worry comes from a mistaken belief that each treatment will mean the destruction of an embryo - hence the "vampirism" fear. Maybe I'm wrong in this, but the treatment comes from a stem cell line - i.e. once upon a time there was an embryo, and now it's billions and billions of constantly growing individual stem cells. Objecting to stem cell *treatments* because of embryos being destroyed is like a vegan refusing to be treated by a doctor who once ate meat ten years ago.

  23. Re:What The Fuck? on New Laser System Targets Mosquitoes · · Score: 1

    This is part of the Gates Foundation's system of high-risk, high-reward research: take the smartest people you know, ask them to come up with crazy ideas, and see if any of them work. This one did. And though Lowell Wood gets credit for the initial idea, the laser scientists "...teamed with an entomologist with a Ph.D in mosquito behavior and other experts."

    Lowell Wood is known for coming up with creative solutions to big problems - he might be a little crazy, but it's the kind of crazy we need to make sure we keep on trying new ideas.

  24. Re:Science Fiction? on Difficult Times For SF Magazines · · Score: 1

    I recently subscribed to Analog. I started every story in the first issue, and only one was worth finishing. Most either failed to 1) have believable, interesting characters, or 2) realize that new words are not new ideas.

    But that doesn't mean science fiction is dead - read the Hugo-winners and noms. Books like Rainbows End (Vernor Vinge) and Spin (Robert Charles Wilson) have restored my faith in the genre. Maybe I'll give Analog another chance, but right now there are too many good novels out there.

  25. Are you kidding me? on New Asimov Movies Coming · · Score: 5, Insightful

    Look, I love Foundation more than anyone should love a work of fiction, and there are lots of people like me out there. That doesn't mean this is a good idea.

    Foundation strikes me as one of the least "filmy" books - because it's really a bunch of short stories, each crisis a little puzzle. I fell in love with the books because they were essentially mystery stories wrapped around a gooey scifi center.

    This is like trying to adapt three or four Sherlock Holmes short stories at once, all on top of Hollywood's hatred of smart science fiction. I predict PAIN.