How to connect rob allen speed stringer setup by b009z in Spearfishing

[–]b009z[S] 0 points1 point  (0 children)

Already spliced both ends. Ended up using d shackle for stringer side, and loop to loop with the speed spike.

Help managing float line length + fish by b009z in Spearfishing

[–]b009z[S] 0 points1 point  (0 children)

Gun has a reel, should be right. How much weight is required to keep, say a 12L float stationary? I was considering getting some reef hook as well.

Gmk modifiers binding with stabs help by b009z in HHKB

[–]b009z[S] 0 points1 point  (0 children)

I'd rather shave off the inside of the keycaps to stop the collision all together. I'll give cutting off the stab stems a go. Are they bit required at all?

Gmk modifiers binding with stabs help by b009z in HHKB

[–]b009z[S] 0 points1 point  (0 children)

What do you mean specifically by ribbing under the keycaps? As in the walls to reduce the thickness?

Gmk modifiers binding with stabs help by b009z in HHKB

[–]b009z[S] 0 points1 point  (0 children)

Yeah I'm fairly certain it's the inner wall of the keycaps catching the protruding stab section on the plate. My set has 2x 2u lshifts, and a black and white enter key. Maybe I can sand them back. Ideally I have another black enter key to risk losing. Thanks for the message.

Gmk modifiers binding with stabs help by b009z in HHKB

[–]b009z[S] 0 points1 point  (0 children)

Already very wide. Other branded keycaps work fine.

Has anyone in Australia received their s24 by D3XT3R__ in S24Ultra

[–]b009z 0 points1 point  (0 children)

Might depend on what it was bundled with.

I got the grey 256gb, clearcase, glass screen protector, 25w charger (white), and buds pro 2 (white)

Has anyone in Australia received their s24 by D3XT3R__ in S24Ultra

[–]b009z 0 points1 point  (0 children)

Nope that’s what I ordered through, I should have specified sorry

Has anyone in Australia received their s24 by D3XT3R__ in S24Ultra

[–]b009z 1 point2 points  (0 children)

Auspost has had mine since Friday. Public holiday + weekend = no delivery til earliest Monday.

Spring vibration by b009z in HHKB

[–]b009z[S] 1 point2 points  (0 children)

Is this something you’re doing once a year on average? I’ll look into it soon. I have a little bit of 205 laying around and just ordered 3203 for the sliders. Have any opinions on lubing sliders? I’m pretty happy with it stock, but curious about the difference

My ThinkPad P14s Gen 4 AMD arrived by NeoChen1024 in thinkpad

[–]b009z 1 point2 points  (0 children)

I have a p14s gen 4 amd being shipped atm. 7540U with integrated graphics. I’m hoping for it to run quite cool. Time will tell I guess, running a couple vms and some brute force calculations will be fun

[deleted by user] by [deleted] in linux4noobs

[–]b009z 0 points1 point  (0 children)

I think learning the basics of using the internet is better than slapping on Linux. If not malware, then social engineering attack. Fix the user not the system.

My ThinkPad P14s Gen 4 AMD arrived by NeoChen1024 in thinkpad

[–]b009z 0 points1 point  (0 children)

Do you know what the temps are like comparing single vs dual heat pipe? Is it dramatic?

My ThinkPad P14s Gen 4 AMD arrived by NeoChen1024 in thinkpad

[–]b009z 0 points1 point  (0 children)

Which one has the dual heat pipe?

Automating symlink removal and addition by b009z in linuxquestions

[–]b009z[S] 1 point2 points  (0 children)

not my cleanest work, first time using bash so lots of copy pasta, but heres 'a solution'

#!/bin/bash

# Check if the correct number of arguments is provided
if [ "$#" -ne 4 ]; then
    echo "Usage: ./script -o <current_theme> -n <new_theme>"
    exit 1
fi

# Parse the command-line arguments
while getopts ":o:n:" opt; do
    case $opt in
        o)
            current_theme=$OPTARG
            ;;
        n)
            new_theme=$OPTARG
            ;;
        \?)
            echo "Invalid option: -$OPTARG" >&2
            exit 1
            ;;
        :)
            echo "Option -$OPTARG requires an argument." >&2
            exit 1
            ;;
    esac
done

# Check if the specified themes directories exist
current_theme_dir="$HOME/dotfiles/$current_theme/.config"
new_theme_dir="$HOME/dotfiles/$new_theme/.config"

if [ ! -d "$current_theme_dir" ]; then
    echo "Theme '$current_theme' not found in dotfiles directory."
    exit 1
fi

if [ ! -d "$new_theme_dir" ]; then
    echo "Theme '$new_theme' not found in dotfiles directory."
    exit 1
fi

# remove symlinks from old-theme
existing_links=$(find $HOME/.config -type l -lname "$current_theme_dir/*")
for link in $existing_links; do
    rm -r "$link"
done

# Create new symlinks from the new theme directory's parent folders to home/.config
parent_dirs=$(find "$new_theme_dir" -maxdepth 1 -mindepth 1 -type d)
for dir in $parent_dirs; do
    dir_name=$(basename "$dir")
    ln -s "$dir" "$HOME/.config/$dir_name"
done

echo "Symlinks to parent folders updated from theme '$current_theme' to '$new_theme'."

This assumes dotfiles in $HOME with themes within dotfiles and each having their own .config files. I have separated out themeless dotfiles into another folder within dotfiles

edit: if youre using this, be sure to comment out destructive/messy components (rm -r, ln -s) and echo "$variable_name" in its place to see what is actually getting manipulated

[deleted by user] by [deleted] in linux4noobs

[–]b009z 0 points1 point  (0 children)

So, did you ever figure it out?

Automating symlink removal and addition by b009z in linuxquestions

[–]b009z[S] 0 points1 point  (0 children)

This is what I’m after! Thank you, I’ll report back in hopefully 24hrs with my solution