🦋 Unfollowing accounts

Looking for an easy way to unfollow accounts on Bluesky?

December 10, 2024 · 2 min · 346 words · Shelby DeNike

🎄 Holiday gift from 123.net

While I usually get silly items like pens, notepads, or low-quality t-shirts, I was happy to get a much nicer holiday gift from one of our vendors 123.net. While we had been customers with 123.net for a while, I had been dealing with them directly for a few months, working out pricing for our location and, if all went well, possibly getting other locations on board. Anyway, they ended up sending me this nice blanket and mug, which have both been used multiple times since they first arrived. ...

November 29, 2023 · 1 min · 90 words · shelby

Good by Comcast/Xfinity, Hello MetroNet

I have been waiting for a couple of years for MetroNet to finally complete the construction of their all-fiber network here in Okemos, and a couple of days ago, they came out to complete the installation at my house. While I have been a Comcast/Xfinity customer since moving back to Michigan, I can’t say I was ever happy. Whether it was issues with their upstream/downstream speeds, outages, pointing fingers at me for network issues, or simply the ridiculous cost of their service, I am glad to wipe my hands off them. ...

March 14, 2023 · 1 min · 91 words · shelby

Git with Verified GPG commits on macOS

Setup No need for homebrew or anything like that. Works with https://www.git-tower.com and the command line. Install https://gpgtools.org – I’d suggest to do a customized install and deselect GPGMail. Create or import a key – see below for https://keybase.io Run gpg –list-secret-keys and look for sec, use the key ID for the next step Configure git to use GPG – replace the key with the one from gpg –list-secret-keys git config –global gpg.program /usr/local/MacGPG2/bin/gpg2 git config –global user.signingkey A6B167E1 git config –global commit.gpgsign true Optionally configure annotated tags to be GPG signed git config –global tag.forceSignAnnotated true Add this line to ~/.gnupg/gpg-agent.conf pinentry-program /usr/local/MacGPG2/libexec/pinentry-mac.app/Contents/MacOS/pinentry-mac Add this line to ~/.gnupg/gpg.conf no-tty ...

September 21, 2018 · 1 min · 110 words · shelby

APC on a WHM/CPanel Server

One of my clients needed APC installed for their application, so I initially tried to install it via WHM module installer …. this failed. Here are the steps that I took to get it working via CLI{{ double-space-with-newline }}First download the newest stable release of APC and then run the following commands. wget http://pecl.php.net/get/APC-3.1.6.tgz{{ double-space-with-newline }}tar -xzf APC-3.1.6.tgz{{ double-space-with-newline }}cd APC-3.1.6{{ double-space-with-newline }}which php{{ double-space-with-newline }}phpize If you do not have pcre installed the make install will fail. So make sure to run the following yum command to install it with the development packages for safe measure.

February 21, 2011 · 2 min · 234 words · shelby