Slashdot Mirror


User: AC-x

AC-x's activity in the archive.

Stories
0
Comments
1,259
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,259

  1. One thing the UK did right on 'Plugspreading' is an Abomination (cnet.com) · · Score: 1

    With its giant plugs no AC adapter is too big to fit nicely in UK sockets...

  2. Two 20 mile tunnels full of 100mph individual autonomous sleds is also easier said than done.

  3. Or just add a little extra track at stations to the blue line to allow for express trains...

  4. Bit low capacity on Elon Musk's Boring Company To Build High-Speed Transit Tunnels in Chicago (chicagotribune.com) · · Score: 3, Interesting

    The Chicago system is expected to be able to handle nearly 2,000 passengers per direction per hour

    Capacity's a bit low, isn't it? That's the equivalent of something like a conventional metro train running once every 30 mins...

  5. Re:Fine, just make sure kids aren't buying this cr on Valve Will Stop Removing Controversial Games on Steam Unless They Are 'Illegal or Straight up Trolling' (geekwire.com) · · Score: 1

    >> You can buy games on Steam no matter what age you are as long as you set your age to over 18 when a store-page asks for you DoB

    > So it pains me to say this, but until they fix this gigantic loophole, they are in the wrong here.

    The problem is that's one of those easier said than done things. How do you create a fool-proof age verification system?

  6. Now hopefully there will be another outbreak of common sense and they'll actually do some quality control instead, so we don't have a situation where indie games are selling better on a Nintendo console of all things than on PC because it's almost impossible to find good new games on Steam among the flood of terrible, low effort games slapped together with a few pre-made game assets.

  7. Re:Vulnerability? on Zip Slip Vulnerability Affects Thousands of Projects (theregister.co.uk) · · Score: 1

    > In Unix, tar does not allow leading "/" or "../" in paths. Is Zip not the same?

    Don't forget that if tar only disallowed leading / and ../ then it would still be insecure, as you could do "newfolder/../../../../etc/" and so on.

  8. Re:Planned obsolesence on Smartphone Shipments Declined For the First Time In 2017 (theverge.com) · · Score: 2

    Don't you think a bigger factor is that hardware performance improvements outgrew software requirement increases? At this point even a several year old mid-range phone feels fast enough running the latest software, while previously smartphone hardware genuinely struggled to keep up with later more featured/bloated (delete for preference) software.

    Same thing happened in the PC space, remember when your PC felt slow, even obsolete every year trying to run the latest software? Now I can use a budget laptop from 2010 and run exactly the same software as a brand new high-end laptop without it even feeling slow.

  9. Re:Yawn. on Apple May Introduce a Triple-Camera iPhone This Year (thenextweb.com) · · Score: 1

    I don't remember any campaigns against 16:10 monitors, I just remember them slowly disappearing because it was cheaper to use the same 16:9 panels on both TVs and monitors.

  10. Re:Atmosphere? on NASA Spacecraft Finds Methane Ice Dunes On Pluto (bbc.com) · · Score: 4, Informative

    Pluto's atmosphere is big enough to support its own wikipedia page

  11. Oh look, it's that misquote again! What he actually said was:

    "Part and parcel of programming in C/C++ is you’ve got to be prepared for these things, you’ve got to be vigilant, you’ve got to support the coders doing an incredibly hard job. We must never accept buffer overflows being successful, we must never accept that black hats can destroy our life or destroy the way we lead our lives."

  12. Re:$699 + $7 per month? on California Begins Trial Rollout of Digital License Plates (caranddriver.com) · · Score: 1

    Why the blue fuck would someone pay that much money to trade away their privacy

    GPS stolen vehicle trackers are already a thing, the real question is why you'd put your vehicle tracker in such an obvious and easy to remove place...

  13. > During the Cultural Revolution, the leftists wanted to switch to a Latin alphabet, but even Mao couldn't make that happen.

    The Latin alphabet is the official way to write Chinese phonetically...

  14. Re:Cops investigating themselves on Jailed Kansas 'Swat' Perpetrator Sneaks Online, Threatens More 'Swats' (kansas.com) · · Score: 1

    "Look out, they're coming right for us!"

  15. To be fair having javascript be able to dump your kernel memory is a bit of a bummer even if you aren't running a cloud hosting service...

  16. Re:Tetrachromats on Scientists Discover That Puffin Beaks Are Fluorescent (www.cbc.ca) · · Score: 2

    Contrary to the claim of the article, there are some human females with tetrachromatic vision.

    Indeed, although their 4th color receptor always lies somewhere between red and green, which gives better color differentiation but doesn't extend the range of visible colors like birds' UV tetrachromacy does.

  17. Re: Bug or feature? on Software Bug Behind Biggest Telephony Outage In US History (bleepingcomputer.com) · · Score: 1

    Well that's a really stupid attitude isn't it? Purposefully create a UI that can take an entire system down without warning or logical reason by leaving a field blank just so you can sit there and smugly wait for someone to inevitably trigger the trap you laid for them?

    If you worked for me the person being fired would be you, not the person who left the field blank.

  18. Re: Bug or feature? on Software Bug Behind Biggest Telephony Outage In US History (bleepingcomputer.com) · · Score: 2

    Yeah, but then you don't follow the rules for how regexps work. You have introduced a custom exception, which is almost always a bad thing in programming. You introduce complexity, have to maintain the exceptions through library changes, refactoring and rewrites, regression test them whenever anything that's interfacing change specs, and also (remember to) bring them over to new code when you want to avoid surprises.

    I think you might be overthinking this. This is purely a UI behavior issue, nothing to do with changing how the regex function behaves; If you have a mandatory regex field in a multi-field form, don't accept an empty value. If you have an optional regex field in a multi-field form, then leaving it blank should disable the regex call.

    Yes you have to remember the UI conventions you use, but you also have to remember things like checking for required fields so it's no more work than you should already be doing.

    Making an unintuitive and mistake-prone UI just because it mirrors how an underlying function behaves is asking for trouble, as in this example.

  19. Re: Bug or feature? on Software Bug Behind Biggest Telephony Outage In US History (bleepingcomputer.com) · · Score: 2

    It is often useful to be able to enter regular expressions for filters. And an empty regexp without anchoring matches everything. That's a feature, not a bug. But it is only okay to design it that way if you can safely presume that anyone who will ever add a filter understands regular expressions, or will look it up before attempting to add a filter. Slightly safer (but only slightly) is to always add ^$ anchors, so empty fields only match empty entries.

    Given how easy it is to write a non-empty regular expression that matches everything it would seem far more sensible to me to treat an empty regex field as "regex off / match nothing" rather than "match everything".

  20. Re: ...but creates new hurdles. on Trump Says He Wants Skilled Migrants But Creates New Hurdles (apnews.com) · · Score: 1

    "we should have more people from Norway." - Trump, Jan 2018

  21. Re: ...but creates new hurdles. on Trump Says He Wants Skilled Migrants But Creates New Hurdles (apnews.com) · · Score: 2

    Except we're talking about legal H1B recipients, not illegal immigrants.

  22. Re:Self driving car hype on Uber's Self-Driving Cars Were Struggling Before Arizona Crash (nytimes.com) · · Score: 4, Insightful

    And what if the obstacle was a fallen tree, or a large animal, or anything else that could be fatal to the car's occupants? I guess they shouldn't be so entitled to expect a self-driving car not to kill them either right?

  23. Re:That's exactly what the parent said. on Uber's Self-Driving Cars Were Struggling Before Arizona Crash (nytimes.com) · · Score: 4, Insightful

    If that machine is incapable of detecting and avoiding unexpected obstacles and that unexpected obstacles is less squishy than a human it could easily be the occupant of said machine that dies...

  24. Re:I LOVE rockets but... on SpaceX Launch Last Year Punched Huge, Temporary Hole In the Ionosphere (arstechnica.com) · · Score: 2

    One does not simply invent a space elevator!