This file contains 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
vk.com##div[data-ad-view] | |
vk.com##div[data-ad] | |
vk.com##div[data-ads] | |
vk.com##.ads_ads_box | |
vk.com##.ads_ads_news_wrap |
This file contains 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
# Maintainer: Youngbin Han <[email protected]> | |
# Maintainer: xDShot <[email protected]> | |
pkgname=micro | |
pkgver=1.0.3 | |
pkgrel=1 | |
pkgdesc="A modern and intuitive terminal-based text editor" | |
arch=('x86_64' 'i686') | |
url="https://github.com/zyedidia/micro" | |
license=('MIT') | |
makedepends=('go') |
This file contains 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
class PizzaDelivery extends Trigger; | |
function Trigger(Actor Other, Pawn Instigator) | |
{ | |
if (GiveAchievement()) | |
{ | |
Super.Trigger(Other, Instigator); | |
if (bTriggerOnceOnly) | |
Destroy(); | |
} |
This file contains 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 | |
active_armature = bpy.data.objects['v_pist_deagle_csco_reference_skeleton'] | |
target_armature = bpy.data.objects['v_deagle_ref_deonly_skeleton'] | |
mah_bois = [ | |
"v_weapon.Bip01_R_Forearm", | |
"v_weapon.Bip01_R_ForeTwist", | |
"v_weapon.Bip01_R_Hand", |
This file contains 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
#!/usr/bin/bash | |
for D in ./*; do | |
if [ -d "$D" ]; then | |
echo "I go into $D folder" | |
cd "$D" | |
for i in *; do | |
if [ ${i: -4} == ".vmt" ] | |
then | |
echo "Remove $i text file" |
This file contains 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
#!/usr/bin/bash | |
for D in ./*; do | |
if [ -d "$D" ]; then | |
echo "I go into $D folder" | |
cd "$D" | |
for qc in *.qc; do | |
echo "Batch processing the $qc" | |
studiomdl-hl2 $qc | |
done |
This file contains 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
"VetexLitGeneric" | |
{ | |
"$basetexture" "your/animated/texture" | |
//Put your desired values here | |
// Edit these | |
$_totalframes 4 | |
$_framerate 2 //animatedTextureFrameRate | |
This file contains 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
#!/bin/bash | |
#Incomplete. There are still ways of improvements | |
INRES="1920x1080" # input resolution | |
OUTRES="1920x1080" # output resolution | |
FPS="60" # target FPS | |
GOP="120" # i-frame interval, should be double of FPS, | |
GOPMIN="60" # min i-frame interval, should be equal to fps, | |
THREADS="2" # max 6 |
This file contains 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
WINEPREFIX=~/_prefix32_wine WINEARCH=win32 WINEDLLOVERRIDES=libglesv2.dll=d wine ShittyElectronApp.exe --disable-gpu --no-sandbox --single-process |
This file contains 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
export CFLAGS="-march=znver1 -O2 -pipe -fno-plt" # makefile doesn't really care | |
export CXXFLAGS="${CFLAGS}" | |
export LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" | |
export CC=x86_64-w64-mingw32-gcc | |
export WINDRES=x86_64-w64-mingw32-windres | |
export STRIP=x86_64-w64-mingw32-strip | |
export SDL_CONFIG=x86_64-w64-mingw32-sdl2-config | |
export DP_MAKE_TARGET=mingw | |
make $@ |
OlderNewer