Top Banner
Presented by Date Event Workspace setup tips and tricks Serge Broslavsky, Anmar Oueja, Ben Copeland, John Stultz, David Brown, Steve Muckle BKK16-TR07 10 March 2016 Linaro Connect BKK16
31

BKK16-TR07- Workspace Setup Tips and Tricks

Jan 12, 2017

Download

Technology

Linaro
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: BKK16-TR07- Workspace Setup Tips and Tricks

Presented by

Date

Event

Workspace setuptips and tricksSerge Broslavsky,

Anmar Oueja, Ben Copeland, John Stultz, David Brown,

Steve Muckle

BKK16-TR07 10 March 2016

Linaro Connect BKK16

Page 2: BKK16-TR07- Workspace Setup Tips and Tricks

The idea behind this session

We use a lot of different equipment and related techniques we find and invent over time.

We all accumulate tips and tricks over time that are improving our experience dealing with the above.

We need to share them with each other to be more productive, healthy, and to have more fun.

Page 3: BKK16-TR07- Workspace Setup Tips and Tricks

Ergonomic workspace

● Sit/Stand Desks● Human interface points● Software Hacks

Page 4: BKK16-TR07- Workspace Setup Tips and Tricks

Sit / Stand Desks

● British Journal of Sports Medicine statement last year○ http://tinyurl.com/hqw55ox

● Recommendation on light activity per day● The office chair is… bad.● Exercise is not enough.● 30min = 90% slowdown of metabolism.

Page 5: BKK16-TR07- Workspace Setup Tips and Tricks

Sit / Stand Desks

● case study - Steve Muckle○ small couch○ makeshift stand-always solution○ Qualcomm-provided sit/stand desk○ Geekdesk Max○ Uplift Desk

Page 6: BKK16-TR07- Workspace Setup Tips and Tricks

Sit/Stand Desks

● Case Study○ Lifespan Fitness○ Dual Display with

VESA arms○ Logitech Trackball○ Mechanical Keyboards

Page 7: BKK16-TR07- Workspace Setup Tips and Tricks

Sit/Stand Desks

● Start slow!● Get a mat.

○ Imprint® CumulusPRO Commercial Grade Standing Desk Anti-Fatigue Mathttp://tinyurl.com/zkluz4u

● Jerry-rigged is okay, but adjustable is best.● Cross bar isn’t necessarily required.

Page 8: BKK16-TR07- Workspace Setup Tips and Tricks

Human Interface Points● Mechanical Keyboards

○ Easier on your wrists (more button travel and tactile feedback)○ More forgiving when typing and walking

● Track Balls○ Helpful when walking on the treadmill and navigating your desktop.

The bigger the better● Monitor/Laptop Stand

○ Elevate your monitor/laptop’s screen to eye level. Avoid wobble. Can be annoying

Page 9: BKK16-TR07- Workspace Setup Tips and Tricks

Software Hacks

● Blue light - RedShift (Xorg users), Flux for others● Dark Reader - inverse colours in Chrome● My Font for Gmail - Fixed fonts in Gmail● Deluminate plugin for Chrome

Page 10: BKK16-TR07- Workspace Setup Tips and Tricks

Questions?

Page 11: BKK16-TR07- Workspace Setup Tips and Tricks

A portable engineering setupAs we travel a lot, we need to keep ourselves productive while on the go.

A portable engineer’s setup fromMark Brown: http://tinyurl.com/jmo49p6

Page 12: BKK16-TR07- Workspace Setup Tips and Tricks

A portable ergonomic setup

Traveling does not mean suffering!

Laptop stand from Aliexpress

Bluetooth keyboard:Logitech K810

Bluetooth Mouse:Logitech M555b

Page 13: BKK16-TR07- Workspace Setup Tips and Tricks

Questions?

Page 14: BKK16-TR07- Workspace Setup Tips and Tricks

Managing your windows

Two major workflow types:● mouse-centric (e.g. drawing)● keyboard-centric (e.g. writing docs/code)

