Slashdot Mirror


The Biggest Time Suck at the Office Might Be Your Computer (bloomberg.com)

Sharing personal anecdotes and recent studies, a new report on Bloomberg blames outdated computers, decade-old operating systems and ageing equipments for being one of the biggest hurdles that prevents people from doing actual work in their offices. From the article: Slow, outdated computers and intermittent internet connections demoralize workers, a survey of 6,000 European workers said. Half of U.K. employees said creaking computers were "restrictive and limiting," and 38 percent said modern technology would make them more motivated, according to the survey, commissioned by electronics company Sharp. Scott's (a 25-year-old researcher who works at an insurance firm) PC runs the relatively up-to-date Windows 8 operating system, but his computer sometimes struggles to handle large spreadsheets and multiple documents open simultaneously, slowing him down. Others are in a worse spot. One in every eight business laptops and desktops worldwide still run Windows XP, which was introduced in 2001. [...] Some businesses can't help using old hardware or operating systems, because they use specialized software that also hasn't been brought up-to-date.

30 of 169 comments (clear)

  1. Biggest time suck? by DontBeAMoran · · Score: 2

    Slashdot, HackADay, etc...

    --
    #DeleteFacebook
  2. Economics is hard by TheRaven64 · · Score: 4, Insightful

    The cost of a new high-end PC over a three-year lifetime is trivial compared to a typical office-worker salary. The cost of a decent chair over its 10-20 year lifetime is even smaller. Yet somehow companies refuse to spend 1% of a salary on something that will make people 5% more efficient.

    --
    I am TheRaven on Soylent News
    1. Re:Economics is hard by Brett+Buck · · Score: 4, Insightful

      However, the cost of 3-6 months trying to get a new machine configured properly and the correct software installed is NOT trivial in terms of time wasted. And 3 months would be an optimistic estimate. The biggest time waste I see is the dreaded "refresh", where you have everything working, then someone comes around wanting to "upgrade" your machine, and then you spend weeks or months arguing with IT about which applications should be installed, finding that half your documents are corrupted because this version of WORD is incompatible with the last 5 (all of which are also incompatible with each other), and poking around the internet trying to troubleshoot because no one has any idea what to do about it.

    2. Re:Economics is hard by thegarbz · · Score: 2

      The cost of a new high-end PC over a three-year lifetime is trivial

      Before you look into cost you need to ask yourself what problem are you trying to solve? I have yet to see a computer slowdown in an office that could be fixed by better hardware or more high-end.

      Computers are bogged down primarily by crap software, corporate management software, and my personal favourite: share point. Well okay that last one is extreme but we do that with every web interface.

      Maximo turned from a great asset management database with a great front end into an in the browser special that worked only in IE could no longer use multiple windows, and was hosted somewhere in the cloud which would have worked great in the presentation to management but sucks when 300 people are suddenly sucking on the end of a thin internet pipe.

      High performance computers? Yeah we got those. They aren't worth even an employee's salary for a day.

    3. Re:Economics is hard by PPH · · Score: 2

      The cost of a decent chair over its 10-20 year lifetime is even smaller.

      Until Microsoft yanks my chair out from under me and tries to install a new one. While I'm standing, they tell me how great it will be when I finally get to sit down again.

      Then, it will take me a few weeks to find where the new height and seat back tilt controls are.

      --
      Have gnu, will travel.
  3. Um...audience? by xxxJonBoyxxx · · Score: 4, Funny

    >> his computer sometimes struggles to handle large spreadsheets and multiple documents open simultaneously

    Hi "MsMash" and welcome to SlashDot! We are a thriving community of developers and IT folks who do interesting things like "compile code", "simulate load" and "troubleshoot." Having to deal with a computer too slow to handle a bunch of crappy Office documents isn't something we really ever face, since our challenges are greater than those faced by the poor schlubs (like this imaginary office worker) we mock.

    Do you have any stories that might interest us instead?

    1. Re:Um...audience? by hattig · · Score: 2

      You should see some of the abominations of spreadsheets non-developer people come up with, instead of using a more suitable solution!

    2. Re:Um...audience? by DontBeAMoran · · Score: 4, Funny

      It's horses all the way down.

      --
      #DeleteFacebook
  4. Ugh spreadsheets by athmanb · · Score: 5, Interesting

    In a recent ticket I got, one of our finance guys complained that our computers (Haswell i7, 8GB RAM with an SSD) were too slow and that he needed a better one. The finance director of course immediately signed off on the purchase request before even asking me for a price. I couldn't quite believe that complaint and had him show me what wasn't fast enough, and was treated to a horrible mess of a XLSX with a million rows, two hundred columns, and vlookups and pivot tables everywhere.

    Out of pure curiosity I let that run on a 64 bit Excel on an empty terminal server with 128GB of RAM and of course it ran like crap on there too. I never tried deciphering the spaghetti code of that spreadsheet, but I'm almost certain that if it had been developed in a real programming language, it would've stepped down the O(n) complexity by a couple levels and made the whole calculation run in seconds.

    Never believe anybody who says his computer is too slow because of a spreadsheet.

    1. Re:Ugh spreadsheets by Brett+Buck · · Score: 3, Insightful

      I have seen a bunch of those, but the speed seems to be a secondary consideration. You can't tell whether the results are correct in any more than trivial cases.

    2. Re:Ugh spreadsheets by Anonymous Coward · · Score: 2, Insightful

      > ...it would've stepped down the O(n) complexity by a couple levels and made the whole calculation run in seconds.

      ITYM "it would've reduced the constant factors by many orders of magnitude". Linear complexity is not bad. It's the best you can do for something that has to consider every piece of input data at least once.

    3. Re:Ugh spreadsheets by Anonymous Coward · · Score: 3, Informative

      You don't know the half of it. Google "HPC services for Excel"

      I apologize, but it's important to know that this.. Exists.

      You've had a glimpse of the madness that leads men to do terrible things.. But what kind of sick depravity must one endure to device compute node clusters for Excel spreadsheets?

    4. Re:Ugh spreadsheets by thegarbz · · Score: 2

      The problem isn't so much spreadsheet or the language or even the complexity. But rather that people just don't have a frigging clue how to write macros.

      My three pet peeves:
      - Application.ScreenUpdating - You did remember to try and not draw every action on the screen like CSI Miami doing the worlds slowest fingerprint searches right?
      - Not understanding that you can nest loops, and if statements. How many times have you seen code that causes the same set of cells to be looped through sequentially three times rather than using a multidimensional array or god forbid just copying and pasting the code three times.
      - Not using Excel. I helped a colleague who's sheet was running slowly. She was looping through cells reading their value, going to the next cell, reading that value, doing some basic math and then outputting it to the next cell. errr you do know what a spreadsheet formula is right?

      I've yet to see a spreadsheet which wasn't created by an IT professional that I couldn't optimise, and I mean A LOT. And that's not bragging. I will be the first to admit I suck at programming.

    5. Re:Ugh spreadsheets by Ginguin · · Score: 2

      Part of the problem comes when an "urgent" request for data comes in, and you have to cobble together a piece of crap that is only supposed to be used once. Then it gets requested again. And again.

      I have some VBA code that I am proud of (well, as proud as anyone can be of something done in VBA). I have a few monstrosities that I hope no one ever sees. The difference is that I had time to think about the first group. The second group grew as management requirements and requests changed mid audit/lawsuit/whatever. "We need data X." "Now we need data X, correlated with Y, then compared to Z." "Now tell me the number of hours for each gender on Y". I left a biotech company a couple of years ago and got a call just last month asking for help with a macro I had made that they should never have been using. They found an old version I had sent to my manager and just continued using it without anyone having the skills to go in and change things, despite extensive comments.

      Sadly, the beast is created far more often than the beauty in certain environments.

      --
      "Anything you say can and will be used against you in a targeted advertisement" - Adam Harvey
  5. CSV to Excel spreadsheets... by __aaclcg7560 · · Score: 2

    The biggest time sink at my job is the system that exports CSV files to use in Excel. If you don't select your data and copy into a new Excel spreadsheet, updating the calculations on a 70MB file takes 90 minutes. That's not a problem on a clean Excel spreadsheet.

  6. Users lie. by ledow · · Score: 5, Interesting

    500+ users
    150+ machines.

    Not one of them is slow enough to discourage a user (doesn't stop them trying to claim that).

    Windows 8.1. 8Gb, SSD. EVERYWHERE. Everything you could want to do, office-wise, will fly. We have no power usage and EVERYONE has the same exact source image for their machine. Even IT.

    The biggest restriction is really that we *only* have Gigabit to the desktop. Plenty of oomph on the switches, more than enough backbone, massive internet line, servers and storage sitting mostly idle, but sometimes the gigabit is a bottleneck (e.g. 1Gb profile takes 8 seconds to download!).

    But turn the PC on, within 30 seconds you are at the logo-wallpaper of the logon screen. Type in your username/password, if it "knows" you (i.e. it's your computer or you logged in there recently), if gets to desktop in 10-20 seconds. If it doesn't know you, it's profile download and (possibly) GPO setup etc. which can take a minute or two admittedly. Applications launch and then work. You can open EVERYTHING on the image at once (I know, I've done it) and it still works just fine.

    Last time someone claimed something was slow (after re-images and all sorts), we took the machine apart on their desk, "changed" the hard drive for the exact same drive through some sleight of hand, re-imaged it again. They still - months later - keep telling me how much faster it now is (than the previous re-image of an identical image on the exact same hardware? Really?).

    It's all in their head. In the same way time slows when you are bored and speeds up when you're in a hurry, they perceive it differently when they're desperate to get something important done, but nobody's ever demonstrated an unreasonable logon, program startup, or response time.

    After years of doing IT and actually collecting metrics on this (perflog etc.), I just take it in my stride now.

    The irony: The IT Office machines - including my own - are their rejects from last year, that were deemed "slow". I put the exact same image back on them, put the IT software GPOs on (so they actually have MORE junk than a normal machine), and have been using them for 3 years now.

    Eating your own dogfood kinda throws out all the crazy performance theories. And if it's bad enough to bug them for even ten minutes, I assure you it will bug me more using it for EVERYTHING every single day of my working life.

    1. Re:Users lie. by Solandri · · Score: 2

      The problem isn't that users are lying. It's that one time in the 3 years they've worked at that company, the computer was slow because it was receiving an update in the background at the same time that a hung browser session was eating up 99% of the CPU cycles. The computer worked fine 99.99% of the time. But to the user's mind, that 0.01% experience is evidence that the computer isn't fast enough and needs to be replaced.

  7. Windows 7, the next OS that will not die by supremebob · · Score: 2

    It looks like Windows 7 is going to become the next Windows OS that will not die, replacing Windows XP as Microsoft's most problematic legacy OS. Windows 7 is less than 3 years away from it's end of support date at this point, and people are still doing new deployments of it every day.

    No wonder Microsoft is trying to block Windows updates on new AMD Ryzen and Intel Kaby Lake PC's.... they're trying to force organizations to upgrade to Windows 10 sooner than later to avoid having even more unpatched systems to deal with 2 1/2 years from now.

  8. SSD + Fast CPU by WoodburyMan · · Score: 4, Interesting

    This is the reason we upgraded ALL our workstations (about 200-250 workstations between two sites) to SSD's about two years back. We calculated the time it takes for a system to boot, assuming once a day, time lost while they get coffee / etc waiting for it to boot, and time during the day spent waiting for things to load. The ROI for us on these purchases was less than a year with time lost taken into account. Let alone moral/frustration issues.

    We also have done away with ordering bare minimal system. Everything we order has the latest generation i5 Quad Core or better (i7 Quad Cores or Xeons) for users that do CAD work. Back in 2009-2011 during the downturn, that his us hard, we had to buy a lot of lower end systems to replace dead hardware, and we felt the effects of it for years with users being frustrated.

  9. Re:Big crock of bull by holophrastic · · Score: 4, Insightful

    What a concept. We've eighty-seven thousand versions of microsoft office later. Does anyone's book report need anything newer than wordperfect? And if you thought that was dating myself, wordstar? It's black text on white page. Textart became useless when tractor-feed paper was gone -- you can't do banners on pre-cut paper. Count the number of office workers who use anything more than bold, italics, underline, a bulleted list, and maybe a numbered list. Even pivot tables have been around for decades now.

    You need the latest hardware to run the latest software. But you don't need the latest software to do the latest business -- because the latest business, most of the time, is nothing new.

  10. Windows 8 dual UI does slow people down by Joe_Dragon · · Score: 2

    Windows 8 dual UI does slow people down

  11. Biggest time sink for users by ai4px · · Score: 2

    Over the years I've gone from putting my own PC together (and the driver conflicts and the like) to just buying an off the shelf PC like your average schmoe. I've got both iOS and android tablets at home,and win10. The biggest time sink for me is hands down, Win10. Both my office laptop and home PC run it. I dread the super tuesday updates. At first Win10 would reset all my program preferences, but that has settled down. Most of all, it's the boot process that takes 5 minutes and then the user login that takes an additional 8 minutes. My tablets on the other hand can reboot in 60 seconds or less. Windows is simply bloated.

  12. Misleading article by evolutionary · · Score: 2

    Okay,this article is a mess and it's missing some key factors and some VERY misleading information. The biggest, that people need a crazy amount of RAM to run basic operating systems. In my experience speed problems are not because you don't have the latest operating system. Contrary to popular belief, the newest operating system (especially Windows 8/10) actually CREATE slowdowns. Those "live" tiles, the windows store monitors, the data collection scanning/transmitting to ms your private data all take more Memory resources. Windows XP in fact consumes less memory but it's 64-bit version is virtual unusable because of lack of proper drivers for hardware. Windows 7 can be tweaked in a few ways. Take off those fancy graphical theme/effects that alone helps.I find disabling SuperFetch makes a significant difference. On a Windows 8 Mini computer (by Asus) I was able to improve performance significantly by disabling and uninstalling all the tile features (which is a pain in the arse), as well as Superfetch) made a difference. See these articles:

    http://www.techregar.com/maste...
    http://www.windowsbleu.com/201...
    IT Professional often do NOT have the latest OS (except for testing) because we as professionals know of the memory consumption as well as privacy/OS control issues surrounding windows 8/10. So they will opt for Windows 7 pro (64-bit), a Mac or Linux variant (usually CentOS, Debian, or Scientific Linux..Linux Mint is for consumer use and it excels there).

    Most people use computers for 4 things: Internet, Word Processing, Multimedia and gaming). The first 3 don't require that much memory unless you are creating a media server. If you are a gamer then you truly need the memory of the games. No way around that. And the latest games may not run as well as Windows 7 (but every game I've seen doesn't require Windows 8 or 10). But those systems are typically 1k to 2k USD to build. If you are an professional artist or musician or developer you may need more. I find 16 GB is a real blessing if you need to run Virtual machines or do a lot of Java development.

    A few other things to improve Windows performance: There are services that truly have no business being there. The Update services that people seem to keep putting into systems are creepy. For example Mozilla Firefox actually installs an update service. Why would you even need a service running for a browser update? The browser gives you update alerts when it's running? Google has a updating service which you mess up the programs if you remove it. Adobe is one of the WORST offenders as they keep installing crap to try to push you to use their "cloud" services. The Adobe updater background applications can be disabled or removed. (they are sometimes preinstalled on laptops). Oh, And let's not forget Antiviruses. Some a great with memory, others are memory hogs. Symantec products are wasteful in resources in every respect. The best memory effecient antiviruses I've seen are Eset, BitDefender (not the free edition...sorry), and F-Secure. While I like Gdata it's a memory hog, no question. The most common reasons for PC slow downs are malware running on most people's PC without knowing it. For that I suggest a regular scan with Malware Bytes and Search & Destroy. I personally prefer the "classic" one without any of the automatic stuff but some may prefer the newer one. IT Professionals use these tools and a regular basis as they know no tool finds everything. Here are links to both:

    https://www.safer-networking.o...
    https://www.safer-networking.o...

    and Malwarebytes:
    https://www.malwarebytes.com/m...

    There are free versions but some should

    --
    "Imagination is more important than knowledge" - Einstein
  13. McAfee! = SlowCafee by Tablizer · · Score: 3, Insightful

    McAfee slows and jams up lots of stuff at our org.

    The cyber security team has used very aggressive McAfee settings. The security manager gets awards for security, but there is no anti-award for jamming productivity to counter. Thus, his incentive is to crank McAfee to 11. Productivity is somebody else's problem.

    For example, McAfee is set to On Access scanning on every desktop and server, meaning it scans almost every file accessed. Java "compressed" files, such as JAR's take forever to de-compress and scan, often more than 2 minutes. Thus, anything that uses Java as its engine is almost useless.

    One can request such files be white-listed on a case-by-case basis, but the security team is too bogged down to get to them in a timely manner, and they often use a narrow interpretation "to be safe" such that they miss some files, requiring multiple rounds of requests to get such apps use-able.

    McAfee's scan logs don't give enough info to be useful for up-front white-listing. Most users stopped bothering and just avoid using Java-based apps, paying for the more expensive alternatives. They blame Java instead of McAfee because they don't know the difference. (Arguably it could be said that large compressed libraries are a bad idea on Java's part. I hope they rid that feature. Or McAfee could make its scanners more Java-friendly.)

    On a more general level, performance consultants have looked at our slow systems and concluded we should get PC's with SSD's instead of disks. But there's (allegedly) no budget for that, so even new PC's are disk-based and McAfee and On Access scanning gradually eats them up over time as typical Windows time-bloat piles up. Thus, we go through PC's faster, and in the end DON'T save money by using disks (productivity aside).

    And lately they install more security doo-dads from other companies. They don't talk much about them to keep them stealthy. Those just add slugs on top of snails.

    We joke we don't get hacked because our slow systems make the hackers fall asleep waiting for response. Security through Snoozativity.

    I guess I shouldn't entirely blame the fastidious security manager because breaches could cause real havoc at our org. But, resources are not allocated to deal with the downsides of such fastidious cyber security. That's the top boss's fault.

  14. My entire day! by Tony+Isaac · · Score: 2

    Never mind time suck, I spend my entire day, every day, sitting in front of a computer! Please, take it away, so I can get something done!

    Wait, I'm a programmer, that might not work so well.

  15. Re:Always pointing at hardware by ewibble · · Score: 2, Informative

    Sorry it is bloat, I don't care how crappy your laptop is if it can't run a spreadsheet or two well. Excel 2.0 was released in 1987 that is 30 years ago, the speed even your cheapest computer is well over 1000 times faster (I am being very conservative here, and excluding multi core) they had what memory measured in kilobytes not Gigabytes, and yet people still have problems running a few spreadsheets.

  16. Re:Biggest time suck? by RotateLeftByte · · Score: 5, Interesting

    The biggest is Fighting Windows and MS's 'we know better than you' attitude.
    Add on top of that the local Admins restrictions and you get a virtual straight jacket.
    That hits productivity hard.

    --
    I'd rather be riding my '63 Triumph T120.
  17. Re:I needed a good laff by PPH · · Score: 2

    the NSA uses current hardware but programs in assembly

    The NSA uses high end FPGAs.

    --
    Have gnu, will travel.
  18. Healthcare has been hit hard by this. by uncoveror · · Score: 2

    I work at a help desk for a hospital and Physician's office network in Cincinnati, Ohio. Technology, as a boat anchor stopping people in their tracks, is especially bad in healthcare. The network here behaves like two cans and a string, especially since they piled on it with thin clients that have n internal storage and zero clients that are really just dumb terminals. Also, many full-fledged PCs are really showing their age. On top of that, most people who have to use the computers are intimidated by them, especially when dealing with Epic, an electronic medical records software that is obscenely complicated and unwieldy, but has somehow become the industry standard. There are also other software packages that complicate tasks that used to be simple. Even people like janitors and cooks who need supervisors to dial the help desk for them are expected to use the computers to due tasks like check their now paperless pay stubs, and sign off on performance reviews. It seems computers have been simply thrown at problems they are not the right tool to solve, and created problems that did not previously exist. This is at a system that some magazine named the most wired in the region, or maybe it was the most wired in the industry. This distinction does not seem award worthy from my perspective.

    --
    The Uncoveror: It's the real news.
  19. Specialized software stops upgrades? by scdeimos · · Score: 2

    Some businesses can't help using old hardware or operating systems, because they use specialized software that also hasn't been brought up-to-date.

    Nonsense! Virtualize that crap and run everything else on shiny new hardware. I'm sure there are still brain-dead banking applications that require ActiveX controls to run in MS-IE 5.5 or 6.x but that shouldn't stop everything else in the world from progressing.