• Deceptichum@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    7
    ·
    24 days ago

    But the next day, he says, he noticed something odd in the public online listing of citations maintained at the Citation Processing Center’s website. He had given them an example of a specific ticket he had gotten that implicated a Honda. Online, that record had been changed to an Infiniti with Taranto’s VIN. Taranto shared a side by side comparison of his paper copy and the apparently altered database version as part of his Defcon talk

    So this company straight up manipulated data to try to pin it on him? How is he not suing them for this.

  • dohpaz42@lemmy.world
    cake
    link
    fedilink
    English
    arrow-up
    4
    ·
    24 days ago

    That is some fucked up shit right there. There is a HUGE difference between “NULL” and NULL. To suggest that somehow these systems are interpreting “NULL” as NULL, but somehow still correctly interpreting every other single license plate correctly, tells me that some asshat programmer did this on purpose.

    I cannot fathom how this is possible, unless when police enter tickets and leave off license plate numbers, the empty value gets converted to a string value and stored that way.

    There is maybe one programming language that I can think of that could easily (maybe even accidentally; if you’re careless enough) convert null to “null” – JavaScript:

    const n = ‘’ + null;
    console.log(typeof n); // string
    console.log(n); // ‘null’
    

    If this is even remotely the case, that is dirty as hell, and the company should own up to it and fix it.

    • mesamune@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      24 days ago

      I think a lot of them use SQL as well, which will do some me funky stuff if the devs decide to do some bad left/right joins incorrectly.