Slashdot Mirror


User: amightywind

amightywind's activity in the archive.

Stories
0
Comments
2,454
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,454

  1. Too bad on Croatian Party Advocates Government Adoption of Open Source · · Score: -1

    they don advocate the adoption of free software, Even the politically liberated become deceived by people who would restruct their software freedom. The price of ignorance. Best to the people of Croatia.

  2. Re:Rounded Edges on Former Apple CEO Creates an iPhone Competitor · · Score: -1

    Rounded and square. Now why didn't I think of that? Those Silicon Valley innovators are really something.

  3. Political activism on NASA Scientists Paint Stark Picture of Accelerating Sea Level Rise · · Score: -1

    After 20 years of political activism for 'climate change', NASA has no credibility. The organization is diseased and corrupt. It gives me no pleasure to say that.

  4. Eventually it is finsihed on "Father Time" Gets Another Year At NTP From Linux Foundation · · Score: -1

    The problem with software is eventually it is finished and you have to move on. Keeping the wheels on should take 100 minutes a week, assuming it is half-way competently written, which I doubt.

  5. Finally on Federal Judge Calls BS On Homeland Security's 2008 STEM 'Emergency' · · Score: -1

    Send all the foreigners home!

  6. Not threatened by garbage on FreeBSD 10.2 Released · · Score: -1

    Nor is the kernel threatened by such garbage as kdbus. I wonder if Linus ever thought LiGNUx would be hijacked in the way it has.

  7. Bad idea on Epic Mega Bridge To Connect America With Russia Gets Closer To Reality · · Score: -1

    You have only to look at the migrant situation at the Channel Tunnel entrance in Calais to see that this is a bad idea. An open conduit for the dregs of Russia and China to flood into the US.

  8. Be my guest on NY Mayor Commits To Reduce Emissions 40% By 2030 · · Score: -1

    Be my guest New Yorkers. May it salve your liberal guilt. In the meantime, it only costs me $50 a week to gas up my monster pickup.

  9. Pluto's Glacier on New Horizons Returns Best Images of Pluto's Moons Hydra and Nix · · Score: 0

    The rate at which pictures are being released by the project are pathetic. I don't want to hear how low the data rate is from Pluto. Paranoid scientists are witholding dozens or hundreds of them to keep from being scoped. Spunik Planum is a glacier. Of what material, who knows? CO, N2, or some weird mixture. You can see that the region covers the darker terrain by the many embayment relationships at the meeting of terrains at its edge. The patterned ground is also a giveaway, but who can explain the large size of the patterns? What is the dark stuff? Organic gunk, not unlike light crude oil or LNG at fantastically low temperature. In processed approach images you can see the path that gas sublimating from the glacier takes as it sublimates and migrates to the pluto dark side from the sub solar latitude. It faintly stains the terrain. My guess is that glaciers like Sputnik Planum accumulate on the dark side during Pluto's pronounced winters, as the erode from the light side. They seem to be 100's of meters if not kilometers thick. The complex seasons produced by Pluto's elliptical orbit and high inclination surely disrupt the surface asymmetrically. Pluto is in southern summer and just passed perihelion. The south cap should be near its minimum extent. Pluto is a freaky place. Release more pictures greedy scientists!

  10. They do their homework on Elon Musk: Faulty Strut May Have Led To Falcon 9 Launch Failure · · Score: -1, Troll

    Poor quality control/testing on SpaceX's part. Who knows what other surprises lurk out there. They are going to put a human on that thing? Boeing and Lockmart don't make mistakes like that. They do their homework.

  11. A few thousand US Marines will be key in enforcing the nuclear deal. God bless Israel.

  12. 0-60 in 2.8 seconds, followed by a 4 hour charge. No thanks. I'll gas up.

  13. There is no such thing... on US House Committee Approves Anti-GMO Labeling Law · · Score: -1

    Good for the House. There is no such thing as non-genetically modified food. Its called evolution for you tree-hugging luddites. MON just accelerates the process a litttle. For full disclosure, I am a happy MON shareholder.

  14. Iran must go on The Missile Impasse In the Iran Negotiations · · Score: -1

    Obama and Kerry are dangerous fools. Obama's top advisor, Valerie Jarrett, is an Iranian. Don't trust them.

  15. Clear embayment features on New Horizons Gets Closer to Pluto, But Mystery Spots Now Out of Sight · · Score: -1

    The spots are clear embayment features. The dark/light transition seems to follow the countour of topography. This suggests that the stuff was liquid or saturated sediment, like the dark regions on Titan. We may be looking at lake deposits on Pluto.

  16. Brave on NASA Names Its Astronauts For the First Dragon and CST-100 Flights · · Score: -1

    It will take a brave astronaut to get on an F9. Glad to see NASA threw in a token ethnic.

  17. What were you thinking? on Ellen Pao Leaves Reddit; Site Founder Steve Huffman Makes a Triumphant Return · · Score: -1

    This wasn't hard to predict. What were you thinking reddit board, hiring a known disgruntled racial agitator. ? Tokenism is never good for the bottom line, no matter how much it assuages your white guilt.

  18. Should be called on A Real-Time Map of All the Objects In Earth's Orbit · · Score: -1

    slowin.space

    The first thing everyone does when they learn OpenGL is texture map a map image in rectangular coordinates to a 3d sphere. Have fun.

    /* Apply a texture image, a planetary map in a simple cylindrical
       projection in RGB format*/
    static void
    texture_map (const char *fname)
    {
      GLubyte *image;
      GLint width, height;
      GLenum format;

      /* What are the valid sizes for the texture image? */
      /* glGetIntegerv (GL_MAX_TEXTURE_SIZE) */
      image = LoadRGBImage (fname, &width, &height, &format);

      /* check image size to see if suitable as texmap */
      info ("Texture image: width = %d, height = %d, format = %x\n",
         width, height, format);

      /* texture map is ok to apply */
      glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
      glTexImage2D (GL_TEXTURE_2D, 0, GL_RGB, width, height, 0,
            format, GL_UNSIGNED_BYTE, image);
      glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
      glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
      glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
      glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
      glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
      glEnable (GL_TEXTURE_2D);
    }

    static void
    solid_sphere (GLdouble radius, GLint slices, GLint stacks)
    {
      glEnable (GL_CULL_FACE);
      glCullFace (GL_BACK);

      GLUquadricObj *obj = gluNewQuadric();
      gluQuadricDrawStyle (obj, GLU_FILL);
      gluQuadricNormals (obj, GLU_SMOOTH);
      gluQuadricTexture (obj, GL_TRUE);

      glNewList (Sphere, GL_COMPILE);
      gluSphere (obj, radius, slices, stacks);
      glEndList ();
    }

    void
    define_globe (const char *teximage, float radius)
    {
      texture_map (teximage);
      solid_sphere (radius, 36, 18);
    }

    void
    draw_globe ()
    {
      glEnable (GL_LIGHTING);    /* in case they aren't already */
      glEnable (GL_TEXTURE_2D);
      glCallList (Sphere);
    }

  19. This ain't designed to grow basil on Philips Is Revolutionizing Urban Farming With New GrowWise Indoor Farm · · Score: -1

    GrowWise should be classified as drug paraphernalia. Great news! For the dope fiends. Just what we need. More potheads browning out the grid growing dope to sell to kids.

  20. Re:Drop the hammer on them. on Greece Rejects EU Terms · · Score: -1

    Europe exposed the backward Africans to modern civilization and industry. Europe deserves great praise.

  21. The indolent Greeks on Greece Rejects EU Terms · · Score: -1

    Yes, Greece owes you. The Greeks lied and stabbed Europe in the back. Isn't it interesting and freighting that a society will destroy their own banking system to preserve pensions that pensioners did not earn? It is a sobering lesson for all western democracies that make such absurd promises to their citizens. The best thing for everyone is for the Greeks to walk away from their bonds, reissue the Drachma, and start anew. Greek travel will be a great deal. They can rebuild their economy on that basis. As for the pensioners. Enjoy your Drachmas. They won't be worth the paper they are printed on.

  22. Re:God save the Queen! on UK Government Illegally Spied On Amnesty International · · Score: -1

    Yeah, sight. To who does the future belong? The chinks? The hispanics?

  23. The code is garbage on Clang Plays Tetris -- Tetris As a C++ Template Metaprogram · · Score: -1

    How complicated can you make a simple state machine? The implementation is completely misguided.

  24. God save the Queen! on UK Government Illegally Spied On Amnesty International · · Score: -1

    I love the British. I am American but I realize that the British invented our civilization, which is the greatest in world history, by far. God save the Queen!

  25. Re:A Bad Day for Elon Musk Fanbois on A Failure For SpaceX: Falcon 9 Explodes During Ascension · · Score: -1

    I have rocket parts raining down on the Atlantic. You should not speak ill of your next President.