add path/to/ffmpeg
to PATH
env variable
youtube-dl -g url | Tee-Object -Variable Var | ffplay $Var
import subprocess | |
#import privates variable | |
import sys | |
import os | |
sys.path.append(os.path.join(os.getenv('privates'))) | |
import privates | |
def test(): | |
global branch |
ACHTUNG escape json for win and linux is diferent
LAMPE 4 für dazwischen; 5 für vorn; 6 für hint; 7 für anlage
GRUPPE 0 für lampen&anlage; 3 für lampen
BRIDGE-INTERNAL_IP 192.168.xxx.xx über hue seite/ router/ googel halt
/* | |
# Tabs expand when leaved | |
*/ | |
/*uncomment to expand tabs when leaved | |
:root { | |
--Tabs-transition-time: 0.1s; | |
--Tabs-transition-delay: 0s; | |
} |
dd if=/dev/zero of=file.of.zeros bs=67108864 count=1250
VBoxManage modifymedium --compact "path\to\bigSur.vdi"
This comment was very helpful for me.
"for cursor syncing to work set MASTERTXT + ALTTXT in sys env var | |
"COLOR THEME | |
"source path\to\file | |
"put theme.vim file in \nvim\share\nvim\runtime\colors | |
:set termguicolors | |
:colorscheme github | |
:set background=light | |
"SET DIR |
reg query "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v SystemUsesLightTheme |
Select-Object -first 3 |
Select-Object -last 1 |
%{
if($_ -match "0x1"){
New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -Value 0 -Type Dword -Force;
New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0 -Type Dword -Force
}