Category: Computers

  • My Extra Life Donation Tracker gets a GUI Part 1

    My Extra Life Donation Tracker gets a GUI Part 1

    Three years ago I created ELDonationTracker to use the Extra Life API to provide donation alerts on my screen while I’m streaming or recording games. About a year and a half ago, I actually had to start using it because the previous donation tracker I’d been using stopped being maintained. Since then I’ve been steadily…

  • eBook Metadata

    Clarkesworld Magazine has wonderful metadata for their issues and anthologies that requires little work from me: Tor books had an awesome DRM-free policy that I love and that allows me to go to the ebook vendor of my choice. And they give away a free book every month as long as you agree to get…

  • Another piece falls into place for Docker

    Another piece falls into place for Docker

    Yesterday I was at a conference dedicated to DevOps and so Red Hat and Google were there to talk about containers, especially Docker and Kubernetes. While summarizing it to some of my employees today, I was asked about what I see as the benefits of Docker containers relative to Virtual Machines. I mentioned that one…

  • Review: Sandman Slim

    Sandman Slim by Richard Kadrey My rating: 2 of 5 stars A good read for October, I guess. I didn’t really know what this book was about at all. I’d gotten it during a free ebook Friday for B&N years and years ago. The title made it sound like it was a detective noir or…

  • Review: Weber’s Charcoal Grilling: The Art of Cooking with Live Fire

    Weber’s Charcoal Grilling: The Art of Cooking with Live Fire by Jamie Purviance My rating: 3 of 5 stars This is a good book with a lot of useful info if you’re into charcoal grilling and BBQing. It also has a lot of recipes. I’ve tried a few and I found them tasty. Added a…

  • Current favorite thing about KDE with Kmail setup

    Hitting alt-F2 then typing email (contact name – eg Danielle) and enter and then it presents me with an email window to send an email. No need to navigate to gmail.com or go over to the screen running Kmail (actually, usually Kontact).

  • Stratis or BTRFS?

    It’s been a while since btrfs was first introduced to me via a Fedora version that had it as the default filesystem. At the time, it was especially brittle when it came to power outages. I ended up losing a system to one such use case. But a few years ago, I started using btrfs…

  • Using Docker Now!

    With modern technology, here’s the pattern I’ve noticed since college. New tech comes out and I can see that it’s neat, but not how I can make use of it. A few years later, I finally come across the right article and it all makes sense to me. I first noticed this with VMs. I…

  • Outdated Thinking

    In a post about how security has changed, Josh Bressers had this great bit of info in how some people are living in the past when it comes to understanding technology: If you listen to my podcast (which you should be doing already), I had a bit of a rant at the start this week…

  • btrfs scrub complete

    This was the status at the end of the scrub: [root@supermario ~]# /usr/sbin/btrfs scrub start -Bd /media/Photos/ scrub device /dev/sdd1 (id 1) done scrub started at Tue Mar 21 17:18:13 2017 and finished after 05:49:29 total bytes scrubbed: 2.31TiB with 0 errors scrub device /dev/sda1 (id 2) done scrub started at Tue Mar 21 17:18:13…

  • Speed of btrfs scrub

    Here’s the output of the status command: [root@supermario ~]# btrfs scrub status /media/Photos/ scrub status for 27cc1330-c4e3-404f-98f6-f23becec76b5 scrub started at Tue Mar 21 17:18:13 2017, running for 01:05:38 total bytes scrubbed: 1.00TiB with 0 errors So on Fedora 25 with an AMD-8323 (8 core, no hyperthreading) and 24GB of RAM with this hard drive and…

  • Finally have btrfs setup in RAID1

    A little under 3 years ago, I started exploring btrfs for its ability to help me limit data loss. Since then I’ve implemented a snapshot script to take advantage of the Copy-on-Write features of btrfs. But I hadn’t yet had the funds and the PC case space to do RAID1. I finally was able to…

  • Podcasts I’m Listening to in 2017

    Podcasts I’m Listening to in 2017

    I’ve both added and dropped some podcasts since last time around. Where I’m listing the same podcast as last year I may use the same description as in the past with slight (or no) variation. Video Games Giant Beastcast – The East Coast Giant Bomb crew. This podcast is more about video game culture and…

  • LXC Project Part 3: Starting and logging into my first container

    Continuing my LXC project, let’s list the installed containers: lxc-ls That just shows the name of the container – lemmy. For completion’s sake, I’m going to start it as a daemon in the background rather than being sent straight into the console: lxc-start -n lemmy -d As per usual Linux SOP, it produced no output.…

  • LXC Project Part 2: Setting up LXC

    LXC Project Part 2: Setting up LXC

    I’m continuing on from yesterday’s post to get the VM ready to host LXC. I’m starting with Centos 7 so the first thing I had to do was enable the epel repos: yum install epel-release Then, according to the guide I was following, I had to also install these package: yum install debootstrap perl libvirt…