COVID-19 experience working from home

Like tens or hundreds of thousands of others, I am working from home while the coronavirus pandemic sweeps the United States and the rest of the world.

Here are a few observations about my experience working from home. I’m a software engineer, and I realize that my experience is different from that of hardware engineers, QA folks, customer solutions agents, teachers, and even from other software engineers.

Sleep. The first several days, I worked from my bedroom, which has a great view of the outside world, but I found it difficult to sleep restfully at night. Once my wife shut down her in-home preschool, I moved to working from one of the two preschool rooms, and now I sleep quite well at night. It’s good to have a separate work place.

Exercise. Working from home, I feel more fidgety… maybe I move around less, because there are fewer meetings, and fewer impromptu discussions. So I feel a strong need to get out of the house and work in the yard (pruning, since it’s spring), take a walk or ride a bike.

Convenience. The kitchen and bathroom are closer. If I want to take a nap, no problem — I’ve got a comfortable bed nearby. Taking a walk around the block is a piece of cake — the front door isn’t that far away compared to when I’m working in the office.

Interruptions. Most of my children are teenagers, and believe it or not, I have fewer interruptions at home than I do at work. When my children are doing their remote school, two of them are in the same room as me, with headphones in their ears, and it’s so quiet that I can hear a pin drop.

Social. I enjoy the more frequent face to face interactions with my wife and children. I miss the face to face interactions with my coworkers. Video conferencing is a great invention, and yet it’s not the same as being there.

Communication. There are a lot fewer impromptu hallway discussions with coworkers, and more with family members. I’m not sure if we’re better at communicating with slack now that we’re all remote or not.

Internet. We have excellent wireless internet service. Since our entire family is working/schooling from home, we notice much more quickly when there’s network latency or poor quality.

Up to now, we’ve used a Disney Circle for parental control, and we knew it caused problems on a nearly weekly basis (it does ARP poisoning of a local network), especially for managed devices. With remote school, Circle started breaking things on a daily basis, so I turned Circle off.

I found that 5 Ghz WiFi on the main floor of our house doesn’t penetrate the floor and walls to the basement, and so I pulled my old ASUS WiFi router out of storage, put it in access point mode in our basement, installed a firmware update, and wired it to the router upstairs. Now I get better speeds and connectivity.

Commute. I had a great commute before, but it’s even better now. With so many people staying home, the air is cleaner.

Productivity. My productivity ebbs and flows at work, and the same is true while working from home. Overall, I feel a bit less productive working from home. I’m more inclined to put my Slack app in “do not disturb” mode when I finish working.

Update: It took three weeks before I settled into a good flow of working from home.

Captive portal detection

I did a wireshark dump on my Ubuntu 18.04 laptop and noticed that both Firefox and Ubuntu do captive portal detection. Of the two, I think the Firefox method is simpler to implement and use.

Firefox does an HTTP GET on http://detectportal.firefox.com/success.txt
Responds with HTTP 200 OK with a Content Type of text/plain and a body of “success\n”

Ubuntu does an HTTP GET on http://connectivity-check.ubuntu.com
Responds with HTTP 204 and a header of X-NetworkManager-Status: online\r\n

Notice that captive portal detection uses an unencrypted transport — http, and not https.

Simulate dropped or latent packets in Linux