The problem: SW engineering seems to be mostly keyboard-centric, while traditional window management is done using mouse. Mixing the two brings in distractions.

Page 15: BKK16-TR07- Workspace Setup Tips and Tricks

Solution - tiling window managers● No overlapping windows (except for popups)

○ all your information is visible all the time● No fancy window decoration - better screen estate

usage○ especially useful for majority of the laptop screens

● No need to touch mouse except for applications that require that○ you can keep hands on the home row - top speed!

● Multiple virtual workspaces - can be themed too○ e.g. one for email, others - for IM, code editor, debugging

session, references, web, etc

Page 16: BKK16-TR07- Workspace Setup Tips and Tricks

Tiling window managers - which one?

There are many tiling window managers out there, but i3 seems to be the best one to start with:● lightweight, minimal screen, cpu and memory footprint● no large legacy in the codebase● simple configuration● seamlessly supports multiple displays● supports popup windows● dynamic window layouts - no limits!

Page 17: BKK16-TR07- Workspace Setup Tips and Tricks

Downsides

Using i3 you will get the following bad things gradually happening to you:● more work done● deteriorating mouse handling skills● inability to use others’ computers (without i3)● a tendency to prefer text / console based applications● more people calling you a geek

Page 18: BKK16-TR07- Workspace Setup Tips and Tricks

Questions?

Page 19: BKK16-TR07- Workspace Setup Tips and Tricks

Containers for development

● Classically used for deploying apps to servers○ Formalizes image creation○ Includes all dependencies○ Easy to deploy at scale

● Docker is probably best known● Hot! hot! hot!

Page 20: BKK16-TR07- Workspace Setup Tips and Tricks

Container benefits

● Formalized image descriptions● Avoids polluting development system● Security benefit of isolating builds

Page 21: BKK16-TR07- Workspace Setup Tips and Tricks

Container drawbacks and issues

● Docker images aren’t full systems● Hard to match uid/gid with host environment● Bugs! Bugs! Bugs!● Image updates and security issues

Page 22: BKK16-TR07- Workspace Setup Tips and Tricks

More info

General Docker Info & Getting started:https://www.docker.com/

Kernel and Android build Dockerfiles:https://github.com/johnstultz-work/dockerstuff

Dockerfiles to work within a shell:https://github.com/d3zd3z/davidb-docker

Page 23: BKK16-TR07- Workspace Setup Tips and Tricks

Questions?

Page 24: BKK16-TR07- Workspace Setup Tips and Tricks

Email - how to be efficient

● Using multiple clients is OK○ GUI for corporate e-mail○ Text mode for upstream & patches

● Concentrating on content, not the representation○ Text mode clients use most of the

screen estate for content

Page 25: BKK16-TR07- Workspace Setup Tips and Tricks

Text/Console clients

● Easy to work with code● Often better threading support● Operated by keyboard - match keyboard-centric

workflows● mutt is a very good example of a text/console mail

client

Page 26: BKK16-TR07- Workspace Setup Tips and Tricks

Offline mail● Faster. FASTER!● Flexible local searches● A local backup for your email (just in case)● mbsync seems to be best out there● A fulltext indexer can be added to allow even more

flexibility (e.g. notmuch)

Page 27: BKK16-TR07- Workspace Setup Tips and Tricks

Questions?

Page 28: BKK16-TR07- Workspace Setup Tips and Tricks

Portable data

● One big laptop● ChromeOS (thin-client)● Distributed (public) syncing● Private syncing

Page 29: BKK16-TR07- Workspace Setup Tips and Tricks

Using Sync/Deployment Tools

● How deployment tools help○ http://bit.ly/1p15hs9

● The usage of sync tools○ Self hosted

■ ownCloud● No offsite backup/higher administration

○ Hosted■ Dropbox/Google Drive

● Terrible sync clients/Not in total control

Page 30: BKK16-TR07- Workspace Setup Tips and Tricks

Questions?

Page 31: BKK16-TR07- Workspace Setup Tips and Tricks

Thank you!

We will have another similar session at the next connect - tell us what you would like us to cover.