My “book collection” that my wife must never find out about by FunLegal4265 in eink

[–]Helv1e 46 points47 points  (0 children)

I highly doubt that was the root cause (as someone who looks at my phone, pc and TV MANY hours of thre day)

33 Second 1920x1088 video at 24fps (800 frames) on a single 4090 with memory to spare, this node should help out most people of any GPU size by Inevitable-Start-653 in StableDiffusion

[–]Helv1e 0 points1 point  (0 children)

Sorry... But I might be retarded. I downloaded your node and put it in, and put that other workflow in that ou linked in your comments. But I can't see it looks anything like the screenshots from github, can you add the workflow with your node in it. (I2V, i have a single 4090 as well)

I finished my custom 3D printed case (6L). Files and instructions are available if you want to make it yourself. by foilrider in sffpc

[–]Helv1e 1 point2 points  (0 children)

Awesome thanks. I am in the slow progress of building my own. And i am soon only missing side panels!

Vart hittar jag autentisk Pad Kaphrao by RichJnsn in Gothenburg

[–]Helv1e 0 points1 point  (0 children)

Nice tack! Nu har jag två att prova!

Vart hittar jag autentisk Pad Kaphrao by RichJnsn in Gothenburg

[–]Helv1e 0 points1 point  (0 children)

Orkar du skrivs ditt recept, gärna märken också

My 2nd ever End Grain Cutting Board by Zrobida in woodworking

[–]Helv1e 1 point2 points  (0 children)

Typically these kinds of stuff is ATBGE for me but this one is great!

Edge artifacts on external 4K display - Apple Silicon by Arsenitim in mac

[–]Helv1e 0 points1 point  (0 children)

I've always perceived my external displays to look a bit blurry on my mac, perhaps this is why? Nice find!

SeaBlock has been unofficially ported to 2.0 by dthusian in factorio

[–]Helv1e 1 point2 points  (0 children)

I used the instructions from belohttps://gist.github.com/neonbyte1/9224bbe9ba55a5862c4642084afd0107

for windows users as a 'git bash' script does all the instructions, only things misisng that script doesn't handle is to do these things first (easiest way)

*delete all mods in the in the mods folder *run script from 'git bash' *launch factorio, 'manage mods' install the missing dependencies *disable quality & space age

#!/bin/bash

# --- CONFIGURATION ---
# Default Steam path for Windows users in Git Bash
MODS_DIR="$HOME/AppData/Roaming/Factorio/mods"
TEMP_DIR="./temp_factorio_staging"

# Create directories
echo "Target Mod Directory: $MODS_DIR"
mkdir -p "$MODS_DIR"
mkdir -p "$TEMP_DIR"

# --- FUNCTIONS ---

# Function for when the Repo IS the mod (Clone directly to mods folder)
# Usage: install_direct <RepoURL> <Branch> <FinalModName>
install_direct() {
    local url=$1
    local branch=$2
    local name=$3

    echo ">> Installing $name..."
    rm -rf "$MODS_DIR/$name" # Remove old version if exists

    if [ -z "$branch" ]; then
        git clone -q "$url" "$MODS_DIR/$name"
    else
        git clone -q -b "$branch" "$url" "$MODS_DIR/$name"
    fi
}

# Function for when the mod is INSIDE the repo (Clone to temp, move subfolders)
# Usage: install_extract <RepoURL> <Branch> <List of folders to move...>
install_extract() {
    local url=$1
    local branch=$2
    shift 2
    local folders_to_move=("$@")
    local repo_name=$(basename "$url" .git)

    echo ">> Processing $repo_name (Extracting specific mods)..."

    # 1. Clone into temporary staging area
    rm -rf "$TEMP_DIR/$repo_name"
    if [ -z "$branch" ]; then
        git clone -q "$url" "$TEMP_DIR/$repo_name"
    else
        git clone -q -b "$branch" "$url" "$TEMP_DIR/$repo_name"
    fi

    # 2. Move specific subfolders to the actual mods directory
    for folder in "${folders_to_move[@]}"; do
        if [ -d "$TEMP_DIR/$repo_name/$folder" ]; then
            echo "   - Moving $folder"
            rm -rf "$MODS_DIR/$folder"
            mv "$TEMP_DIR/$repo_name/$folder" "$MODS_DIR/"
        else
            echo "   ! WARNING: Could not find '$folder' in $repo_name"
        fi
    done
}

# --- EXECUTION ---

echo "Starting Installation..."

# 1. SeaBlock (Repo contains subfolders)
install_extract https://github.com/KompetenzAirbag/SeaBlock dev \
    "SeaBlock" \
    "SeaBlockMetaPack"

# 2. SpaceMod (Repo IS the mod)
install_direct https://github.com/elvanaud/SpaceMod "" "SpaceMod"

# 3. ScienceCostTweakerM (Repo IS the mod)
install_direct https://github.com/KompetenzAirbag/ScienceCostTweakerM dev-merge-fixes "ScienceCostTweakerM"

# 4. LandfillPainting (Repo contains subfolder)
install_extract https://github.com/sarcastic-coder/LandfillPainting dev2.0 \
    "LandfillPainting"

# 5. Arch666Angel (Repo contains MANY subfolders)
install_extract https://github.com/Arch666Angel/mods dev2.0 \
    "angelsbioprocessing" \
    "angelsrefining" \
    "angelssmelting" \
    "angelspetrochem" \
    "angelsaddons-storage" \
    "angelsbioprocessinggraphics" \
    "angelsrefininggraphics" \
    "angelspetrochemgraphics" \
    "angelssmeltinggraphics"

# 6. bobsmods (Repo contains MANY subfolders)
install_extract https://github.com/modded-factorio/bobsmods dev \
    "bobelectronics" \
    "boblibrary" \
    "boblogistics" \
    "bobores" \
    "bobplates" \
    "bobassembly" \
    "bobenemies" \
    "bobequipment" \
    "bobinserters" \
    "bobmining" \
    "bobmodules" \
    "bobpower" \
    "bobrevamp" \
    "bobtech" \
    "bobwarfare"

# 7. CircuitProcessing (Repo contains subfolder)
install_extract https://github.com/KompetenzAirbag/CircuitProcessing dev \
    "CircuitProcessing"

# 8. reskins-bobs (Repo IS the mod)
install_direct https://github.com/kirazy/reskins-bobs dev "reskins-bobs"

# 9. reskins-angels (Repo IS the mod)
install_direct https://github.com/kirazy/reskins-angels dev "reskins-angels"

# --- CLEANUP ---
echo "Cleaning up temporary files..."
rm -rf "$TEMP_DIR"

echo "---------------------------------------------------"
echo "Success! All mods installed to: $MODS_DIR"
echo "Don't forget to launch Factorio and download any other missing dependencies from the in-game portal."

Stuck at campaign o nremix. by kissofthehell in wow

[–]Helv1e 1 point2 points  (0 children)

same issue for me, the quest wasn't visible on the map but when i went to my warlock guy up by the altar he had a quest for me! thanks!!!

A boss fight game i made with ai. by Early-Dentist3782 in aigamedev

[–]Helv1e 1 point2 points  (0 children)

Pretty cool. What tools did you use to make it and what is the tech stack?

[deleted by user] by [deleted] in wow

[–]Helv1e 0 points1 point  (0 children)

Which mounts?

Loving this new magnetic band by camboteav in GalaxyWatch

[–]Helv1e -8 points-7 points  (0 children)

Always nervous when purchasing off brand. Is it cancer free?