Skip to content

Instantly share code, notes, and snippets.

View xDShot's full-sized avatar

xDShot

  • Digital Hell
View GitHub Profile
import bpy
side_identifier = "_X_"
finger_identifier = "_FingerN"
chainlinks = {}
chainlinks["body"] = ( "ValveBiped.Bip01", "ValveBiped.Bip01_Pelvis", "ValveBiped.Bip01_Spine", "ValveBiped.Bip01_Spine1", "ValveBiped.Bip01_Spine2", "ValveBiped.Bip01_Spine4" )
chainlinks["arms"] = ( "ValveBiped.Bip01_X_Clavicle", "ValveBiped.Bip01_X_UpperArm", "ValveBiped.Bip01_X_Forearm", "ValveBiped.Bip01_X_Hand" )
chainlinks["fingers"] = ( "ValveBiped.Bip01_X_FingerN", "ValveBiped.Bip01_X_FingerN1", "ValveBiped.Bip01_X_FingerN2" )
# TODO: legs, pelvis+neck+head
#!/bin/sh
for i in *.mp3; do
echo $i
bsname=$(basename "$i" .mp3)
echo $bsname
cp "$i" "_tmp.mp3"
ffmpeg -y -i "_tmp.mp3" "_tmp.wav"
rm "_tmp.mp3"
mv "_tmp.wav" "$bsname.wav"
//
snd_buildsoundcachefordirectory ../xdsoundmods/
//quit
@xDShot
xDShot / hsv2rgb.vmt
Last active October 12, 2020 18:16
Source HSV to RGB material proxy
"VertexLitGeneric"
{
$baseTexture "models/shadow_warrior/sword/reskins/z45_rgb"
$bumpmap "models/shadow_warrior/sword/katana_energetic_n"
$blendtintbybasealpha 1
$color "[1 .3 0]"
// BEGIN OF HSV2RGB
$Hue 1.00
@xDShot
xDShot / crowbar-linux.md
Last active February 13, 2023 20:40
crowbar linux wine proton workshop

Dirty hack workaround how to upload L4D2 workshop stuff from Linux:

  1. Download and unpack Crowbar to some folder
  2. In same folder create file steam_appid.txt which just contains 550
  3. Add crowbar.exe as non-Steam game
  4. In it's properties, enable Compatibility, set to Proton Experimental
  5. Launch from Steam, do stuff, close.

For other games it's all same but type corresponding steam id in steam_appid.txt

@xDShot
xDShot / pac-bundle.sh
Last active May 27, 2021 11:29
Installs specified pacman package and it's dependencies in separate root tree
#!/bin/sh
DIST_DIR=/seagate/pkg_dist/
mkdir -p ${DIST_DIR}/var/lib/pacman/
sudo pacman -r ${DIST_DIR} -b ${DIST_DIR}/var/lib/pacman/ -Syy
sudo pacman -r ${DIST_DIR} -b ${DIST_DIR}/var/lib/pacman/ -U $@
chmod -R a+rwX usr/
@xDShot
xDShot / gist:6d4cab6c82e739260dd76b454df6f271
Created May 27, 2021 11:28
fixes harfbuzz and freetype undefined references like FT_Get_MM_Var hb_ft_font_create
sed -i 's|-lfreetype -lbz2 -lharfbuzz|-lharfbuzz -lfreetype -lharfbuzz -lfreetype -lbz2|g' Sources/Makefile.Release
@xDShot
xDShot / 90-dualsense-no-touchpad-input.rules
Created July 2, 2021 07:36
hid-playstation disable Sony Dualsense touchpad input
# /etc/udev/rules.d/90-dualsense-no-touchpad-input.rules
ACTION=="add|change", KERNEL=="event[0-9]*", ATTRS{name}=="*Wireless Controller Touchpad", ENV{LIBINPUT_IGNORE_DEVICE}="1"
@xDShot
xDShot / src.txt
Created August 20, 2021 11:07
quake64 loader
#include "kexlib.h"
#include "quakeex.h"
/*
=============================================================================
DECOMPRESSION
=============================================================================
@xDShot
xDShot / encode-for-youtube-with-ffmpeg.sh
Created October 18, 2021 00:27
ffmpeg convert for youtube
#!/bin/bash
# https://video.stackexchange.com/questions/24479/how-to-encode-for-youtube-with-ffmpeg
ffmpeg -framerate 60 -i vidname_%04d.jpg -i vidname_.WAV -ss 00:00:10 -vf yadif,format=yuv422p -force_key_frames expr:gte\(t\,n_forced/2\) -c:v libx264 -b:v 60M -bf 2 -c:a aac -q:a 1 -ac 2 -ar 44100 -use_editlist 0 -movflags +faststart vidname.mp4