Slashdot Mirror


User: Ihlosi

Ihlosi's activity in the archive.

Stories
0
Comments
4,892
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4,892

  1. Re:Positive feedback on NASA Proposes a Magnetic Shield To Protect Mars' Atmosphere (phys.org) · · Score: 4, Insightful
    How do drop "space rocks" on a planet?

    1. Make a list of known space rocks of suitable size and composition.

    2. Sort list by amount of delta-v required to have each candidate impact on Mars.

    3. Pick one of the candidates with the lowest delta-v requirements.

    4. Apply necessary delta-v.

    .. what? We're talking about a plan to create a planet-sized magnetic shield. If we assume we can do that, then moving a few space rocks shouldn't be too hard?

  2. Re:Positive feedback on NASA Proposes a Magnetic Shield To Protect Mars' Atmosphere (phys.org) · · Score: 3, Insightful
    Kickstart it by exploding every nuke we have on the poles as well.

    Dropping a few space rocks on Mars might work better and add even more volatiles to the planet.

  3. ... and sun shades for Venus. on NASA Proposes a Magnetic Shield To Protect Mars' Atmosphere (phys.org) · · Score: 1

    Wasn't that also suggested at some point? Putting a shield, possibly in the form of a large solar power plant, at Venus' L1 Lagrange point to cool off the planet until the CO2 can be siphoned (and shipped to Mars?).

  4. Positive feedback on NASA Proposes a Magnetic Shield To Protect Mars' Atmosphere (phys.org) · · Score: 1
    This is a cool idea, but do the math

    The idea is to start a positive feedback loop - heat up the planet to release currently frozen volatiles (CO2, etc), which in turn will increase the temperature even more.

    Over a period of time, the dynamics of this process will be exponential, until it becomes self-limiting (i.e. most of the volatiles have been released into the atmosphere and further temperature increases will not lead to more of them being released.)

  5. The following would happen: on Ask Slashdot: What Would Happen If All Software Ran On All Platforms? · · Score: 5, Insightful
    Some manufacturer makes an device that is incompatible to the universal software ecosystem, but cheaper/faster/better/better marketed.

    And the situation is back to the current state.

  6. If the US really took control of the NK missiles the best options would have been to let the weapons have a roughly normal path during the tests (so that NK doesn't suspect anything),

    In fact, the path in this case shouldn't have been roughly normal, but right on target. Nothing like a potential opponent who believes that everything is going just fine when in fact his operations are completely undermined.

  7. Might look a bit weird, but having only two conditional instructions after each if statement allows the use of the ITT instruction on ARMv7m instead of having to use a branch and the associated pipeline refill.

    void BubbleSortThree(u_32 *p_in)
    {
    u_32 tmp1, tmp2, tmp3;
    u_32 swap;

    tmp1 = p_in[0];
    tmp2 = p_in[1];
    tmp3 = p_in[2];

    swap = tmp1;
    if(tmp1 < tmp2)
    {
    tmp1 = tmp2;
    tmp2 = swap;
    }

    swap = tmp2;
    if(tmp2 < tmp3)
    {
    tmp2 = tmp3;
    tmp3 = swap;
    }

    swap = tmp1;
    if(tmp1 < tmp2)
    {
    tmp1 = tmp2;
    tmp2 = swap;
    }

    p_in[0] = tmp1;
    p_in[1] = tmp2;
    p_in[2] = tmp3;
    }

  8. That saves one swap operation compared to bubble sort, but has a more complex control flow in step 1 since there are three possible outcomes when finding the smallest of 3 items.

    Depending on the architecture (features like register count, conditional execution and the cost of branching influence this), it may be faster than bubble sort:

    1. If item1 < item2, swap them.
    2. if item2 < item3, swap them.
    3. if item1 < item2, swap them.

  9. Actually, Bubblesort can be the best sorting algorithm,

    It can also be competitive if the number of elements to be sorted is small (say, three), or if you're not interested in a completely sorted list, but in the median value.

  10. Re:Interviews need training, too on Programmers Are Confessing Their Coding Sins To Protest a Broken Job Interview Process (theoutline.com) · · Score: 1
    Having just evaluated bit counting methods as part of my Ph.D. dissertation,

    Personally, I like the mask and add/subtract method. Even if it's just because at a first glance, it'll get a lot of "WTF?!" reactions, until you think it through and convince yourself that yes, it actually counts set bits.

    Not a fan of lookup tables, since my targets have memory in kBs and even a 256-byte table eats up a lot of that.

  11. Isn't bubble sort a trick question?

    What if you only want to sort five or seven values and want an algorithm that's understandable even for non-programmer folks?

  12. None of the things you listed could be used tactically against a specific enemy area.

    That's just a matter of coming up with a creative delivery vector.

    * The destructive power of a nuclear bomb without the radioactive fallout?

    Appealing, yes. However, since you're probably not planning to return to Earth after dropping a couple of destructive rocks on it, why should you worry about any fallout?

    Such an action would probably be used to maintain the monopoly on space colonization. "We're up here, you're down there, and you're not going anywhere."

    * The tactical accuracy of an ICBM, without having to actually build, maintain, fuel and guide rockets?

    I would think that maintaining infrastructure on the moon is much more effort than maintaining a bunch of ICBMs.

    * A warhead which is *immune* to all modern missile defense systems?

    It takes a few days to arrive. It should be comparatively easy to build a defense system. (heck, you could nuke the thing somewhere in transit; that should ensure it misses any precious military facilities when it strikes).

    Also, by the time we have the technology to build stuff on the moon, defense technology will have advanced beyond the current state.

  13. Why not just hand a courier a bomb and a rental car to drive to the target?

    Two words:

    Shock & awe.

  14. that there would be adequate safety precautions in place.

    I believe the since-deleted tweet was not about accidents, but deliberate attacks. As in "stop taxing us or we'll start dropping rocks on you". Or possibly the scenario from a certain Heinlein novel ... but I believe that the conflict will be more about taxes and less about representation.

  15. Companies are already destroying Earth. on Congressional Candidate Brianna Wu Claims Moon-Colonizing Companies Could Destroy Cities By Dropping Rocks (washingtontimes.com) · · Score: 5, Insightful
    Companies are already destroying Earth. And this is good, because it's profitable.

    Any genetics company could unleash killer microbes on Earth.

    Agricultural companies could cause mass starvation if they wanted to.

    Any company running nuclear power plants could contaminate large areas.

    Any company manufacturing or using explosives could build bombs.

    What's the problem with dropping a few rocks?

  16. Well, as long as the non-chicken animal content .. on DNA Test Shows Subway's 'Chicken' Only Contains 50 Percent Chicken (arstechnica.com) · · Score: 1

    Well, as long as the non-chicken animal content is zero percent ...

  17. If you're making six figures and have to borrow... on Scraping By On Six Figures? Tech Workers Feel Poor in Silicon Valley's Wealth Bubble (theguardian.com) · · Score: 1
    If you're making six figures and have to borrow money if your salary is one month late, there's definitely part of the problem on your side. You should have three months worth of living expenses saved up and ready to use for just such a case.

    But ... yeah. I'm now making twice of what I expected to make back in university, and I still feel I'm unable to save substantial amounts (~$1000/month). Something's wrong here.

  18. If they can't make another one ... on World's Only Sample of Metallic Hydrogen Has Been Lost (ibtimes.co.uk) · · Score: 1

    ... their research is not reproducible and therefore useless.

  19. Re:Sterile and shattered. on Thrilling Discovery of Seven Earth-Sized Planets Orbiting Nearby Star (theguardian.com) · · Score: 1
    There's only 400ppm total CO2 in the atmosphere, that 100ppm represents fully 25% of the total.

    And 25% is not a YUUGE number if you think big enough. It's just a few percent. What harm can that do?

  20. You get credit for taxes paid to other countries for income earned in said countries. In the realm of middle class wages this means an extra bit of paperwork

    Unfortunately, that "extra bit of paperwork" can prove to be somewhere between "quite a bit" and "impossible to do it correctly without expensive professional help".

    First, it is not easy to find professional help with US taxes outside the US. The people who provide such services usually do so for corporations and affluent individuals and price their services accordingly. In the real of middle class wages, that means you're going to pay a significant part of your income if you need such help.

    Second, the taxation treaties that are meant to prevent double taxation are worded in a way that makes them hard (up to impossible) to understand for someone without legal training.

    Third, taxation can have quite a few quirks, for example how securities and their earnings are taxed (I believe the US taxes 'virtual' profits, while other countries may tax realized profits - and the financial institutions there only provide a report of those. Good luck figuring out the figures you need to report to the IRS.)

    If you're a US citizen living abroad, make $15k (fifteen k) per year *and* have to file US taxes, you have two choices - do the paperwork yourself (no chance to get it right) and hope for the best, or pay a significant chunk of your meagre income to a professional, if you can find one.

    Then move to a nice tax free area of the world and mail the IRS a photocopy of your middle finger every april? Sounds fair.

    That's pretty much how the world does it (except for the "mail something to the tax authorities" part - if you're not a resident, you don't have to mail anything to the tax authorities, because you're not liable to pay any taxes), with the exception of two countries, one of them being some third-world place that most people won't find on a map.

  21. Very few US laws are based on citizenship

    Notable exception: Tax laws.

    Actually, they're based on both - residency OR US citizensip makes you liable to pay income taxes.

  22. Then why do US citizens have to pay taxes to the USA no matter where in the world you live?

    It's not just citizens, but also anyone with a permanent residence permit (Green Card).

    The US is one of two countries that does that, the other one is some third world country that most people will struggle to name or find on a map.

    And why? I believe it has to do with the US civil war. It's long over, of course, but the laws stuck around.

  23. Re:Goodwill & Dell Computer on Some Recyclers Give Up On Recycling Old Monitors And TVs (vice.com) · · Score: 1

    They'll consider them treasure troves of information alright. Information on how bloody stupid the people who created these things were.

  24. Re:So, does this super earth... on Astronomers Discover 60 New Planets Including 'Super Earth' (nypost.com) · · Score: 2
    Is like earth, but better on every sense?

    It's certainly bigger than Earth.

    And most importantly, do they name everything super (something)?

    Of course not. To them, their planet is normal Earth, and they call our planet sub-Earth. Or dwarf Earth.

  25. Re:"persuadable voters" on How Algorithms May Affect You (phys.org) · · Score: 1

    It is a mistake to assume that anyone who is susceptible to rhetoric is 'uneducated'. Rhetoric and persuasion exploit the time gap which it takes for knowledge and reason to kick in, for one thing.