SKD PIG Alpha Gloves

I’m on my third pair of SKD PIG Alpha Gloves. My previous two pairs have lasted around 15 months. This current pair is on track for the same.

The gloves are lightweight, synthetic, and highly dexterous. While wearing them I am able to tie my shoes, pick up a penny, and load a .22 caliber magazine – all reliable tests for the dexterity of any glove. I wear the PIG Alpha Gloves every day on the bike, and am happy with the 15 month lifespan given both the intent of the glove and their cost.

They are a mechanics gloves, and should be compared to things like the Mechanix Original Covert. The Mechanix were my every day glove prior to purchasing my first pair of PIG Alpha Gloves in 2014. I find that the dexterity is the same in both, but the PIG Alpha Gloves are more comfortable and a bit more durable.

SKD PIG Alpha Glove

  • SKD PIG Alpha Glove
  • SKD PIG Alpha Glove

The greatest selling point of the PIG Alpha Gloves over most Mechanix models is the touch-screen compatible fingers. In earlier generations, SKD accomplished this by sewing silver thread into the index finger. This worked when the gloves were new, but quickly failed as the thread became dirty and began to fall out. SKD fixed this a couple years ago by replacing the silver thread with a conductive synthetic suede on the index finger and thumb. I’ve found that this works great, and continues to do so until the whole glove fails.

When the glove does begin to fail, it does so in the fingers. The fingers and palm are covered in ventilation holes, which slowly grow as the glove is abused. After this I find the stitching in the fingers will start to blow out. At that point I move on to the next pair.

The lightweight, synthetic materials of the PIG Alpha Gloves stay acceptably cool in hot weather. They’re not as cool as wearing no glove, and my hands will sweat wearing them, but I’ve never found them so uncomfortable that I want to take them off. The gloves provide no protection from the rain, but they dry within a few hours of being soaked.

Paracord loops on each cuff allow the gloves to be easily secured when not in use. I cut the D-ring off of the left shoulder strap of my Litespeed and replace it with an ITW Grimloc. This is where the gloves live when I’m off the bike.

SKD PIG Alpha Glove

The gloves do run a little small. I wear a size medium in just about every glove out there. In the PIG Alpha Gloves, size large fits me perfectly.

I purchased a pair of Magpul Core Technical Gloves back in 2015 when Magpul got into the glove game. These are meant to be in the same category of lightweight, dexterous, mechanics glove as the PIG Alpha Gloves and Mechanix, but I found them to be inferior to both offerings. The lack of adjustability in the wrist makes them annoying to put on and take off. The thicker material cuts down on dexterity (while probably improving durability) and makes them too warm to wear in hot weather. The touch screen finger tips are unreliable when the glove is dirty.

Dexterity and durability are inversely related in a glove, but the SKD PIG Alpha Gloves find a happy medium for my use. For poor weather conditions or mountain excursions, I still like gloves like the Kuiu Guide Gloves, but the mechanics glove is a better style for every day use. Right now I think the PIG Alpha Gloves are the best glove of this type on the market. I’ll continue to wear them every day and replace them every 15 months.

This weekend I tagged along with the SFRC on their first SOTA activation.

We took a short hike up to Ground Equipment Facility J-33 on the West Peak of Mt. Tam. This was the first time I’d been back up there since Field Day 2017. I was able to get two contacts on 2 meters with my VX-8DR, and another two on 20 meters with one of the other operator’s KX3. The club has more photos.

SF Bay

  • Radome
  • 2M Contacts

SF

Elevating My Balls

Last October I bought an Elecom HUGE trackball for use at home. I liked it enough that a month later I bought a second one to replace my CST LaserTRAC at work. Elecom is a Japanese company which has a reputation for making nice trackballs that tend to be a little too small for typical Western-sized hands. The HUGE is their answer to that. It’s a well-sized trackball with a smooth operation and a nice selection of buttons, all of which are supported by the Linux kernel.

