Dec 092020
 

The ‘tubes are full of pundits expanding on ‘leaks’ from Apple about the possibility of more powerful ARM-based Apple Macs on the way.

No shit! What a surprise. You could knock me down with a feather.

The recently announced Macbooks with the ARM-based M1 processor from Apple are an initial release with something that is an improvement on their existing ARM-based processors used in their phones and tablets. A leak is hardly necessary to predict the release of more powerful processors to replace their whole line-up – if Apple is going to put ARM processors into their laptops, they’ll be doing the same for the rest of the line-up.

Next year, or the year after, you won’t find an Intel processor in any Apple product. Or perhaps most – it may be handy to keep one or two Intel-based products around simply to maintain a platform for software products that won’t work on ARM.

But there is no reason why Apple should stick to Intel, and every reason why they should – if they can produce a low-power laptop processor this good what can they do with a desktop processor power-budget?

Now it is entirely possible that Apple will stumble, but there really is no reason to act surprised when rumours of more ARM-based products ‘leak’.

No Fun At The Fair
Oct 102020
 

One of the big names in the opensource world – Eric Raymond – has declared that Windows will soon be effectively a Linux distribution. Which seems like a ridiculous notion; except technically it might make a lot of sense.

How?

It seems impossible for Microsoft to replace Windows with Linux, but actually it could be done. Windows itself consists of a bunch of software applications which call Windows “APIs” which in turn make calls to the legacy NT kernel. If all that software is written cleanly (it won’t be, but bear with me), it should be possible to make modifications to both (or either) the Linux kernel and the Windows APIs to allow Windows software to run natively.

Impossible? Nope – it has already been done to a certain extent – Wine and Proton allow a considerable amount of Windows software (and games!) to run under Linux.

Why?

So it’s not impossible, but surely it is a lot of work. So why?

Microsoft has a bit of a problem – they don’t make a huge amount of money selling the Windows operating system, and maintaining it is hugely expensive. All those security fixes, all those bug fixes, and all those new features they want to introduce.

Now most of this is done to the “userland” rather than the kernel itself, but the kernel does still need to be maintained. But what if you could use the Linux kernel and get some level of maintenance supplied by those not employed by Microsoft?

Would that save Microsoft money? It seems quite possible, and you can bet someone in Microsoft has estimated whether it would or not.

Will It Happen?

There are those who point to certain actions by Microsoft – the Linux subsystem for Windows, the Edge browser for Linux, the rumour of an Office build under Linux, etc. as indicators that Microsoft is planning this.

I think they’re wrong to the extent that those actions don’t say whether Microsoft is planning to make Windows a Linux distribution or not. There are plenty of reasons why Microsoft is releasing Linux software not least because they will almost certainly have developers that believe that porting software is a good way of finding bugs.

The real answer is that the only people who know are inside Microsoft.

The Join
Sep 242020
 

I like screenshots (the graphical kind) – I make them all the time for documentary purposes. But there is one kind of screenshot that makes me boil :-

Screenshots taken for fault finding which turn textual information into graphical information. How on earth am I supposed to be able to do anything with any of those IPv6 addresses without typing them in and risking making a typo?

And I’m a good typist – I’ve been known to freak people out by carrying on typing when they arrive at my desk whilst talking to them. But certain kinds of information – such as network addresses (whether MAC, IPv4, or IPv6) – are tricky to get right and a simple off-by-one error can dramatically influence the diagnostic results.

Now don’t get me wrong – I’m not expecting the average person to stop using screenshots when reporting faults. Hell, it’s better than nothing!

But there are IT support staff who don’t do textual cut&paste!

Aug 132020
 

Working from home (henceforth “WfH”) has cropped up in my Twitter feed lately and this is my “response” to some of the issues raised.

Now don’t get me wrong – there are all sorts of issues related to WfH – some people can’t, some people don’t like it, companies are getting offices for “free”, some companies not realising that they need to provide equipment, and that health and safety requirements apply to the home worker too.

And probably a whole lot more.

But some of the complaints seem to be coming from people who have never even looked at WfH advice, or who have ignored that advice.

If your work life and your home life seem to be merging, do something about it. Clearly distinguish between work time and home time with a “going to work ritual” and a “coming home ritual”. It doesn’t matter what they are as long as they clearly mark the start and end of the working day.

For example, I always take a morning walk to start the working day, and make a ceremonial cup of coffee at the end (I don’t usually drink coffee whilst working or I end up fizzing).

Find yourself slogging away at the computer non-stop? Well don’t do that then. You’re supposed to take a break away from the computer regularly anyway, so do so. Get up and wander around a bit – make a coffee, look out the front window to see if it’s raining, check the postbox, do some stretching, etc.

Stuck in non-stop meetings? Call a comfort break every hour then – even if you don’t need a pee. Do you really care if your co-workers think you have a weak bladder? Especially when they’re more likely to think you’re a hero for giving them an excuse for a comfort break.

Missing out on the social life of the office? Set up social meetings then – perhaps for lunchtimes when you can eat your meals “together”.

Lastly, ergonomics. That laptop you took back home with you in the spring isn’t the right equipment for a long-term workstation. Get yourself a decent desk, chair, monitor, external keyboard and mouse. That sounds expensive, and yes your employer should (at the very least) be helping out, but it needn’t be that expensive.

Into The Water; Stillness and Motion
Jul 112020
 

So I am currently messing around with a tiling window manager on my laptop – I prefer tiling window managers in general (I use Awesome on my main desktops). These are (in general) not “desktop environments” but just manage windows (and sometimes a “status bar”).

As it happens the window manager I’m messing with doesn’t come as part of a distribution package with a pre-prepared file for GDM3 to use. So I created a ~/.xsession file – something that has worked since display managers first arrived.

Didn’t work.

Turns out that I need to “hack” GDM3 to make a long standard bit of functionality functional again. As an aside (and especially to the GNOME people), all you had to do to keep this functional was detect if someone had a ~/.xsession file and then offer that up as a menu option. Not that difficult to do and even if it isn’t your preferred way of doing things, it’s a nice thing to do for us old-timers.

Anyway, to restore this functionality all it took was to create a file in //usr/share/xsessions/ called xsession.desktop with the following contents :-

[Desktop Entry]
Name=XSession
Comment=This session uses the custom xsession file
Exec=/etc/X11/Xsession
Type=Application
DesktopNames=GNOME-Flashback;GNOME;
X-Ubuntu-Gettext-Domain=gnome-flashback

Dead simple.

And yes I stole this and adapted it myself – I’m putting this up here so that I know where to look when I need it again.