Skip to content

Instantly share code, notes, and snippets.

View akazakou's full-sized avatar
☢️

Andrei Kazakou akazakou

☢️
  • Telly
  • Austin, TX, USA
  • 03:00 (UTC -05:00)
  • LinkedIn in/akazakou
View GitHub Profile
@akazakou
akazakou / fans_control.js
Created November 13, 2024 00:39
There is small Node.js script to make fans on the X10DSC+ motherboard more silent to allow use servers based on that motherboard to be used in the home solutions.
#!/usr/bin/env node
const { exec } = require('child_process');
// IPMI credentials and host
const ipmiHost = '192.168.86.214';
const ipmiUser = 'ADMIN';
const ipmiPass = 'ADMIN';
// Variables to hold the average temperature and the flag for high temperature
@akazakou
akazakou / satisfactory.yaml
Created December 2, 2021 08:59
Kuberneted Deployment for the Satisfactory Experemental Dedicated Server
---
apiVersion: v1
kind: Namespace
metadata:
name: satisfactory
labels:
istio-injection: enabled
---
apiVersion: v1
kind: PersistentVolume