The HUGE can be made even more comfortable by tilting it. This elevates the ball, leaves the wrist in a slightly more natural position, and also helps to address the position of the scroll wheel, which is otherwise slightly too far back. Some people have printed stands to hold the trackball at an angle. About a month ago I saw someone tilt the HUGE using aluminum keyboard feet. I thought that looked like a great idea and easier than trying to get something printed, so I went to AliExpress and ordered a pair of black feet from one seller and a pair of red feet from another.

When the feet arrived I attached them with hook and loop squares so that I could expriment with different positions and take them off if I didn’t like them. The position that I’ve settled on provides a comfortable angle, and the trackball still remains stable during use. I think it’s a great improvement. If you own a HUGE, it’s worth picking up a couple feet to elevate your ball.

Battle Station

  • Feet Placement
  • Tilted HUGE

PGP Key Renewal

Last year I demonstrated setting up the USB Armory for PGP key management. The two management operations I perform on the Armory are key signing and key renewal. I set my keys to expire each year, so that each year I need to confirm that I am not dead, still control the keys, and still consider them trustworthy.

After booting up the Armory, I first verify that NTP is disabled and set the current UTC date and time. Time is critical for any cryptography operations, and the Armory has no battery to maintain a clock.

$ timedatectl set-ntp false
$ timedatectl set-time "yyyy-mm-dd hh:mm:ss"

My keys are stored on an encrypted microSD card, which I mount and decrypt.

$ mkdir /mnt/sdcard
$ cryptsetup luksOpen /dev/sda sdcrypt
$ mount /dev/mapper/sdcrypt /mnt/sdcard

Next I’ll export a few environment variables to make things less redundant later on.

$ export YEAR=$(date +%Y)
$ export PREVYEAR=$(($YEAR-1))
$ export GNUPGHOME="/mnt/sdcard/gpg/$YEAR-renewal/.gnupg"
$ export KEYID="0x70B220FF8D2ACF29"

I perform each renewal in a directory specific to the current year, but the GNUPGHOME directory I set for this year’s renewal doesn’t exist yet. Better create it.

$ mkdir -p $GNUPGHOME
$ chmod 700 $GNUPGHOME

I keep a copy of my gpg.conf on the microSD card. That needs to be copied in to the new directory, and I’ll need to tell GnuPG what pinentry program to use.

$ cp /mnt/sdcard/gpg/gpg.conf $GNUPGHOME
$ echo "pinentry-program /usr/bin/pinentry-curses" > $GNUPGHOME/gpg-agent.conf

After renewing the master key and subkey the previous year, I exported them. I’ll now import those backups from the previous year.

$ gpg --import /mnt/sdcard/gpg/$PREVYEAR-renewal/backup/peter\@havenaut.net.master.gpg-key
$ gpg --import /mnt/sdcard/gpg/$PREVYEAR-renewal/backup/peter\@havenaut.net.subkeys.gpg-key

When performing the actual renewal, I’ll set the expiration to 13 months. This needs to be done for the master key, the signing subkey, the encryption subkey, and the authentication subkey.

$ gpg --edit-key $KEYID
trust
5
expire
13m
y
key 1
key 2
key 3
expire
y
13m
y
save

That’s the renewal. I’ll list the keys to make sure they look as expected.

$ gpg --list-keys

Before moving the subkeys to my Yubikey, I back everything up. This will be what I import the following year.

$ mkdir /mnt/sdcard/gpg/$YEAR-renewal/backup
$ gpg --armor --export-secret-keys $KEYID > /mnt/sdcard/gpg/$YEAR-renewal/backup/peter\@havenaut.net.master.gpg-key
$ gpg --armor --export-secret-subkeys $KEYID > /mnt/sdcard/gpg/$YEAR-renewal/backup/peter\@havenaut.net.subkeys.gpg-key

Now I can insert my Yubikey, struggle to remember the admin PIN I set on it, and move over the subkeys.

