Slashdot Mirror


User: LingNoi

LingNoi's activity in the archive.

Stories
0
Comments
3,595
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,595

  1. Re:Better off enforcing an EA boycott on Is It Time To Enforce a Gamers' Bill of Rights? · · Score: 1

    If everyone bought just one share in EA:

    - then agreed to sell it on a specific day in the future it would seriously fuck them over.
    - and went to the annual stockholder meeting they could literally bring the company to its knees due to the loud majority of "investors" there clamoring for EA to change.

    That's the only way they're going to listen or change. Sadly it requires too much organisation from gamers.

  2. Re:It's a race on British Farmers Growing Their Own Internet Service · · Score: 2

    Exactly! Queue the posts about how "slashdot is a US website and if you don't like it then leave".

  3. Re:Wine and bugs on Valve Officially Launches Steam For Linux · · Score: 3, Insightful

    If you want WINE support for your application you either have to pay for it or you code it up yourself and submit the patches. You comment just makes your company sound cheap.

  4. Re:It's called the key on Driver Trapped In Speeding Car At 125 Mph · · Score: 1

    Did you even RTFA? He was on the phone with an engineer from the car manufacturer and even they couldn't figure it out.

  5. Re:Supply & demand on Earth-buzzing Asteroid Would Be Worth $195B If We Could Catch It · · Score: 1

    It's important to note that the plan seems to be to never send the materials back to earth..

    Still, according to DSI experts, if 2012 DA14 contains 5% recoverable water, that alone -- in space as rocket fuel -- might be worth as much as $65 billion. If 10% of its mass It could mass which could range from as little as 16,000 tons or as much as one million tons -- is easily recovered iron, nickel and other metals, that could be worth -- in space as building material -- an additional $130 billion.

  6. Re:Space mining ROI - fuel on Earth-buzzing Asteroid Would Be Worth $195B If We Could Catch It · · Score: 1

    The value quoted in the article is based upon the assumption that you'd be using the materials in space due to the expensive price of launching stuff so bringing it back down to earth isn't a factor. It could potentially be a game changer if they can work out how to construct satellites in space as well as other things.

  7. Re:Who owns the asteroid? on Earth-buzzing Asteroid Would Be Worth $195B If We Could Catch It · · Score: 4, Informative

    The whole point of these materials being valuable is due to the fact that launching said material into space is expensive, so the materials wouldn't be taken back to earth, they'd be used in space.

  8. Re:It's all because of Unity on Canonical Could Switch To Rolling Releases For Ubuntu 14.04 and Beyond · · Score: 1

    but if you install a badly designed product you will be suffering for a long, long time.

    It's not, I like Ubuntu and I like the Unity desktop environment.

  9. Re:It's all because of Unity on Canonical Could Switch To Rolling Releases For Ubuntu 14.04 and Beyond · · Score: 2

    Except unity isn't a mistake in their eyes or the people that like it, myself included. It's a much better UI then Gnome ever was in my eyes.

  10. Hoe many different major versions of Apache are currently in the mainline Debian? I counted 3 last month

    That's because apache can be built and used in different ways. One version may be suitable for development on a local machine whereas another it more beneficial if you have a lot of traffic being served.

    Here are the ones listed with the description:

    apache2-mpm-event - Apache HTTP Server - event driven model
    apache2-mpm-prefork - Apache HTTP Server - traditional non-threaded model
    apache2-mpm-worker - Apache HTTP Server - high speed threaded model

    By default I believe the prefork gets installed which is the worse kind for a high traffic server which is why you should never trust benchmarks by people that don't tell you the version of apache they're using.

    I don't know much about apache2-mpm-event since i've never tested it, however apache2-mpm-worker is comparable in speed to nginx.

  11. I disagree because I've actually done this before numerous times and it actually had the opposite effect every single time. What I mean by that is that the programmer in question lost interest in developing the program or library further and became more distant. One of the people I have donated to has finally began working on the library again after 2 years from never hearing from them.

  12. That's not true in Nvidia's case. I've seen plenty of examples where you can submit a bug to nvidia and they will fix it, regardless of who you are, even if the bug appears only on linux. Many open source projects find and submit bugs to nvidia.

  13. I'm not a "must be free" nut however I feel like you're devaluing the work behind this.

    There are some good benefits to having an open sourced nvidia driver for example, it can be used to power different experimental graphics layers such as Wayland / Weston, or it has the potential to support optimus chipsets which we haven't seen from Nvidia for 4/5 years now.

  14. Re:I don't.. on Why JavaScript Is the New Perl · · Score: 3, Interesting

    Web programmers tend to be lower skill programmers.

    This is a common misconception among c / c++ developers. Fact is it's simply not true, you have to deal with a multitude to complex issues that you simply don't need to deal with in native code development. I do both web and native code development and I can tell you that the tasks are just different not easier or harder.

    Your atitude in this respect reminded me of a guy that recently applied for a job position at the company I work. He was a c++ developer who wrote on his cover letter something along the lines of "I don't know any web development however because of my experience in native languages I think I will be able to easily pick it up". That's simply naive and wrong, as you can expect he wasn't selected.

    As for the rest you wrote I agree and disagree at the same time. Sure there are a lot of "make it work" attitudes however you get the same atitude in native code development too so it isn't something restricted to web development.

    a new markup language that's meant to do pixel perfect rendering (HTML is not, but its used that way)

    No, no it is not. People who think like this do not understand web development, and almost no one apart from terrible developers treats it in the way you mentioned. Websites have to be designed to fit on everything from small mobile phones to big TVs. That's why everyone is trying to make their sites "responsive". Everyone is moving in the complete opposite direction to what you have mentioned in that the best way to build a site is with a css grid to make your site handle different resolutions.

    I agree that javascript is a terrible language fortunately things are improving if you look at the latest standards being developed for newer versions. I guess we can only hope that it improves to the point where it doesn't just outright suck.

  15. Re:Speaking as a vegan on In Vitro Grown Meat 'Nearly Possible' · · Score: 2

    As a vegetarian I keep things to myself and don't preach to anyone. Please ignore this moron vegan and remember that the silent majority don't care if you eat meat or not. Thanks.

  16. Re:A matter of perspective... on In Vitro Grown Meat 'Nearly Possible' · · Score: 1

    I can't grasp the concept of people thinking lab grown meat is grosser then something that has been rolling in a field and tons of antibiotics jacked into it, etc. The logic escapes me.

  17. Re:NoSQL? Then what? on Cassandra NoSQL Database 1.2 Released · · Score: 1

    NoSQL does have some advantages. If you have 2+GB of data in a relational database table and you wish to update a table doing some can take a long time during which your services will be down. Since non-relational databases allow for schema less data, you can simply add the extra column in the code and add code for what to do if the new column doesn't exist (i.e. old data) then deploy it with zero downtime.

    These points don't really come into play until you have a huge dataset however so for most stuff I still recommend relational databases.

  18. Re:Why bother? on AMD Tweaking Radeon Drivers To Reduce Frame Latency Spikes · · Score: 1

    It's an unconvincing argument to make, as an nvidia user i've never needed to use support, it just works.

  19. Re:He sounds like a whiny teenager on GNU Grep and Sed Maintainer Quits: RMS and FSF Harming GNU Project · · Score: 1

    Sounds to me like "analysis paralysis", or at least typical management where people are too busy playing politics instead of trying to create something awesome.

    Yes, that pretty much sums up the FSF for as long as I can remember.

  20. Re:Define horrible on GNU Grep and Sed Maintainer Quits: RMS and FSF Harming GNU Project · · Score: 1

    It's like starbucks and coffee snobs.

  21. Re:slightly off topic on GNU Grep and Sed Maintainer Quits: RMS and FSF Harming GNU Project · · Score: 1

    Yet few argue about what Gandhi did for the world. It kills me to hear about people complaining about RMS's views on C++, on which he happens to be mostly right,

    No, I take the 12+ year maintainer over the guy that hasn't done any serious coding in a decade (one liners to emacs lisp plugins don't count before you come back with that shit).

  22. Re:Just like DRM has prevented piracy on Makerbot Cracks Down On 3D-Printable Gun Parts · · Score: 1

    I think governments would definitely ban 3D printing and successfully before it becomes ubiquitous. Once everyone has a 3D printer then print what you want, but it only makes sense to probably hold off trying to print guns and other politically sensitive items knowing how ban happy governments can be. Once 3D printing becomes a political issue it will be banned in the US for sure due to the gun control and how it hurts industry and product distribution.

  23. Re:Baffled on UK Cookie Consent Banners Draw Complaints · · Score: 1

    because politicians and privacy groups upset about cookie tracking went way overboard and fucked the web for everyone.

  24. Re:Boring after 1 hour of play on Game Review: Planetside 2 (video) · · Score: 1

    game except shoot, shoot, and more shooting....I'll stick with games like Skyrim, and Mass Effect.

    So your complaint is that's it's an FPS and cite you'll be going back to RPGs? Seems like a perfectly valid complaint to me.. ugh..

  25. Re:Decent... on Game Review: Planetside 2 (video) · · Score: 1

    I have mixed feelings about this because my experience of this went so well. I went from picking a character to kicking ass in less then 2 minutes.