Slashdot Mirror


User: bad-badtz-maru

bad-badtz-maru's activity in the archive.

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

Comments · 817

  1. Re:Controversy? on Was Watch Dogs For PC Handicapped On Purpose? · · Score: 1

    I have no idea what "AAA" means in video game context, either. I am not a gamer. I know plenty of geeks that don't game.

  2. Re:That number can't be right... on US Wants To Build 'Internet of Postal Things' · · Score: 1

    It's just for a "study", aka a way to funnel govt money into the private sector.

  3. Re:Not Qualified on US Wants To Build 'Internet of Postal Things' · · Score: 1

    No, they are not qualified, and the project wouldn't be done internally. The USPS is a treasure trove of outsourced, poorly-implemented half-done years-late projects, such as Flats Sequencing System and eInduction. The whole entity looks like a gigantic money funnel to companies like Northrup and Accenture.

  4. Re:The biggest problem with the Post Office can't on US Wants To Build 'Internet of Postal Things' · · Score: 1

    And it's these 400 customers who demand delivery tracking. USPS performance is inconsistent across facilities and they are always pulling tricks like "unload incoming bulk mail and let sit for 2 days before doing an inbound scan". Those 400 customers want to know why a percentage of their multi-million-dollar bulk mailing arrived in the mailbox after the sale was over. That's what drives the tracking initiatives.

  5. Re:Bye bye Silverlight on Netflix Ditches Silverlight For HTML5 On Macs · · Score: 1

    You complained a year ago about a choice Netflix made five years ago? Wow, you've got the pulse of technology.

  6. Re:My biggest gripe on How the USPS Killed Digital Mail · · Score: 1

    USPS has the APIs but they are so obtuse and FIPS-standards-laden that the USPS points you to Indicia or Pitney Bowes if you ask about implementing the API.

  7. Re:Microsoft the Old Dinosaur on Windows 8.1 Update Released, With Improvements For Non-Touch Hardware · · Score: 2

    ..."thousands of bugs" he says, on the heels of a fairly large remotely-exploitable openssl security hole. Go OSS!

  8. Re:Apply to jobs on Ask Slashdot: How Do I Change Tech Careers At 30? · · Score: 1

    You disagree that many, if not most, organizations are plump with multiple layers of ineffective management?

  9. Re:Apply to jobs on Ask Slashdot: How Do I Change Tech Careers At 30? · · Score: 2

    At 42, I can tell you it gets worse. The idiocy of management is boundless, as is their energy in pushing their ideas and their inability to absorb any information.

  10. Re:cache is invalidated. See programming 201 on Mt. Gox Gone? Apparent Theft Shakes Bitcoin World · · Score: 1

    Yes, I've had the misfortune to hear countless client complaints resulting from their failure to lower the TTL well in advance of a planned DNS change on a key host.

  11. Re:ps - performance good because pdns & mysql on Mt. Gox Gone? Apparent Theft Shakes Bitcoin World · · Score: 1

    In summary - once the DNS information is changed in the database, the DNS server continues to serve out stale information for the next 10,000+ queries.

  12. Re:Ubuntu Studio on Ask Slashdot: An Open Source PC Music Studio? · · Score: 0

    Mod up!

  13. Re:The American Legal System's Double Standard on Losing Aaron · · Score: 1

    We don't know that he wasn't granted lenience, the case never even went to trial.

  14. Re:It's not a relevant topic for Slashdot. on US Customs Destroys Virtuoso's Flutes Because They Were "Agricultural Items" · · Score: 1

    Amen!

  15. Re:"Microsoft abandoning it just as Yahoo is adopt on Microsoft Kills Stack Ranking · · Score: 1

    Yes, because Microsoft is barely breaking even.these days.

  16. Re:BUNCH OF CRAP !! on Airgap-Jumping Malware May Use Ultrasonic Networking To Communicate · · Score: 1

    Are you paying attention? We're talking about usable output above 22k. A 3dB rolloff at 15k is going to be what at 22k?

  17. Re:BUNCH OF CRAP !! on Airgap-Jumping Malware May Use Ultrasonic Networking To Communicate · · Score: 1

    But what's the upper frequency cutoff of the speaker?

  18. New threat? Article from 1984... on New Threat To Seaside Nuclear Plants, Datacenters: Jellyfish · · Score: 2
  19. Re:and so meanwhile... on Will Facebook, Twitter, LinkedIn Stay With MySQL? · · Score: 1

    You may have better luck with a script designed specifically to convert mysql to pg. We use one as part of our ora to PG migration project (ora2pg). It's not perfect but it works pretty well. A quick search showed a couple of options for mysql, maybe something like http://sourceforge.net/projects/mysql2pg/ would give you better luck. pg_dump isn't much better at bringing in dumps than psql is. These dedicated conversion scripts usually take advantage of perl DBI connectivity to both DBs simultaneously, versus trying to export ddl and sql, and it seems to be a more successful approach.

  20. Re:and so meanwhile... on Will Facebook, Twitter, LinkedIn Stay With MySQL? · · Score: 1

    Yeah guy, you schooled me. You can't write a script to make those seemingly-minor tweaks to the mysqldump output? FWIW psql can barely import PG's own dumps. I think in the realm of rdmbs you'll find that product A's software for outputting to product B's import format is _always_ at least slightly broken.

  21. Re: No Cross Database Joins on Will Facebook, Twitter, LinkedIn Stay With MySQL? · · Score: 1

    The problem is that database abstraction (at the level sufficient to throw a switch to change DB platforms) carries a performance price. If you've scaled your business to the point that you "need" SQL Server (as if it outperforms mysql), as the OP was suggesting, you have probably de-abstracted yourself to the point that swapping DBs will be a serious pain.

  22. Re:and so meanwhile... on Will Facebook, Twitter, LinkedIn Stay With MySQL? · · Score: 1

    "Issues with double quotes vs single quotes vs ticks" = someone writing code in 2013 that isn't using bound parameters.

  23. Re:No Cross Database Joins on Will Facebook, Twitter, LinkedIn Stay With MySQL? · · Score: 1

    Do you realize how difficult and time consuming it is to switch a large codebase from one RDMBS to another?

  24. Re: and so meanwhile... on Will Facebook, Twitter, LinkedIn Stay With MySQL? · · Score: 1

    Wow...

  25. Re: and so meanwhile... on Will Facebook, Twitter, LinkedIn Stay With MySQL? · · Score: 1

    PHP drove mysql's adoption, it had mysql db functions baked-in. PG was added later.