I’m documenting this more for my own reference than anything, partly because I’ve used ‘tc’ off and on over the years.

  • https://stackoverflow.com/questions/614795/simulate-delayed-and-dropped-packets-on-linux
  • https://wiki.linuxfoundation.org/networking/netem

    
    tc qdisc add dev tun0 root netem loss 30%
    tc qdisc show dev tun0
    tc qdisc change dev tun0 root netem loss 0.1%
    

    When finished:

    tc qdisc del dev tun0 root
    
  • Programmer Productivity

    Twenty years ago, an extended family relation, a patent lawyer, expressed his opinion that there’s not that much variance between engineers — at least, not as much as people suppose. Companies draw from the same pool of talent, and the idea that one company has the bulk of talent is a misconception.

    This article by Bill Nichols confirms that idea in the realm of programmers.

    Programmer Moneyball: Challenging the Myth of Individual Programmer Productivity

    My view is that hard work, good health, persistence, consistency, the ability to work with others make a big difference. On the other hand, poor health, inconsistency and confusion of priorities lead to mediocre results.

    Key takeaways from the article, with my commentary below

    1. Keep tasks small.
      • Reworking the design or the infrastructure (e.g. build system) is rarely small, but it can often be done in parallel with the existing solution.
    2. Plan for uncertainty by leaving adequate margins.
      • Planning with adequate margins often comes from similar experience, especially within an organization.
    3. Start critical work early since almost half the time it will take longer than expected, sometimes much longer.
      • There are edge cases that must be handled, and we discover things that we didn’t know up-front: new difficulties, new requirements, etc.
    4. Don’t be fooled by short-term progress.
    5. Provide a quiet work place so that programmers can focus.
      • Carve out times of day where there are no meetings.
    6. Design to control the complexity and size of solutions.
      • Peer feedback is a good way to simplify design, especially when a first attempt has started to be overly complex, or not work as intended.
    7. Encourage frequent peer review.
      • Agreed. Note that not all code changes need the same level of peer feedback, so saddling certain kinds of changes with too much process can be the antithesis of progress and quality in things like readme files, fixing spelling mistakes, adding a comment to clarify code, etc. Find a balance that works well.
    8. Automate routine tasks such as regression test and deployment.
      • I mostly agree. Beware of automating everything, especially one-off-temporary-solutions. Manual testing has its place.
    9. Develop talent with training, such as for design, review, and test.
      • Not all training is of equal value.
    10. Since quality can be taught and benefits apply to the total lifecycle cost, emphasize quality rather than speed.
      • For a revenue producing product, I tend to agree. When there’s a critical time-to-market component that has been adequately quantified, it can make sense to initially prioritize speed over quality — with the understanding that it may require all-hands-on-deck to handle quality failures.

    He concludes, “the most motivating and humane way to improve average performance is to find ways to improve everyone’s performance.”

    When management doesn’t prioritize items on the above list, it’s important for a software engineer to mange themselves and make them a priority.

    Ubuntu on Windows: Refreshing & Fast

    Microsoft has been doing interesting things with Windows, such as adding Windows Subsystem for Linux, which allowed me to install and run Ubuntu from the Windows app store.

    I love having a full and familiar Linux bash command shell at my fingertips, with the utilities I know and love, including ssh. It’s fast.

    https://www.microsoft.com/en-us/p/ubuntu/9nblggh4msv6

    Prior to this, I used cygwin on Windows, which was also good. However, I prefer Ubuntu, mostly.

    There are some caveats:

    • The home directory is in a different place from the Windows home. So for easy access, I symlink Documents, Downloads, Pictures and Videos to my Ubuntu homedir.
    • Still need to keep the Ubuntu software up-to-date. Microsoft’s app store doesn’t do it for you. Run sudo apt-get update ; sudo apt-get upgrade
    • Removable drives aren’t mapped into the filesystem automatically — cygwin was better in this regard.
    • It’s a subsystem — a container, so it doesn’t manage Windows. E.g.
      — Can’t reboot from the command line
      — Can’t manage Windows processes or users

    Worth the read: Metrics That Matter

    There’s a book titled “Measure What Matters”, and it’s fascinating and worth the read. This article from acmqueue with nearly the same title is quite interesting, because it turns some of my previous thinking on it’s head.

    Metrics That Matter

    Summary: “Speed matters”; Instrument client code to measure user experience; Measure “long-tail” latency at the 95th and 99th percentiles; even minor changes to code or user behavior can effect things; build bench-marking into release testing procedures.

    OpenWRT + SafeSearch

    I’ve got an OpenWRT router, and here’s how I configured it to enable safesearch on my home network.

    Update May, 2022: Not recommended. I upgraded my router to OpenWRT 21.02.3 and suddenly, all searches through google, bing, and duckduckgo stopped working. At first, I thought it was cloudflare’s 1.1.1.3 DNS that was broken, but I was wrong. Once I removed the cname entries from my router and restarted dnsmasq, searches started working again.

    uci add dhcp cname
    uci set dhcp.@cname[-1].cname="www.google.com"
    uci set dhcp.@cname[-1].target="forcesafesearch.google.com"
    uci commit dhcp
    
    uci add dhcp cname
    uci set dhcp.@cname[-1].cname="www.bing.com"
    uci set dhcp.@cname[-1].target="strict.bing.com"
    uci commit dhcp
    
    uci add dhcp cname
    uci set dhcp.@cname[-1].cname="duckduckgo.com"
    uci set dhcp.@cname[-1].target="safe.duckduckgo.com"
    uci commit dhcp
    
    for name in www.youtube.com m.youtube.com youtubei.googleapis.com youtube.googleapis.com www.youtube-nocookie.com ; do
        uci add dhcp cname
        uci set dhcp.@cname[-1].cname="$name"
        uci set dhcp.@cname[-1].target="restrict.youtube.com"
        uci commit dhcp
    done
    
    service dnsmasq restart
    

    See the configuration:

    grep -A2 cname /etc/config/dhcp
    

    Python: How to reduce memory usage

    Useful information for reducing memory usage of Python programs:

    • https://m.habr.com/en/post/458518/
    • https://stackoverflow.com/questions/472000/usage-of-slots

    TLDR: Dictionaries use a lot of memory. Possible solutions include using a class and slots, namedtuple, recordclass, cython, or numpy.

    Screen brightness: Linux + Lenovo P50

    I run Ubuntu on my Lenovo P50, and the backlight keys haven’t ever worked. Here’s how I got it working.

    
    sudo apt install xbacklight
    

    Then I mapped the keys using Settings > Devices > Keyboard and added mappings for the following:

    Windows-F5: xbacklight -inc 5 -time 1 -steps 1
    Windows-F6: xbacklight -dec 5 -time 0 -steps 1