Slashdot Mirror


User: jfbilodeau

jfbilodeau's activity in the archive.

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

Comments · 254

  1. Re: Telemetry = spying END OF DISCUSSION. on Microsoft Telemetry Collection, Explained (theregister.co.uk) · · Score: 1

    What???

    When the CIA listens in on phone conversation it's convenience?

  2. Re:One person writing all the code on The Story Behind the Worst Computer Game In History (bbc.com) · · Score: 1

    > Even so, the logic for the pacman ghosts is actually rather simple.

    Actually I would say that it was _not_ simple--especially for the time. It would have been simpler to have all the ghost share a common algorithm.

  3. Re:OpenGL is dead. Long live OpenGL! on Khronos Group Announces Release of Vulkan 1.0 (phoronix.com) · · Score: 1

    But does GLUT support Vulcan? And if so, should it be call GLUTan? ;)

  4. Re:OpenGL is dead. Long live OpenGL! on Khronos Group Announces Release of Vulkan 1.0 (phoronix.com) · · Score: 1

    If you just care about a spinning cube, then OpenGL or Direct 3D is not the answer. Use a 3D framework that manages your mesh for you. There are plenty out there.

  5. OpenGL is dead. Long live OpenGL! on Khronos Group Announces Release of Vulkan 1.0 (phoronix.com) · · Score: 3, Insightful

    As a developer working with OpenGL, I think that Vulcan is what OpenGL 3/4 should have been.

  6. Steam already does it better on Microsoft Plans To Make Windows 10, Xbox One Game "Crossbuys" A Habit (pcworld.com) · · Score: 1

    Steam already allow me to start a game on Linux, and continue playing it on my Macbook while on the road. It's another case of Microsoft playing catch-up while trying to sound innovative.

    GOG is not that far behind either.

  7. What about the publishers? on Microsoft Plans To Make Windows 10, Xbox One Game "Crossbuys" A Habit (pcworld.com) · · Score: 1

    Steam is having enough difficultly convincing developers to sell a game for three platform. How are developers and publisher going to gobble this up?

  8. I think that Mass Effect, Tomb Raider and Dragon Age fall more in the RPG category. Not quite the same.

  9. Re:But, but, but... on China's Chang'e 3 Lander and Yutu Rover Camera Data Released · · Score: 2

    Of course! Those 'scientist' worry about making the details of the lander and the moon surface 100% realistic but forget to photoshop a couple of stars in the background. Silly 'scientists'.

  10. Re:If the question really is "biggest" not "favori on Ask Slashdot: What's the Biggest Open Source Project of 2015? · · Score: 1

    > LLVM is also hugely important.

    Thank you! I depend on it every day.

  11. Re:Bloating chicken on Microsoft Is Downloading Windows 10 Without Asking · · Score: 1

    But I'm a developer. I work in monospace!

    ...but if it pisses you off, I'll go back to plain text.

    ...as soon as Slashdot fixes the Options dialog that is broken for me right now...

  12. Re:Bloating chicken on Microsoft Is Downloading Windows 10 Without Asking · · Score: 0

    What? My comment was modded down with '100% Overrated'...but there are no other rating. How can it be overrated?

  13. Bloating chicken on Microsoft Is Downloading Windows 10 Without Asking · · Score: -1

    They want to get Windows 10 out there to give more people access to their walled-garden online store so that they can woo developers to write apps for the store. It's much more appealing to write apps for Win10 if there are actual user for the platform. Chicken and egg problem.

    They are bloating the chicken in the hopes that more eggs come out.

  14. "A report by the IBM..." on IBM Tells Administrators To Block Tor On Security Grounds · · Score: 2

    From the summary: "A report by _the_ IBM..."

    As opposed to just an IBM?

  15. Are they running Windows 8? on City of Munich Struggling With Basic Linux Functionality · · Score: 4, Funny

    If they can't find anything on their laptop, could it be they are actually running Windows 8? It's the only mainstream desktop environment that I know of that makes it obtuse to find anything.

  16. Thanks big movie studios! on Movie Studio Sues Individual Popcorn Time Users For Infringement · · Score: 1

    I never knew about Popcorn Time...now--thanks to your marketing--I do.

  17. Vendor lock-in FTW! on Italian City To Dump OpenOffice For Microsoft After Four Years · · Score: 0

    I'm sure Microsoft is tickled pink. Vendor lock-in wins over open standards.

  18. Failed to mention that she was also Canadian on Dr. Frances Kelsey, Who Saved American Babies From Thalidomide, Dies At 101 · · Score: 2

    Dr. Frances Kelsey was also Canadian. Just an FYI.

  19. Subsidies and innovation helps, but... on Tech's Enduring Great-Man Myth · · Score: 4, Insightful

    From the post: "Musk's success would not have been possible without, among other things, government funding for basic research and subsidies for electric cars and solar panels. Above all, he has benefited from a long series of innovations in batteries, solar cells, and space travel."

    But was Musk the only one to receive those subsidies and benefit from those innovation? He stood on the shoulder of giants, but he was the one to make it a reality. That is the difference between the average and the great IMHO.

  20. Re:Assholes ... on The Next Java Update Could Make Yahoo Your Default Search Provider · · Score: 0

    ...and Oracle is doing everything in their power to kill Java on the client.

  21. Re:Why not? on Ask Slashdot: Is C++ the Right Tool For This Project? · · Score: 1

    I second that!

  22. Re:I'd suggest C on Ask Slashdot: Is C++ the Right Tool For This Project? · · Score: 1

    std::vector is an array--not a linked list. For list, use std::list, or even better: boost::instrusive::list.

  23. Are computers taking over? on YouTube Algorithm Can Decide Your Channel URL Now Belongs To Someone Else · · Score: 5, Insightful

    Since when did we decide that it's OK for computers to make those type of decisions--and not allow human beings to reverse it?

  24. Headline should read 'How to adapt demo code' on Microsoft Tries To Guess Relatives With "Twins or Not" · · Score: 1

    The headline should read that a developer downloaded an SDK, tweaked a demo in the SDK, and uploaded it to the web. Then wrote an TFA about out.

  25. Re:Does Javascript still have garbage collection? on Has the Native Vs. HTML5 Mobile Debate Changed? · · Score: 1

    True. Swift does not use GC but uses reference counting...which can be worst than garbage collection in some circumstances. :P