Skip to main content

Low disk space!

Typical. Just when I start to get on well with my Seventh Son project, I get a low disk space message on my Linux laptop. 

It's my own fault to be honest: I had a drive failure about a year ago and I stuck a spare 70G drive in there temporarily and forgot to replace it... 70G! what was I thinking? I suppose at the time, all I needed it for was to write SD-CARDs for my RPi's and SSH to them, but still... 70G!

So before I head off to eBay or Amazon, I need to have a look to see if there is anything better in my spares box and write a copy of Linux Mint to a DVD so I can rebuild.


Comments

Popular posts from this blog

Discord Gateway for MQTT

I have created a new organisation  on Github today as a place to add automation scripts and the first one I will add is a gateway for Discord. This core of this script was originally created when I needed to send crash alerts from an application I had written to my phone so that could act upon them quickly. This proved useful and I added it to additional scripts and applications, but found that it was a bit limited if I wanted the alert to be logged elsewhere so I updated my apps and scripts to send to MQTT. Once my alerts were in MQTT I could pick them up from NodeRed and perform various actions; but I missed having them arrive in Discord, so last night I created an MQTT-2-DISCORD module that includes  support for multiple discord channels. Installation is fairly simple and I have documented the process in the README.md file associated with the repository. After installation, visit Discord and obtain a webhook for the channel you want to recieve messages into. You can name the webhoo

Laptop rebuild

This morning my replacement hard drive arrived so I set about getting it installed. First I downloaded Linux Mint 19.3 and burnt it to DVD, booted on it and checked I could browse the internet etc... Ok. That works. I carefully replaced the physical drive, restarted my laptop and booted on the DVD again. Selected to install it and left it alone for a while.  After install and reboot, I connected it to the internet and let it install updates before taking an initial Timeshift backup. After my backup completed, I removed Libre office and Thunderbird, installed "atop", "kate", "Chromium", "Android Studio" and "Dropbox" then left it downloading my Dropbox whilst I dug around in the cupboard for my SATA USB adapter. Lastly, I copied my data from the old disk to my new one using my USB adapter.  I think it's time for a cup of tea...

LSP and JSON

I've taken on the challenge of writing an LSP for BlitzMax NG to help with the integration of the vs-code extension.  For those who don't know what an LSP is; it is simply a communications component that is used by any IDE to obtain information regarding your source code. It then uses this information to create outline views, hover, help and diagnostics etc. Rather than use the BlitzMax JSON module, I decided to write a JSON parser specifically for this application that gives me a little more control to transpose JSON directly into BlitzMax Types. I will publish this on GitHub shortly. With the JSON module almost complete, the LSP application can now read/write to/from StdIO and I'm currently working on getting the "initialize" and "shutdown" event handlers operational. Watch this space.