Advanced Search
Search Results
260 total results found
Forum Site Logo ändern
[/volume1/web]/phpbb/styles/[prosilver?]/theme/ cd /volume1/web/phpbb/styles/prosilver/theme in der colours.css anpassen oder das gif ersetzen (png funktioniert auch): .site_logo { background-image: url("./images/site_logo.svg"); } zu ...
voc icecast status
http://live.ber.c3voc.de:7999/status-json.xsl http://ingest.c3voc.de:8000/status-json.xsl Nötig, um für strobs (obs) abzufragen, welche Streams überhaupt aktiv sind.
rtmp to voc
ffmpeg -re -i video.mp4 -c copy -f flv "rtmp://serverinklportundsenke?auth=token" rtmp://ingest.c3voc.de:1935/stream/simpeltest1 rtmp://ingest.c3voc.de:1935/stream/simpeltest2 ffmpeg -re -i video.mp4 -c copy -f flv "rtmp://ingest.c3voc.de:1935/st...
current cmdconfig.bat on NDR-Client
Config file for cmd.exe is at H:\cmdconfig.bat and startet always if searched with start menü.Current state: @echo off set HTTPS_PROXY=http://USER:PW@ndrprx01.ndr-net.de:8080 set HTTP_PROXY=http://USER:PW@ndrprx01.ndr-net.de:8080 set PATH=%PATH%;K:\mpv...
Bildschirm Auflösung unify CP 600
Die IP-Telefone CP 600 vom NDR haben eine Bildschirmauflösung von 480 x 272 und können mit jpg und png umgehen.
Word: Tastenkürzel non break space / Windows
Shortcut um in Word einen Zeilenumbruch bei Bezeichnungen zu verhindern:Strg + Shift + Space
Online python course
https://dabeaz-course.github.io/practical-python
AutoIt: GUI without taskbar item
$hGUI1 = GUICreate("", -1, -1, -1, -1, -1, BitOR($WS_EX_LAYERED, $WS_EX_TOOLWINDOW)) GUISetState() $hGUI2 = GUICreate("Visible", 300, 300, -1, -1, -1, -1, $hGUI1) GUISetState()
UTF8: absolute minimum to know
https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-character-sets-no-excuses
webpack run debug
npm run watch:debug
OSX Bluetooth: Change codec for headphones
macrumors.com/how-to/enable-aptx-aac-bluetooth-audio-codecs-macos
shell: get version automatically
Try something like here:cd34.com/blog/programming/using-git-to-generate-an-automatic-version-number #!/bin/sh revisioncount="$(git log --oneline | wc -l | tr -d ' ')" projectversion="$(git describe --tags --long)" cleanversion=${projectversion%%-*} e...
git fetch / pull remote branch
If you don't created that branch but want to follow and fetch: git checkout --track origin/birtes_branch Shortcut: If the branch name you’re trying to checkout locally doesn’t exist and exactly matches a name on only one remote, git will create a tra...
Xcode error: libc++abi.dylib: terminating with uncaught exception of type NSException
While compile up from iOS 13 this fatal error may occur:libc++abi.dylib: terminating with uncaught exception of type NSExceptionIt's probably due to Selector(("statusBar")) in ViewController.swift as this is not allowed in iOS13 anymore.So try comment: if...
Disassembler
error4hack.com/best-ida-pro-alternativesGhidraGhidra is probably one of the best alternatives to IDA Pro. It is COMPLETELY FREE of cost and open source Software Reversing Engineering(SRE) tool developed by the NSA. Ghidra is a very powerful tool written in Jav...
git: flight rules or how to
This is a cook book for git use cases:github.com/k88hudson/git-flight-rules#i-want-to-start-a-local-repository
Parsing command-line arguments in shell
shellscript.sh/tips/getopts
Bash pitfalls; fails, mistakes
mywiki.wooledge.org/BashPitfallsTags: Shell, Terminal