There is only one way to avoid criticism:
do nothing, say nothing, and be nothing.
Category: Blog
[youtube https://www.youtube.com/watch?v=HPbdBJcJkYg?feature=oembed&enablejsapi=1&origin=http://safe.txmblr.com&wmode=opaque&w=500&h=281]
So this was pretty cool.
Using JavaScript to Identify Whether a Server Exists
Recently, for reasons Iām sure Iāll write about in the
future, I needed to find a way to use JavaScript to test if either of two
web-locations are accessible ā my home intranet (which would mean the user is on
my network), or the corporate intranet of the company for which I work (which
would mean the user is on my organizationās network). The page doing this test
is on the public web.
My solution for doing this test was simple. Since neither
resource is accessible publicly I put a small JavaScript file on each, then I
use AJAX and jQuery to try and fetch it. If
thatās successful, I know the user has access to whichever intranet site served
the request and my page can react accordingly.
If neither request is successful I donāt have to do
anything, but the user doesnāt see any errors unless they choose to take a look
in the browser console.

This all worked wonderfully until I enabled SSL on the page
that needs to run these tests, then it immediately fell apart.

Both requests fail, because a page served over HTTPS is
blocked from asynchronously fetching content over an insecure connection. Which
makes sense, but really throws a spanner into the works for me: neither my home
nor corporate intranet sites are available outside the confines of their safe
networks, so neither support HTTPS.
My first attempt at getting around this was to simply change
the URL prefix for each from http:// to https:// and see what happened. Neither
site supports that protocol, but is the error that comes back different for a
site which exists but canāt respond, vs. a site which doesnāt exist? It appears
so!

Sadly, my joy at having solved the problem was extremely
short lived. The browser can tell the difference and reports as much in the
console, but JavaScript doesnāt have access to the error reported in the
console. As far as my code was concerned, both scenario was still identical
with a HTTP response code of 0 and the status description worryingly generic āerror.ā
We are getting closer to the solution I landed on, however.
The next thing I tried was specifying the port in the URL. I used the https://
prefix to avoid the āmixed contentā error, but appended :80 after the hostname
to specify a port that the server was actually listening on.

This was what I was looking for. Neither server is capable
of responding to a HTTPS request on port 80, but the server that doesnāt exist
immediately returns an error (with a status code of 0 and the generic āerrorā
as the descriptive text), but the server that is accessible simply doesnāt
respond. Eventually the request times out with a status code of 0 but a status
description, crucially, of ātimeout.ā
From that, I built my imperfect but somewhat workable
solution. I fire a request off to each address, both of which are going to
fail. One fails immediately which indicates the server doesnāt exist, and the
other times-out (which I can check for in my JavaScript), indicating that the
server exists and I can react accordingly.
Itās not a perfect solution. I set the timeout limit in my
code to five seconds, which means a āsuccessfulā result canāt possibly come
back in less time than that. Iād like to reduce that time, but when I
originally had it set at 2.5 seconds I was occasionally getting a
false-positive on my corporate network caused by, yāknow, an actual timeout
from a request that took longer than that to return in an error state.
Nevertheless if you have a use-case like mine and you need
to test whether a server exists from the client perspective (i.e. the response
from doing the check server-side is irrelevant), I know of no other way. As for
me, Iām still on the lookout for a more elegant design. Iām next going to try
and figure out a reliable way to identify if the user is connected to my home
or corporate network based on their IP address. That way I can do a quick
server-side check and return an immediate result.
Itās good to have this to fall back on, though, and for now
at least it appears to be working.
There is nothing quite so useless as doing with great efficiency something that should not be done at all.
Being Smarter by Not Thinking
Thereās a popular
myth that says we only use 10% of our brains.
Itās simply not true. Studies (including the source of all scientific truth: an episode of
MythBusters) have proven that all areas of the brain have a function, and while
the percentage that weāre āusingā at any given time varies by task it can
certainly exceed 10%.

One thing that seems very obvious to me without needing to
cite a study about it, however, is that I certainly have unused brain capacity,
and it can do amazing things when you leave it to its own devices.
As an example of what Iām talking about, I refer you to a
link I posted on this very blog some time ago: Why
Great Ideas Always Come in the Shower (and How to Harness Them).
In the brief commentary I added, I mentioned that never in
my life have I had a good idea in a meeting. Great ideas come to me while Iām
doing other things. Specifically, other things that do not take much in the way
of thought and offer little in the way of distraction: things where my brain
gets left to itās own devices and has an opportunity to wander ā showering,
certainly, but also commuting, trying to get to sleep at the very end of the
day (infuriatingly), and when Iām at the gym.
Talking of the latter one, I havenāt been to the gym for
quite some time.
When we lived in our apartment there was a gym in the
building, and that was great. I could easily fit in a solid 45 minutes there at
lunch. Any spare 30 minute window in my schedule could be turned into 20
minutes on the stationary bike.
I want to go back, but now that weāve bought the house there
is obviously not an on-site gym. Thereās a gym at the office (20 minutes away)
and a Goodlife Fitness close by (10 minutes away) where Iād get a discounted
rate, but small though it is even that travel time is putting me off. I will
most likely join Goodlife, since I rarely go to the office these days and
installing a home gym just isnāt in the budget right now, but Iāve been missing
the ability to easily take 30 minutes and get some exercise, and Iām sad that
none of the solutions will offer me that. In the absence of a perfect solution,
I havenāt done anything at allā¦ until yesterday.
Since the weather here in Calgary is distinctly spring-like
these days, I went for a walk before I started my work day. I didnāt go far ā a
little less than 2km, according to the Google Fit data from my phone and watch
ā just down the road a bit and then back along the pathways that run through
our neighbourhood.
I liked it so much I did it again at lunch time, and then
for a third time this morning.
The physical benefits of this, though Iām sure not huge by any
means, are probably much needed at this point. Really though what I like about
it so much are the mental benefits. Iāve never been much of a morning person
and I would never consider going to the gym before work, but rolling out of bed
and attempting to be productive more or less immediately is not a recipe for
success either. Feeling like my day has already started by the time I sit down
to get some work done definitely gives me a mental boost that Iāve been able to
capitalize on. More significantly though, thereās a lot to be said for the kind
of problem solving that can only come from not thinking about something too
much and letting my subconscious guide me in ways that Iād never have come up
with if I were sitting at my desk consciously trying to focus on something.
Itās amazing what you can do when youāre not trying to do
anything.
Six phases of a project
Six phases of a project
Quote
The journey of a thousand miles starts with a single step, in the opposite direction
ā Me, reflecting on some meetings Iāve had recently
Sometimes you need to take a step back and learn to walk before you try and run.
New Code Projects: Backblaze B2 Version Cleaner & VBA SharePoint List Library
Itās been a while since Iāve posted code of any description, but Iāve been working on a couple of things recently that Iām going to make publicly available on my GitLab page (and my mirror repository at code.jnf.me)
Backblaze B2 Version Cleaner
I wrote last week about transitioning my cloud backup to Backblazeās B2 service, and I also mentioned a feature of it thatās nice but also slightly problematic to me: it keeps an unlimited version history of all files.
Thatās good, because it gives me the ability to go back in time should I ever need to, but over time the size of this version history will add up – and Iām paying for that storage.
So, Iāve written a script that will remove old versions once a newer version of the same file has reached a certain (configurable)Ā āsafe age.ā
For my purposes I use 30 days, so a month after Iāve overwritten or deleted a file the old version is discarded. If I havenāt seen fit to roll back the clock before then my chance is gone.
VBA SharePoint List Library
This one I created for work. Getting data from a SharePoint list into Excel is easy, but I needed to write Excel data to a list. I assumed thereād be a VBA function that did this for me, but as it turns out I was mistaken – so I wrote one!
At the time of writing this is inĀ āproof of conceptā stage. It works, but itās too limited for primetime (it can only create new list items, not update existing ones, and each new item can only have a single field).
Out of necessity Iāll be developing this one pretty quickly though, so check back regularly! Once itās more complete Iāll be opening it up to community contributions.
I have no plans to add functions that read from SharePoint to this library, but once I have the basic framework down that wouldnāt be too hard to add if youāre so inclined. Just make sure you contribute back!
Raspberry Pi Whole Home Audio: The Death of a Dream?
If youāve been following my blog for a while, youāll know
that Iāve written a whole
series of posts on my efforts to take a few Raspberry Pis and turn them
into a DIY whole home audio solution.

If youāve ever looked at the product offering within the
whole home audio space, youāll know that setting such a thing up is either
cripplingly expensive, involves tearing the walls apart to run cables, or both.
Where we left off Iād put together a solution that was
glorious when it worked, but that was rare. Typically the audio was either out
of sync between the devices right from the get go, or quickly got that way.
Getting the Pis to play the same music was relatively
simple, but getting it perfectly in sync so that it could be used in a
multi-room setup eluded me to the end, and eventually I gave up.
The bottom line is that synchronizing audio between multiple
devices in a smart way requires specialized hardware that can properly account
for the differences in network latency between each of the end points. The Pi
doesnāt have that, and itās not really powerful enough to emulate it through
software.
So is my dream of a reasonably priced whole home audio
solution dead? Hell no.

In October I wrote
about Googleās announcement of the Chromecast Audio. At the time it didnāt
have support for whole home audio but Google had promised that it was coming.
Itās here.
The day they announced that it had arrived was the day I
headed over to my local BestBuy and picked up four of these things. I plan to
add two more, and I couldnāt be happier with the results.
Plus, it frees up the Pis for other cool projects. Watch
this space!