This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --============================================================== | |
| -- McDonald's Machine Alarm Simulator (CC:Tweaked Speaker PCM) | |
| --============================================================== | |
| -- This program emulates the overlapping alarm sounds commonly | |
| -- heard from McDonald's kitchen machines (fryers, grills, UHCs). | |
| -- | |
| -- It synthesizes raw PCM audio at 48 kHz and streams it directly | |
| -- to a CC:Tweaked speaker peripheral using playAudio(). | |
| -- | |
| -- Key characteristics: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Set limits | |
| sudo ipmitool sensor thresh FANA lower 400 500 600 | |
| sudo ipmitool sensor thresh FANA upper 2500 2600 2700 | |
| sudo ipmitool sensor thresh FAN1 lower 1000 1100 1200 | |
| sudo ipmitool sensor thresh FAN1 upper 5000 5100 5200 | |
| sudo ipmitool sensor thresh FAN3 lower 700 800 900 | |
| sudo ipmitool sensor thresh FAN3 upper 1500 1600 1700 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Turnstile } from '$lib/server/cloudflare/index.js'; | |
| import { TurnstileUserErrorMessage } from '$lib/server/cloudflare/turnstile.js'; | |
| import { fail } from '@sveltejs/kit'; | |
| /** @type {import('./$types').Actions} */ | |
| export const actions = { | |
| default: async ({ request }) => { | |
| const body = await request.formData(); | |
| // Validate turnstile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using OptoCloud; | |
| var summary = BenchmarkDotNet.Running.BenchmarkRunner.Run<StringReplaceBenchmark>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import bpy | |
| import mathutils | |
| def GetMesh(obj_name): | |
| obj = bpy.data.objects.get(obj_name) | |
| if obj is None: | |
| return None | |
| return obj.data | |
| def GetShapeKey(mesh, shape_key_name): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import gzip | |
| import shutil | |
| import tarfile | |
| def ensure_dir(dir): | |
| if not os.path.exists(dir): | |
| os.makedirs(dir) | |
| def move_if_exists(src, dst): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Remove empty vertex groups and shape keys | |
| ## Credits: | |
| ## https://blender.stackexchange.com/questions/237599/is-there-a-way-to-automatically-delete-shape-keys-that-are-identical-to-the-basi | |
| ## https://blender.stackexchange.com/questions/16517/how-to-quickly-remove-all-zero-weight-vertex-groups | |
| import bpy | |
| import numpy as np | |
| # Tolerance to small differences, change it if you want | |
| tolerance = 0.001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... yada yada ... | |
| auto vmbr0 | |
| iface vmbr0 inet static | |
| address 10.0.0.1/24 | |
| bridge-ports none | |
| bridge-stp off | |
| bridge-fd 0 | |
| post-up bash /root/post-up.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Linq; | |
| using UnityEditor; | |
| using UnityEditor.Animations; | |
| using UnityEngine; | |
| public class LinkedMaterialSelector : EditorWindow | |
| { | |
| static bool FileExistsScuffed(string path) | |
| { |