Slashdot Mirror


User: MarkRose

MarkRose's activity in the archive.

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

Comments · 958

  1. Re:Very easy if you fly, 3 letter code on ticket on Ask Slashdot: How To Determine If One Is On a Watchlist? · · Score: 1

    Slashdot is run by Cardassians! I knew it! It all makes sense now!

  2. Re:Heh heh on Botnet Takes Over Twitch Install and Partially Installs Gentoo · · Score: 1

    I tried coming up with a follow up pun, but it was no USE.

  3. That's bonkers! Or maybe not...

  4. Re:It's summer-time, no need to heat your office! on NVIDIA's GeForce GTX 980 Ti Costs $350 Less Than TITAN X, Performs Similarly · · Score: 1

    Markets do change though. For the longest time, I was a non-gamer. Then Steam for Linux came out. Two years ago I bought a GTX 760, which was many times the cost of the GT 430 I bought before that. I bought the 760 because it was the best card I could get without upgrading my power supply (which split 12 volt rails). But I've found that the 760 is under powered for driving my 1440p display at reasonable framerates (I have the display for productivity purposes). It's time to build a new computer this year, and I'm probably going to go with a GTX 980 Ti.

  5. Re:Theory says more efficient utilization, but... on Cloud Boom Drives Sales Boom For Physical Servers · · Score: 1

    Not in all cases. I manage a five figures monthly cloud deployment, and I look at the bill every month looking for ways to reduce costs. Using the cloud is cheaper than maintaining our own data center, before even considering how capital intensive it would be to carry around unused resources ourselves.

    If I had to have enough spare resources to handle our occasional traffic spikes, I'd have to spend an extra $100,000 upfront for hardware that would sit around doing nothing almost all the time. But when our traffic triples in fifteen minutes and I need another fifty web servers, they're automatically provisioned and deployed behind the load balancer, and we spend an extra $100 or whatever for the day. Events like that happen maybe five times a year. $500 is a lot less than $100,000.

    We also use a similar setup for work queues and scale worker machines based on how long it's taking tasks to get processed. Some hours only one machine is running for a queue, other hours, ten. We use spot pricing, too, on less urgent work, to keep costs down.

    At first I was skeptical about cloud computing, but I'm a convert. It works. And it works beautifully. And it saves us a lot of money by allowing us to use a lot fewer servers on an average basis.

  6. Re:Pneumatic post on UK Company Wants To Deliver Parcels Through Underground Tunnels · · Score: 1

    Thank you for a megapascal of a laugh :D

  7. Re:My Off Grid Experience on The Myth of Going Off the Power Grid · · Score: 1

    You may want to get a quote from beutilityfree.com, who resells the Chinese Ni-Fe batteries. They're based in Colorado.

  8. Re:% of total sales on Steam On Linux Now Has Over a Thousand Games Available · · Score: 1

    Sorry to disappoint, but that's because Steam sniffs the user agent string for OS and filters what it displays by default. If you visited with a Windows or Mac machine you would probably see a different list. You can remove the filter if you wish. Personally, I think filtering by default is great since my time isn't wasted looking at games I can't install and play.

  9. Re:Don't do it, Snowden! on Snowden Reportedly In Talks To Return To US To Face Trial · · Score: 1

    You laugh, but rumors are she was involved in a plot to keep him there.

  10. Re:Perhaps it wouldn’t pass today’s .. on 1950s Toy That Included Actual Uranium Ore Goes On Display At Museum · · Score: 1

    Be careful with disassembling smoke detectors. First, americium is extremely toxic, like polonium. Second, the amount of americium-241 contained within may exceed the licensing exempt quantity when removed from a smoke detector, depending on your jurisdiction.

  11. Re:About 7-8 years ago? on Ask Slashdot: Has the Time Passed For Coding Website from Scratch? · · Score: 1

    It really depends on scale. If you run a small site, one that gets less than 10 million hits a month or so, you're fine on a run-of-the-mill CMS like Wordpress. Though I should mention many frameworks will fall over at much less load due to poor design decisions.

    It gets interesting when your concurrency goes higher. Things like ORM baked into many frameworks break down, and if your site is interactive, it's a lot harder to add effective caching.

    Over the last six years I designed a Linux-Nginx-MySQL-PHP stack that currently does over 2 billion requests per month. Over 98% of the requests are served entirely from cache, and every request gets a live view (no reverse caching proxy or the like). This is possible because I designed and basically scratch-built a framework that does caching intelligently, in a way that's just not possible with any ORM-based framework I've seen. The front-end is mostly JS, which I did not build, and it does use frameworks like jQuery, angular, less, grunt, etc.

    We're starting to see mild growing pains (but we could still handle ten times our current traffic) and are migrating to a Cassandra/Kafka/Storm/Java stack to take things multiple orders of magnitude higher and to make everything real-time. There are simply not any frameworks available, but there are many projects like Cassandra, Kafka, and Storm that do a lot of the hard work and that can be glued together with you own libraries.

    It doesn't take a huge team to do it, either, if you're smart. We're a dozen people on the tech side, including design, front, back, ops, QA, and management.

  12. Re:systemd... on SystemD Gains New Networking Features · · Score: 4, Informative

    Routers are probably the first thing you want to change. I don't use FreeBSD, but it features zero copy networking for insanely fast routing, which Linux does not.

  13. Re:Hands and feet on Being Colder May Be Good For Your Health · · Score: 1

    I also have a fan on all the time. I'm simply uncomfortable in temperatures above 21C.

    I'm comfortable in pants and a t-shirt down to 0C if it's not too windy, or -15C if it's calm and sunny and I'm moving around. Below those conditions I'll wear a jacket and perhaps gloves. Only once it gets to -25C do I get out the winter gear and start layering. I don't need it until then.

  14. Re:How fast is just too fast? on US Internet Offers 10Gbps Fiber In Minneapolis · · Score: 1

    I have 175 Mbps symmetric at home, and it's good enough for my purposes at the moment. Having reasonable upload bandwidth like that with 3 ms ping to the office is useful for exporting X apps to my work desktop (yes, I do that). It's nearly as fast as a local app to the point where I could forget it's remote.

    The decent upload is also really handy for doing remote backups. I have ISCSI targets in distant locations that I simply mount and use like a local file system. ISCSI without reasonable upload capacity or low latency is a frustrating experience.

    I used to have 50 Mbps symmetric, and it was okay, but I did find myself waiting on things. I wait less now with 175 Mbps, but I'm also still throttling backup speed.

    Most websites I visit don't fully utilize the bandwidth because of the TCP ramp up time, and generally downloads will finish before maximum speed is reached. Well designed services like Mega will easily saturate my connection though.

    With a 1 Gbps connection at the office I've seen download speeds up to 80 MB/s from a local free software mirror. It's handy to download a new distro ISO in 15 seconds. It really changes your perspective on what data is worth keeping locally.

    If I were regularly downloading and uploading multi-gigabyte files, such as backing up video, 10 Gbps would be very useful! If online storage prices keep dropping it will be very tempting to keep everything in the cloud. Right now the cheapest storage VPS providers are around $20 per TB per month.

    But the key point is not so much increasing download bandwidth beyond 1 Gbps, but increasing upload bandwidth to match.

  15. Re:What's the Motivation? on LG To Show Off New 55-Inch 8K Display at CES · · Score: 1

    A 50" 1080p TV has a dot pitch of approximately 0.58 mm. That's huge.

    My 27" 1440p monitor has a dot pitch of 0.23 mm. I can clearly see pixels jaggies 2' away. It's not capable of producing fonts smaller than 8 px without collapsing the whitespace in and between letters. I can clearly read an 8 px font on that display from 7' away.

    The pixels in the 50" TV would be discernible at 5'. I would have to be 18' away from that TV before I couldn't read an 8 px font on it. I would discern detail three times farther away than that, so 4k would be an improvement over 1080p for a 50" TV any closer than 50' away. People who disagree might have less than 20/10 vision (20/10 is actually common).

    For desktop work, where I'm usually about 24-30" away, 8k in a 30" format (~294 ppi) would be really nice. I have a feeling I'll be waiting a while for that though.

  16. Re:Not a bad place.... on Is Chernobyl Still Dangerous? Was 60 Minutes Pushing Propaganda? · · Score: 1

    Not radioactive wolves, but rabid wolves. Probably the biggest danger in the zone along with decaying/collapsing buildings.

  17. Re:What a shock on Is Chernobyl Still Dangerous? Was 60 Minutes Pushing Propaganda? · · Score: 1

    You can eat some stuff grown there. It just depends on what, and the soil where the plant was grown. Why not eat an apple? I would. It can be safe! You have to test everything though, just like Norwegian reindeer meat.

  18. The First Attempt on Jackie Chan Discs Help Boost Solar Panel Efficiency · · Score: 5, Funny

    I heard the first attempt was with Chuck Norris discs, but they burnt holes through the panels.

  19. Re:"It took significant resources" on Worrying Aspects of Linux Gaming · · Score: 1

    That's me. I'm a casual gamer. I use Linux because it simply works better for me. It's not worth booting into Windows to play a game, because I'd be locked out of everything else. I don't watch or own a TV, so I've never bought a console. So I simply didn't play games for years.

    But Humble Bundle started making me aware of the Linux games available out there. Then Steam came out. A little over a year ago I spent several hundred dollars on decent graphics card to drive my 1440p display. I've spent hundreds of dollars and hundreds of hours playing games.

    I'm not too cheap to buy a Windows license. Money is not the issue. Booting into Windows is simply not worth the hassle.

  20. Re:Or they will simply get it banned or restricted on Utilities Should Worry; Rooftop Solar Could Soon Cut Their Profit · · Score: 1

    In some areas of the US (especially the south eastern states where cheap dirty coal rains supreme)

    Did you mean acid rain's supreme? Or reigns supreme?

  21. Re:Anyone else notice the low DP numbers? on NVIDIA Launches Maxwell-Based GeForce GTX 980 and GeForce GTX 970 GPUs · · Score: 1

    I recently bought 2 used 580's for their 32-bit integer compute performance, for $280 total. Buying GTX 780 Ti's with comparable performance would have cost me 5 times as much.

  22. Re:Yes, pipelined utilities, like the logs on Torvalds: No Opinion On Systemd · · Score: 1

    Less is more than more. Less is better than more.

  23. Re:Everybody skips the interesting bits on Site of 1976 "Atomic Man" Accident To Be Cleaned · · Score: 2

    At the surface of a reactor pool, the biggest dose of radiation is actually from the tritium created by neutron absorption by the hydrogen in the water molecules. The heat given off by the fuel will create a convective current, so the tritium will be evenly dispersed throughout the pool. Swimming in or drinking the water would obviously not be the best thing due to the tritium contamination (while skin will block the very weak beta radiation, tritium ingested or absorbed through the skin can cause DNA damage). A small amount will also be present in the air around the pool due to evaporation. Would I drink or swim in the water? No. But I have stood over a reactor pool for several minutes without concern.

  24. Re:Wear leveling on New Middleware Promises Dramatically Higher Speeds, Lower Power Draw For SSDs · · Score: 1

    It was 128 KB for smaller, older drives. For instance, the Samsung 840 EVO series use an erase block size of 2 MB. Some devices even have an 8 MB erase block size. 8 KB page sizes are common now, too, much like how spinning rust moved to 4 KB pages. Using larger pages and blocks allows for denser, cheaper manufacturing.

  25. Re:Sanity check on 7.1 Billion People, 7.1 Billion Mobile Phone Accounts Activated · · Score: 4, Funny

    Didn't you mean to say.... a phony number?