Category: python

  • My first PyPi Package!

    My first PyPi Package!

    I was reading Serious Python by Julien Danjou as well as looking through other Python repos when I realized that my Extra Life Donation Tracker repo was a mess. (It’ll be different by the time you read this, but here’s how it looked at the time) After learning about how things should be structured and…

  • 2019 In Programming

    This was a VERY busy year for my coding. This year I had over 769 commits to GitHub; my previous best was 58 in 2014. The commits were very unevenly distributed. If you look at the graph of my commits, outside of a busy week in January and another in May, I didn’t really start…

  • New Release (v1.9.3) of my Extra Life Donation Tracker Software

    New Release (v1.9.3) of my Extra Life Donation Tracker Software

    I’m getting really close to finally getting this program to where I wanted it to be 4 years ago. My most recent release adds in the Team info to the GUI (and the previous release, which I didn’t blog about added team info in general). I’m getting feature requests and bug reports and all those…

  • Moving to KDevelop for my larger Python Projects

    Moving to KDevelop for my larger Python Projects

    When I first started programming it was just at the prompt of my Tandy computer. Then it was in the QBasic text editor on the IBM computers at school. But when I started programming again with “real” languages, I ended up going with Emacs. Although I was first annoyed at the way commands like save…

  • New Release of my Extra Life Donations Tracker Software

    New Release of my Extra Life Donations Tracker Software

    After a bit more work since my 21 July post, I’ve finally reached what I can consider to be beta status for the GUI. Things have matured to the point where it works well on both Linux and Windows and I’m now using it every time I game. I created a bunch of issues on…

  • New Release of my Extra Life Donations Tracker Software

    New Release of my Extra Life Donations Tracker Software

    If you follow the blog, you remember I’ve been working on a GUI for the donation tracker. Part of making that work involved changing the code to be object oriented. Also, it required moving the user-defined configs to be moved out of the main code. I’ve done that and finally tested that it works (I…

  • 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…

  • Exploring btrfs for backups Part 6: Backup Drives and changing RAID levels VM

    Hard drives are relatively cheap, especially nowadays. But I still want to stay within my budget as I setup my backups and system redundancies. So, ideally, for my backup RAID I’d take advantage of btrs’ ability to change RAID types on the fly and start off with one drive. Then I’d add another and go…

  • Exploring btrfs for backups Part 5: RAID1 on the Main Disks in the VM

    So, back when I started this project, I laid out that one of the reasons I wanted to use btrfs on my home directory (don’t think it’s ready for / just yet) is that with RAID1, btrfs is self-healing. Obviously, magic can’t be done, but a checksum is stored as part of the data’s metadata…

  • Exploring btrfs for backups Part 4: Weekly Culls and Unit Testing

    Back in August I finally had some time to do some things I’d been wanting to do with my Snap-in-Time btrfs program for a while now. First of all, I finally added the weekly code. So now my snapshots are cleaned up every three days and then every other week. Next on the docket is…

  • Exploring btrfs for backups Part 3: The Script in Practice

    Night of the second day: # btrfs sub list /home ID 275 gen 3201 top level 5 path home ID 1021 gen 3193 top level 275 path .snapshots ID 1023 gen 1653 top level 275 path .snapshots/2014-03-13-2146 ID 1024 gen 1697 top level 275 path .snapshots/2014-03-13-2210 ID 1025 gen 1775 top level 275 path .snapshots/2014-03-13-2300…

  • Creating Nice-Looking Buttons in QML on KDE

    Back in October I created a GUI for my Python amortization table program.  One of the things I lamented was that the buttons in QML look like crap.  I want my buttons to look like buttons, not blue patches no a white screen.  I don’t really know what made me look, but yesterday (during the…

  • My Second Ever Useful GUI Program

    A while ago I wrote about my first ever useful GUI program.  And in one of the series of posts that followed I explained that the reason I hadn’t made a useful GUI program before now is because all the typical stuff has already been made over and over.  We don’t need any more tetris…

  • Developing My First Plasmoid: The QML Code

    Back in February I posted the code to the data engine I developed for my plastmoid.  At the time I’d wanted to clean up my plasmoid before posting it on here, however, I’ve become stuck on a key feature so I was hoping that maybe by posting the code I could get some help.  (As…

  • Developing my first plasmoid: The Data Engine (in python)

    I figured it’d be neat to show you how my plasmoid works so you could use it when developing your own plasmoids.  Here’s the main.py of my data engine.  The indentation is off, in case you try to copy and past this in. Here are the imports: from PyQt4.QtCore import * from PyKDE4.kdecore import *…