$ gpg --edit-key $KEYID
toggle
key 1 # signature
keytocard
1
key 1
key 2 # encryption
keytocard
2
key 2
key 3 # authentication
keytocard
3
save

When I list the secret keys, I expect them to all be stubs (showing as ssb>).

$ gpg --list-secret-keys

Of course, for this to be useful I need to export my renewed public key and copy it to some place where it can be brought to a networked machine for dissemination.

$ gpg --armor --export $KEYID > /mnt/sdcard/gpg/$YEAR-renewal/peter\@havenaut.net.public.gpg-key
$ mkdir /mnt/usb
$ mount /dev/sdb1 /mnt/usb
$ cp /mnt/sdcard/gpg/$YEAR-renewal/peter\@havenaut.net.public.gpg-key /mnt/usb/

That’s it. Clean up, shutdown, and lock the Armory up until next year.

$ umount /mnt/usb
$ umount /mnt/sdcard
$ cryptsetup luksClose sdcrypt
$ systemctl poweroff

Initial impressions of the Kojin Stove are positive.

I purchase a modified StarLyte a couple years ago but haven’t used it much. It burns well but is difficult to light with a spark unless it is slightly overfilled. The Kojin takes a spark easily. It is lightweight, durable, can be snuffed with its lid, and holds enough fuel for a short overnight trip. I haven’t measured fuel consumption or boil times, but it seems difficult to find anything to fault with the Kojin. I doubt I’ll carry a 12-10 with my Ti-Tri again.

Dinner of Champions

  • Burning in the Kojin
  • Mobile Tea

How I Screw

Fix It Sticks are 1/4” magnetic bit drivers, originally intended as bicycle repair tools. Each stick holds two bits, and can be used individually or connected together in a “T” when more torque is wanted.

I backed the Fix It Sticks Kickstarter campaign back in 2014, selecting the $99 pledge level for the titanium Fix It Sticks reward. For the past 4 years, the titanium Fix It Sticks have been part of my EDC. I carry them with a selection a bits optimized for bike repair, as well as a few supplemental bits that are not intended for my vehicle, but are useful to have on hand for general screwing. Extra bits are carried in a Toolcool bit holder.

Every Day Screwing

The sticks, bits, chain breaker, and tire levers – along with a patch kit and my Pitlock key – are stored in a small Mountain Laurel Designs Cuben Fiber Packing Cube. This lives in the admin pocket of my FAST Pack Litespeed, but also slides easily into a pocket if I’m riding bag-less. I also keep the new Fix It Sticks Magnetic Patch on my Litespeed. If I switch bits while fixing my bike on the side of the road, I can just toss a bit at my pack and the patch catches it.

Every Day Cuben and Magnetic Patch

At home I have an excessive collection of 1/4” bits, including things like socket adapters, extensions, and the Fix It Sticks Glock kit. What’s most attractive about the bit and driver system to me is that these 80-some bits take up a miniscule fraction of the space that I would otherwise need for the tools. I keep a Wera Kraftofmr 816 RA driver at home for those times when I want something that ratchets, but the Fix It Sticks are what I pull out the vast majority of the time.

At work I keep some additional bits, along with a few other tools, in a GPP1. Some of these duplicate my EDC bits, but most of them are things that are not common enough to warrant carrying, but common enough that I like to have them around.

Work Bits

The bits I EDC are fairly standard. 4mm and 5mm hex bolts live in one stick. Those two attack the majority of bolts on my bike. A Phillips #0 and #1 live in the other stick. Those two are most useful for general screwing. In the bracket, I keep:

  • Phillips #2
  • Hex 2mm, 2.5mm, 3mm, 6mm, and 8mm
  • Security Torx 7, 10, 25, and 30
  • Slotted 5mm
  • 1/4” to 4mm adapter, with a Slotted 1.5mm Micro

