Skip to main content

Vising another office - What do you need when you arrive?

One of the challenges when traveling is being able to connect and charge all the different devices we take with us. These devices differ depending on the purpose of the trip (business or pleasure) but have the same challenges.When traveling for pleasure you may be staying with relatives, friends or at an AirBnB. What is available may be unknown. Many hotels cater for international travelers and have sockets that allow many different plugs to be used - The JW Marriott in Bangalore allows you to plug in any type of plug (all that I have seen!). One hotel in Sydney had USB charger ports available.
The first challenge is being able to plug your charger in. When traveling for work I always carry two adapters that convert from the local plug standard to the plugs required for my devices and chargers. An alternative is to carry one adapter and a power board. The exception to the two adapters is when I am traveling to multiple countries which have different plugs! In those cases a universal adapter is useful - such as the oneadaptr twist. The problem with universal adapters is they don't always plug in securely or are too bulky to fit when the plug is awkwardly placed - such as right down by the floor or behind a cabinet.

I recently got a new mobile phone - a Samsung S8 - which supports fast charging. What this means is that with the supplied charger it will charge in about an hour. What I didn't know was that with the wrong charger it would charge very slowly - even if the charger is capable of providing enough power. On my last trip I found it would not charge overnight - in fact after ten hours it had only charged to 70%. This was using a charger that supplied 10W and charged an iPad Pro overnight on one of the 5W ports. I have now bought a oneadaptr evri - this supplies a total of 80W and supports fast charging the S8. It is also reasonably small and light so will be easy to carry.

When you arrive at the office you may find that a desk is provided or you may be working in a conference room. If you are lucky the chair will be comfortable and there will be a kitchen for drinks available. What is available varies from country to country. In Australia, the USA and Canada there is a kitchen with tea / coffee and other drinks available. In Bangalore I have found there is an area to make hot drinks but no soft drinks are provided except for visitors. I don't take a separate keyboard when travelling but I do take a mouse. My work provided laptop does not have a very good trackpad. When travelling on holiday I take a macbook and its trackpad is very good so I don't need a separate mouse when I use it. As holiday travel tends to involve visiting more places - my last holiday took us to London, Bristol, Paris and Kuala Lumpur - it is an advantage not to have a mouse that would almost certainly get left behind!



Comments

Popular posts from this blog

"No child processes" error

A problem was reported by a customer. They were getting a failure and in the logs it reported error → waitpid failed 'Reason: No child processes' The “No child processes” error came from waitpid() after using  fork/spawn to launch a utility to load data into a data base. Upon detailed investigation it appears it is possible that some other process that the user is running has changed the default handler for SIGCHLD - possibly the shell (e.g. bash!) used to launch our server processes.  If the signal handler is set to SIG_IGN then when a process is started using fork()/exec() the return code from the process is NOT returned and waitpid() cannot retrieve the response code. The most likely reason for "No child processes" error from waitpid() is that the signal handler for child processes (SIGCHLD) is not set to SIG_DFL. This should not be possible however it seems that on Linux a process run in the shell (or maybe a shell process) can set it to SIG_IG...

The problem with acronyms

Have you ever attended a presentation and been confused as to what an acronym meant? Have you asked what it meant or did you wait in vain for someone else to ask first? Have you thought you knew what it meant only to realize after a minute or two that you didn't? The problem with not defining the acronyms that you use in a presentation or talk are that a particular acronym means different thing to different people. We all know, or think we know, what certain acronyms mean - SDK means Software Development Kit, JVM is Java Virtual Machine - and some acronyms are so well known that they can be relied upon to always mean the same thing. Does anyone use the acronym IBM to mean anything other than International Business Machines? However many acronyms are reused for different meanings. The other problem is that it can take a few seconds to remember or to work out what the acronym means. That is time you should have been paying more attention to the presenter. When presenting pleas...