Skip to content

Instantly share code, notes, and snippets.

@rkben
rkben / kryonaut.md
Last active January 24, 2024 22:03

The Test

Replacing existing third-party or OEM thermal compound with Thermal Grizzly Kryonaut.

The test starts roughly 20 minutes after a cold boot to allow the system to warm, each stress test lasts 15 minutes, stressing all cores. Each laptop was proped up 1 inch to allow for increased air flow. Each run was performed with tuned's throughput-performance profile.

It's worth noting I did a light polish to the heatsink face that sits on the chip, doubt this made much of a difference.

Configuration

  • tests ran under Fedora 39 (Linux)
  • Test tool: phoronix-test-suite

Keybase proof

I hereby claim:

  • I am rkben on github.
  • I am rkben (https://keybase.io/rkben) on keybase.
  • I have a public key ASA44R4HyzjUbIPMamXdAeGYFoeQZl7178q1m3FN-nLnpAo

To claim this, I am signing this object:

#!/bin/sh
ADGUARD_HOST='http://192.168.1.3:8083'
ADGUARD_NAME='admin'
ADGUARD_PASS='password'
ADGUARD_COOKIE=/tmp/adguard-cookie
echo LOGIN: $(curl -s "$ADGUARD_HOST/control/login" -X POST -H 'User-Agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0' -H 'Accept: application/json, text/plain, */*' -H 'Accept-Language: en-US,en;q=0.5' --compressed -H 'Content-Type: application/json' -H "Origin: $ADGUARD_HOST" -H 'Connection: keep-alive' -H "Referer: $ADGUARD_HOST/login.html" --data-raw "{\"name\":\"$ADGUARD_NAME\",\"password\":\"$ADGUARD_PASS\"}" -c $ADGUARD_COOKIE)
PROT_STATUS=$(curl -s "$ADGUARD_HOST/control/status" -H 'User-Agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0' -H 'Accept: application/json, text/plain, */*' -H 'Accept-Language: en-US,en;q=0.5' --compressed -H 'Connection: keep-alive' -H "Referer: $ADGUARD_HOST" -b $ADGUARD_COOKIE | jq .protection_enabled)
#!/bin/bash
# Set POSTINSTALL=1 to run postinst.sh and clean up discord's cache
# Set NOSANDBOX=1 to append --no-sandbox for Discord
is_fedora=$(cat /etc/os-release | grep -c Fedora)
has_libatomic=$(ldconfig -p | grep -c libatomic)
# pretty sure this was missing, on atleast Fedora
has_libsodium=$(ldconfig -p | grep -c libsodium)
if [ $has_libsodium = 0 ]
import sys
import argparse
parser = argparse.ArgumentParser(description="Generate a cover letter, use {company} and {position} in place where you want each to be")
parser.add_argument("-c", "--company", help="Name of company", type=str)
parser.add_argument("-p", "--position", help="Position at company", type=str)
parser.add_argument("-f", "--file", help="File to format, plain text", type=str)
args = parser.parse_args()
#!/bin/sh
dir_path=$HOME/.steam/root/compatibilitytools.d/
res=`curl -Ls https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest`
download_url=`echo $res | jq -r '.assets[0].browser_download_url'`
latest_version=`echo $res | jq -r '.tag_name'`
html_url=`echo $res | jq -r '.html_url'`
download_proton() {
echo Downloading $download_url
curl -L $download_url --output /tmp/proton_update.tar.gz
from itertools import combinations
from typing import Generator
import random
vals: list = []
for fuck in range(25):
vals.append(random.randint(1, 500))
def iter_sums(values: list) -> Generator: