Slashdot Mirror


User: Thundersnatch

Thundersnatch's activity in the archive.

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

Comments · 924

  1. Re: I opted out, still being tracked. on Verizon Subscribers Can Now Opt Out of "Supercookies" · · Score: 1

    4 days after opting out and amibeingtracked,com finally reports no super cookie present. So it takes a while...

  2. Re: I opted out, still being tracked. on Verizon Subscribers Can Now Opt Out of "Supercookies" · · Score: 1

    4 days after opting out and amibeingtracked,com finally reports no super cookie present!

  3. Re: I opted out, still being tracked. on Verizon Subscribers Can Now Opt Out of "Supercookies" · · Score: 1

    Same here; opted out but cookie still present. I assume it takes some time for the settings to propagate from $central_database to $thousands_of_edge_devices.

    I will check back every few hours to see how long it takes.

  4. Re: A Microsoft Killswitch on Microsoft Remotely Deleted Tor From Windows Machines To Stop Botnet · · Score: 1

    What, exactly do you think Yum/Apt and other FOSS package systems do do? They give the same root permissions to a random package maintaine; an individual who likely would more easily be swayed by the money of organized crime or the NSA than a fairly rich and likely highly audited MSFT employee. As far as I know, there are no audits at all done of the actual binaries distributed by Linux package managers.

  5. Re:No on WebKit As Broken As Older IE Versions? · · Score: 2

    Webkit is open source, with an active community that cares about standards, has an explicit policy of trying to behave like other browsers where possible...

    All evidence to the contrary. The number of "broken in latest Chrome" bug reports we've had coming out of QA recently is quite alarming. Things like certain tags not appearing in the layout at all, or massive layout gaps that don't appear in any other browser.

    Personally, I think Chromium is moving too fast, and now Mozilla is following. Many of the bugs we've encountered were regressions, broken in Chome say 15, fixed in 17, and then broken again in 24.

  6. Re:Postgresql on Fedora 19 Nixing MySQL in Favor of MariaDB · · Score: 1

    The closest thing to case-insensitive collation is the citext data type. It works basically transparently as a case-insensitive replacement for varchar and text.

    The major feature keeping $dayjob from using PostgreSQL over MSSQL in new development is the lack of an accent-insensitive collation. Making an index using a custom function marked IMMUTABLE that calls (lower(unaccent(text)), and then calling the same function in nearly every query, is simply too hackish to stomach.

  7. Re:the point, exactly? on Hypersonic Test Aircraft Peeled Apart After 3 Minutes of Sustained Mach 20 Speed · · Score: 1

    Consider also that without such pioneers as Chuck Yeager we would not have transsonic or supersonic airliners.

    Umm... we don't. That 1970s french/brit thingy crashed, and that was that. It just costs to damn much to fly an airliner past Mach-1. It's like commuting 30 miles to work every day in a Bugatti Veyron at 2 mpg.

  8. Re:Close to re-entry speed on Hypersonic Test Aircraft Peeled Apart After 3 Minutes of Sustained Mach 20 Speed · · Score: 3, Informative

    And while they're busy doing that they often manage to put on one hell of a show:
    * this effort
    * the autonomous vehicle DARPA Challenge
    * other random bits that we read about
    * certainly other random bits we have no idea about, but I bet they're cool!
    -nB

    also..
    * the fucking Internet

    you kids these days need to learn your history

  9. Re:Wait, hang on on India Test Fires Long-Range, Nuke-Capable Missile · · Score: 1

    Yes, Israel has been at war with its neighbors, but only because it has been repeatedly attacked by those neighbors. Not that Israel plays especially nice these days - in fact they act like total dicks. I probably would act a bit dickish too if 90 million of my neighbors had vowed to wipe my people from the face of the Earth, and repeatedly attacked me with tanks and artillery to prove that they weren't just talking.

  10. Re:Be creative but have rules on Server Names For a New Generation · · Score: 2

    You just gave away your inexperience there.

    You really want to touch configuration files on hundreds/thousands of machines just because a server IP has changed? How do you migrate a server to new hardware without downtime?

    There's this thing called a "DNS Resolver Cache", in every OS. And another thing called a "TTL" on a DNS record. They'll save you hours of scripting work the next time you need to do a service migration.

  11. Re:Sabu is unemployed - what a surprise on LulzSec Leader Sabu Unmasked, Arrested and Caught Collaborating · · Score: 1

    You do realize that by denying people access to employment after their jail term has ended, you're leaving them only one option: Criminal activity, correct?

    He can dig ditches, mow lawns, shuck corn, whatever. That's gainful employment. What he cannot do is expect to ever be put in a position of trust by his employer. That's the way it works for convicted felons - it ruins your life, even after you are out of prison. It's been that way since Greece ruled the Mediterranean, and will likely always be that way.

  12. Re:it's a mole! on LulzSec Leader Sabu Unmasked, Arrested and Caught Collaborating · · Score: 0

    Really? You're suggesting the douchebag antics of Lulzsec and Anonymous are somehow patriotic? A form of righteous civil disobedience?

    Or are you just being an asshole?

  13. Re:What we need on Apache 2.4 Takes Direct Aim At Nginx · · Score: 1

    Nginx 1.0+ supports backend keepalives with a patch and module, but they are still not in official release. But this code comes from the principal nginx author, so it will make it into release soon.

    That said, your back-ends are usually very close network-wise to nginx proxies, and connections can be established and torn down in less than 1 ms. Since the back-ends are usually thread-based, this is a good idea anyway (which is why everybody has to turn off HTTP keepalives in Apache when they start to scale). Disabling HTTP keepalives SUCKS for the client's experience, especially if they are on wireless/mobile connections or on another continent.

    I manage a medium-sized SaaS application with about 0.7M users, and we front dozens of honking physical JBoss/Tomcat boxes with a single-core linux VM running nginx with 1 GB of RAM (with a hot standby of course). Nginx is only proxying to back-ends, not serving static files (except for a small 512MB set of really hot files using proxy_cache which stays in the filesystem cache). Nginx itself uses only about 100 MB with 8 worker processes. This isn't surprising: even the biggest $50K F5 load balancers have very wimpy specifications for CPU and RAM, but like nginx they use an event-driven model to keep RAM usage and context-switching to a minimum.

    One problem running nginx on Linux is that asynchronous IO on Linux is horribly broken by design, and only works for databases that use direct uncached IO. So we are looking at moving nginx to FreeBSD so we can take advantage of asynchronous disk IO as well as the default asynchronous network IO.

    The one-thread/process-per-connection model of Apache really just doesn't cut it for web-scale workloads. We were able to re-purpose our dedicated Apache front-end boxes as application servers instead because of the RAM savings. So nginx saves us about $2k per month in colo costs.

  14. Re:4TB limit on SSD Latency, Error Rates May Spell Bleak Future · · Score: 1

    not standard form factor 5.25" drives

    1991 just called, and they want their standard hard drive form factor back.

  15. Re:Throughput isn't measured in IOPS on SSD Latency, Error Rates May Spell Bleak Future · · Score: 2

    Actually, that's when I realized that the guy writing the article didn't have a clue. Since when is throughput measured in IOPS?

    Since always. Throughput is always operations per second, or transactions per second. Bandiwdth is measred in Mbps or MBps.

  16. Re:I do the opposite on Retail Chains To Strike Back Against Online Vendors · · Score: 1

    The brick and mortars need to focus on providing a better overall value, and that includes their employees being able to enumerate exactly WHAT that better value is.

    ^^THIS^^

    You do nobody any good by "buying local" just because or buying an inferior product because it is made-in-the-USA. It just keeps inefficient/low-value-add operations alive in zombie mode and provides no incentive for the necessary change that will actually improve the economy long-term.

    For example, I did a huge chunk of my Christmas shopping at Nordstrom. I paid probably 25-30% more than I would online or elsewhere. But I did so because they let me sit in a comfy chair, and got me coffee. Then the helpful salesperson went and picked out items for my wife, sisters, mom, etc. that I simply had no chance of choosing well on my own. That's value-add.

  17. Re:Or you can just... on Royalty-Free MPEG Video Proposals Announced · · Score: 1

    Every...study has shown that the best available VP8 encoders require almost 2x the bitrate of the best H.264 high profile encoders.

    Got links?

    Sure... this is the most comprehensive qualitative test I've seen, using a huge varietry of sources and metrics. See conclusions section on page 93, which shows WebM requiring >2x the bits of x264 for the same quality.

    A rigorous subjective comparison can be found here, using the Double Stimulus Continuous Quality Scale methdololgy.

    Note in both subjective and objective comparisons, WebM takes 2x or more bits to achieve the same quality at web bitrates of ~500 kbps.

    At much higher bitrates, the quality differences narrow. But high bitrates aren't valuable for Internet use cases, and in any case at 2.5 Mbps and SD resolution, even inefficient codecs like MPEG-2 or WMV8 look good.

  18. Re:Or you can just... on Royalty-Free MPEG Video Proposals Announced · · Score: 1

    Under normal viewing conditions, WebM and H.264 are comparable.

    No, they really aren't. Every rigorous quantitative and rigorous qualitative (large sample sizes and double-blind) study has shown that the best available VP8 encoders require almost 2x the bitrate of the best H.264 high profile encoders.

    VP8 is basically useless, as it is very likely encumbered by patents (12 different companies have made claims, and Google will not offer indemnification for a reason). So it isn't free, it is extremely slow, and it requires twice as many bits. I operate a commercial video site, and guess what? Our H.264 licenses cost less than the extra storage and bandwidth WebM would require. And the WebM tool chain sucks.

  19. Re:Time to replace DNS on EU Speaks Out Against US Censorship · · Score: 1

    The root servers are already quite distributed, thank you. Are you suggesting the roots should contain differing data and somehow resolvers decide what to use by voting or reputation scoring or some shit like that? The PGP web of trust didn't take off. That model has been tried and doesn't work.

  20. Re:Whats this obsession for everything in Javascri on OpenPGP Implemented In JavaScript · · Score: 1

    Javascript is the only language actually delivering on the promise of "write-once-run-anywhere." Well, "anywhere" that has a web browser, which is just about any device that does human interaction these days. All the other languages you mentioned have numerous environmental dependencies (separately installed run-times, OS specific conditionals, browser plug-ins, compiler specifics, etc.). Javascript sucks in many ways, but it sucks less than the alternatives for building an application quickly that can work just about anywhere.

  21. Re:Time to replace DNS on EU Speaks Out Against US Censorship · · Score: 4, Insightful

    I think this is a sign that DNS needs getting replaced with a non-centralized system.

    Is there anybody working on such a thing?

    Good luck with that. This is an industry that hasn't replaced IPv4 despite 15 years of warnings. An industry in which horrifyingly broken and insecure protocols such as SMTP and FTP are still ubiquitous. Once something is widely deployed, it basically cannot be changed, or only changed over the span of decades.

  22. Re:Not just the apps on Dennis Ritchie, Creator of C Programming Language, Passed Away · · Score: 1

    ssembler still used in much of the kernel.

    Umm... no. Assembler is used in very little of the kernel. Just a few performance-critical places, like spinlocks, compare-and-swap, and parts of the HAL if I remember correctly. That's why it is fairly easy to port the NT kernel to other architectures (MIPS, Alpha, PowerPC and now ARM).

  23. Re:That didn't take too long to fail on iOS 5 Update Available · · Score: 1

    WTF? Safari updates on OSX require a reboot? Even MSFT has finally figured out how to do (some) IE updates without reboots on Win7 and 2008r2.

    Actually, now that I think about it, every recent Ubuntu 10.04 Server update has also given me the **system restart requried** banner, even when there wasn't a kernel update.

    I guess those re-bootless updates on **NIX were always a myth.

  24. Re:Zag on Analyzing Long-Term SSD Failure Rates · · Score: 1

    Ditto here. About 50 Intel X-25s or 320s so far, many in service for 2+ years, and zero failures. All in laptops. We started buying all SSDs in laptops about a year ago. We see much higher (~5% annual) failure rates in our desktop mechanical disks, as well as the hundreds of "near-line" 7200 RPM and "enterprise" 15K drives in the datacenter. Our next SAN/NAS purchase will definitely have good MLC SSDs on tier-0 or as massive read/write cache, backed by spinning rust in RAID-6 or something similar for capacity. We will of course hammer the crap out of some demo units with random writes for several weeks to provide confidence in the SSD lifetimes.

  25. Re:Change on Why Does the US Cling To Imperial Measurements? · · Score: 1

    I learned everything in metric via my Indiana public school system starting in the 1970s. But it didn't matter - everyday units used in speech are imperial, and that is what dominates. Nobody in the "real world" uses metric units except for a few niches, so people learn to think in imperial units despite what they are taught in the classroom. The worst to deal with is temperatures when I am out of the country... most other conversions can be done in the head, but for some reason that one is a major pain in the ass. I suspect the non-aligned zeros of the two scales is the real problem. Farenheit is just more natural (to Americans) anyway: 0F is "about as cold as it ever is outside" and 100F is "about as hot as it ever is outside". That sort of natural unit fit has perceived value that's hard to overcome.