Skip to main content
 

Every time I restart my Mac it won’t recognise the external ssd boot partition. Ugh

 

This is why I registered http://appsubscriptions.com which redirects to the subscription screen on any Apple device.

 

Bottle Cap Blues on Vimeo

So that I may never forget where to find this video.

 

Procedural Art with Unity3D

Shahriyar Shahrabi:

In the past few days, I have been experimenting with creating patterns using the particle system in Unity Engine. Here are some of the examples of the shapes I came up with.

Amazing shapes and wallpapers.

 

Updating Known

I wrote a quick and dirty upgrade.sh script that sits in the parent directory of my Known site (updated now with the new composer setup). I'm using the following directory structure:

config.ini  
Uploads/
html/
upgrade.sh 

The offical Known git repository is checked out in html/. The config.ini and Uploads folder have been moved to the folder to sit alongside it.

The contents of the upgrade.sh script can be viewed as a gist on Github:

It's not elegant but it makes updating to the latest Known changes pretty seamless.

 

All my interesting links will be posted to https://vandragt.com/content/bookmarkedpages/ first before shared to social media and pocket. Own your content!

 

 

Save changes before quitting

Niko Kitsakis on creating well design dialogs:

The text change reflects the fact that you could now have multiple applications open at once. Otherwise it’s not important to our example so let’s focus on the other elements. Two trends are going to become apparent, speed and safety:

The icon with its exclamation mark gives you an immediate idea of the character of the message. “Be cautious” it says, “pay attention.”

Then we have the buttons which no longer say things like “Yes” or “No” but have been changed to verbs which say “Save” and “Don’t Save”. If you glance at those verbs you don’t have to read and understand the text to know what’s going on.

Now look at the new layout of the buttons: Of those three, the first button – Don’t Save – will make you lose data while the other two – Save and Cancel – will save data. In this new layout, the button that will make you lose data stands separated on the left from the two buttons that won’t. This reduces the chance you will accidentally press the wrong option.

Lastly, the most commonly used option – Save – is highlighted and can be activated by pressing the return key on the keyboard.

 

May will stick to Brexit 'principles' in cross-party talks, says No 10. aka Let's have a talk to come to an agreement, but I'm not going to change my mind.
https://www.theguardian.com/politics/2019/jan/17/may-will-stick-to-brexit-principles-in-cross-party-...

 

Security Checklist

I consider myself pretty clued up but there are some interesting improvements after reading this article:

  1. It contains a list of VPN providers I'll consider when my current subscription expires.
  2. Removed the location permission for the Camera app. I had previously installed an app to remove EXIF data.
 

 

Spotify how to hide the "Find friends" bar

On Linux operating systems, Spotify does not always show the file and view menus. This makes it harder to hide the "Find Friends" bar as there is no close button on the sidebar itself.

However there's another way: Click on the chevron in the top right corner next to your spotify username, then on Settings > Display Options > untick Show Friend Activity.

 

vandragt.com is now hosted on Known (withknown.com)

 

PagerDuty Incident Response Documentation

PagerDuty open-sources its incident response best practices, this is an interesting reference for anyone doing work with an on-call element

 

Does social media contribute to a more isolated society?

https://www.theguardian.com/business/2019/jan/05/britons-hang-up-landline-call-volumes-halve :
>“Calling someone is a bit daunting,” said one 18-year-old respondent in a survey on phone habits conducted by Ofcom. “It’s much easier and quicker to WhatsApp my friends. If I have to call a company, I’ll always try to use webchat if it’s available.”

 

Take note PES, via The Guardian:

https://www.theguardian.com/football/2019/jan/05/the-borrowers-loan-deals-dominate-january-transfer-...
>some players not only get their wages covered in full by the club they are joining but also receive a substantial sum on top.

 

Great blogging advice here https://ohhelloana.blog/blogging-and-me

 

It’s nearly 2019. Coca Cola and other soft drink have showed us how to make a can that opens easily. Get with it tinned vegetables!

 

Install Python 3.7.1 on OpenSUSE Tumbleweed

After another hour of resolving issues with pyenv and a personal project that requires Python 3.7 I thought it best to note the steps I used to install Python 3.7.1 on OpenSUSE Tumbleweed:

# Install requirements for compiling Python
sudo zypper in zlib-devel bzip2 libbz2-devel libffi-devel libopenssl-devel readline-devel sqlite3 sqlite3-devel xz xz-devel 

# Compile Python
cd ~/Downloads
wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tar.xz
tar xf Python-3.7.1.tar.xz
cd Python-3.7.1
./configure
make

# AltInstall ensures 3.7.1 is installed alongside your system python
sudo make altinstall

# Fix dynamic library loading
sudo ln -s /usr/local/lib64/python3.7/lib-dynload /usr/local/lib/python3.7/lib-dynload

I've updated the Common build problems · pyenv/pyenv Wiki page to reflect the updated required packages. Thanks to Andrew Cooke for the dynamic library fix

 

A locally running browser integrated notetaking app with cloud storage syncing, instant search and markdown / file upload support you say?