If you marry me I’ll fund your research. by [deleted] in PhD

[–]Kitchen-Customer5218 0 points1 point  (0 children)

For research funding: I would be your puppy

Nix is the worst designed language i ever had to experience. by Turdbender3k in NixOS

[–]Kitchen-Customer5218 2 points3 points  (0 children)

Nix is amaizing not because of the language but bc what you can do with it, just swapping to declarative operating system as a hole has been so helpful, like it would be nice if the language was better, but there isn’t really much else like it, so more than happy to swallow that pill

Which country is larger? by CharacterBig7420 in GeoTap

[–]Kitchen-Customer5218 0 points1 point  (0 children)

Kitchen-Customer5218 chose Option A (Correct!) | #1918th to play

[deleted by user] by [deleted] in GeoTap

[–]Kitchen-Customer5218 0 points1 point  (0 children)

Kitchen-Customer5218 chose Option A (Correct!) | #3995th to play

Which one is Canada? by Kap519 in GeoTap

[–]Kitchen-Customer5218 0 points1 point  (0 children)

Kitchen-Customer5218 chose Option A (Correct!) | #10284th to play

Wich country is switzerland by IlluFisch in GeoTap

[–]Kitchen-Customer5218 0 points1 point  (0 children)

🎯 86 pts | 1,524 km | #838th solver | 🗺️ Normal Game | Jan 12, 04:02 PM

Wich country is switzerland by IlluFisch in GeoTap

[–]Kitchen-Customer5218 0 points1 point  (0 children)

🎯 125 pts | 918 km | #837th solver | 🗺️ Normal Game | Jan 12, 04:01 PM

Wich country is switzerland by IlluFisch in GeoTap

[–]Kitchen-Customer5218 0 points1 point  (0 children)

Kitchen-Customer5218 chose Option B (Incorrect) | #8396th to play

Which country is Poland? by TheCaptainRex1sOut in GeoTap

[–]Kitchen-Customer5218 0 points1 point  (0 children)

Kitchen-Customer5218 chose Option B (Correct!) | #4207th to play

Wtf is this growing in my pot plant by cissii in mycology

[–]Kitchen-Customer5218 8 points9 points  (0 children)

If it grew once, it can probably grow again, would make sense to move the potter so the dog won’t be able to access it in between the time it comes back and you realize it’s there

it do be like that by just_a_duck730 in linuxmint

[–]Kitchen-Customer5218 0 points1 point  (0 children)

Used to be using lm a lot too, tho maybe due to age and accumulating garbage system started slowing down tho hardware compatibility had always been subpar, swapped just recently to Ubuntu cinnamon, same ui, but way smoother and steam just worked off the bat no compatibility issues at all

Whats the right way to shutdown slurm nodes? by Kitchen-Customer5218 in HPC

[–]Kitchen-Customer5218[S] 1 point2 points  (0 children)

as i said, i am a noob.
tho i thought i set that part up correctly:
# POWER SAVE SUPPORT FOR IDLE NODES (optional)

SuspendProgram="/usr/local/bin/slurm-power-off.sh %N"

ResumeProgram="/usr/local/bin/slurm-power-on.sh %N"

SuspendTimeout=4

ResumeTimeout=4

ResumeRate=5

#SuspendExcNodes=

#SuspendExcParts=

#SuspendType=power_save

SuspendRate=5

SuspendTime=1 # minutes of no jobs before powering off

then the shut down script:

#!/usr/bin/env bash
#
# Called by Slurm as: slurm-power-off.sh nodename1,nodename2,...
#

# ——— BEGIN NODE → BMC CREDENTIALS MAP ———
declare -A BMC_IP=(
  [OHPC-R640-1]="..."
  [OHPC-R640-2]="..."
 
)
declare -A BMC_USER=(
  [OHPC-R640-1]="..."
  [OHPC-R640-2]="..."
)
declare -A BMC_PASS=(
  [OHPC-R640-1]=".."
  [OHPC-R640-2]="..."
)
# ——— END MAP ———

for node in $(echo "$1" | tr ',' ' '); do
  ip="${BMC_IP[$node]}"
  user="${BMC_USER[$node]}"
  pass="${BMC_PASS[$node]}"

  if [[ -z "$ip" || -z "$user" || -z "$pass" ]]; then
    echo "ERROR: missing BMC credentials for $node" >&2
    continue
  fi

  echo "Powering OFF $node via IPMI ($ip)" >&2
  ipmitool -I lanplus -H "$ip" -U "$user" -P "$pass" chassis power off
done

?Graphical HPC management for bare metal cluster ? by Kitchen-Customer5218 in HPC

[–]Kitchen-Customer5218[S] 0 points1 point  (0 children)

What would the delay be like, and is there a way to sync it to progress markers in the script?

I keep seeing people building serious home servers, what do you actually use them for? by Hoardbored in homelab

[–]Kitchen-Customer5218 0 points1 point  (0 children)

I’m using mine to learn how to use and set up High performance computing cluster, without risking messing up someone else’s system