Carrying the “security” Torx instead of the standard Torx allows me to tamper with tamper-resistant electronics, which is a useful capability to have. They drive normal Torx bits screws just fine, which accounts for the majority of their use. The T25 is a longer (50mm) bit. I use this one as leverage when operating my Pitlocks.

  • Fix It Stick as Pitlock Wrench
  • Fix It Stick T Configuration

The 1/4” to 4mm adapter allows me to run any 4mm micro bit in the Fix It Sticks. Part of the collection of bits in my GPP1 at work are micro bits that I use to attack electronics (at home I have the iFixit 64-bit Kit, which is a great hardware hacking kit for the price). A slotted 1.5mm bit is the right answer for most eyewear, which is why I carry that bit in the adapter every day.

On my scale, a single titanium stick without bits weighs in at 28 grams. Both sticks, with the 4 bits that I keep in them, tip the scale at 74 grams. When I add the bracket with 12 additional bits, the total weight is 148 grams. Adding the chain tool and two tire lever attachments to that, the whole kit is 228 grams, or 8 ounces. That’s pretty reasonable for all the capability those items offer.

Fix It Sticks only made a small number of the titanium sticks for the Kickstarter campaign. The sticks they sell today are steel. The weight of the steel Fix It Sticks Replaceable Edition is listed as 116 grams. I assume that weight is for both sticks and the 8 included bits. With my titanium sticks and the same 8 bits, I’m at 100 grams. So the titanium sticks shave off a little weight, but not really a notable amount – particularly considering that the titanium sticks were the reward for donations at 3x the cost of the steel sticks. I think my titanium sticks are perfect, and if offered I would purchase them again, but if they were lost I’d immediately replace them with the steel version with only a little heartbreak.

Bicycle Mobile

Bicycles are fun. So are radios. Why not combine them.

Bicycle Mobile

For overnight trips I run my Yaesu VX-8DR in the handlebar bag, with the MH-74A7A hand mic and FGPS-2 module, and a Diamond SRH320A. This let’s me broadcast APRS, letting people know where I am, and is everything I need to hit area repeaters to see if there’s anything interesting going on. Calling in as “bicycle mobile” usually generates interest, and it’s fun to check into a net without having to stop pedaling.

Bicycle Mobile

After pitching camp I can kill time by making more contacts. Also on this trip was a Nelson Antennas Slim Jim, but I didn’t bother putting it up.

Making Contacts

I’m not quite up to Steve Roberts’ level, but I’m also only pushing a fraction of the weight.

The Axolotl Tanks

I’ve been using an isolation tank every few weeks since the beginning of the year. The tanks are large, enclosed bathtubs, filled with body-temperature salt water, in which you float and not much else.

Before my first float I wasn’t sure if claustrophobia would be a problem. I’d never experienced claustrophobia, but I’d never enclosed myself in a bathtub before either. What I was missing here is the key component of the experience: sensory deprivation. With the tank closed, there’s no light, and the tank is large enough that I don’t touch the sides. Without any incoming data telling you that you’re in a small tank, you could be in an Olympic-sized pool, or simply floating through space.

There are odd an unusual claims about the benefits of isolation tanks which match the odd and unusual experience of the tanks themselves. To me, the tank is just a venue for meditation. It eliminates distraction, making the process a bit easier, but does not offer any additional benefits of its own. (Telekinesis has yet to manifest.) If you are not comfortable in your own head, you won’t have a good time.

I enjoy playing music during my sessions, sometimes for the whole hour, more often just for the first and last 15 minutes. Ambient textures are best, as anything with a beat requires too much attention. I tune in to SomaFM’s Drone Zone every now and then, which usually ends with at least one new purchase that I’ll queue up for the next tank session. Tom Heasley’s Where The Earth Meets the Sky and Massergy’s The Vast Colure have recently been useful. I’ll also sometimes go a less electronic route, opting for chanting from Gyuto or Georgian monks. It should go without saying that I’ve tried ending a session with Akira’s Requiem.

Isolation Tank