Advanced Search
Search Results
258 total results found
git: show unreferenced objects
Could be, that git has some unreferenced objects like trees, commits or blobs (files). Make them visible with: git fsck Result could be: Prüfe Objekt-Verzeichnisse: 100% (256/256), fertig. blob 39c0ba0518adb9daf0537faa854ab6e0573545ec unreferenziert tree ...
Groovy: hide print out
If a variable in groovy is set and nothing is done with it it will be printed out instantly. To avoid this do something like this: {{groovy}} // Because velocitys mathtool isn't working create random number with groovy and use $count as max. value // ve...
shebang
#!/bin/sh
Grafana with logfiles
First start Grafana: brew services start grafana This service will run instantly. Next start Loki the service getting log files and show them to Grafana: loki -config.file /Users/cox/.local/loki/config.yaml Current config is: auth_enabled: false serve...
Grafana AME logs
Beware: AME logfiles are UTF16-LE. So they must converted to UFT8 before: cat $UFT16FILE | recode utf16..utf8 > $UFT8FILE If running w/out stdin and stdout the file will be overwritten: recode utf16..utf8 $UTF16FILE
show default log
journalctl -u APP To see what is actually happening: journalctl -fu APP
encode windows / dos files to unix / mac
Try this first: dos2unix -n WINDOWS.txt MAC.txt -n creates new file It will encode to UTF8 and make LF line endings. But this could work too: recode utf16..utf8 $UTF16FILE Beware: this will overwrite the file and does not correct CRLF to LF.
Path to windows profile autostart
\\ad\user$\HH\USERNAME\Profil.v6\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Bookstack key commands
Shortcut (Windows & Linux/Mac) Description Ctrl+S / Cmd+S Save Draft Ctrl+Enter / Cmd+Enter Save Page & Continue Ctrl+1 / Cmd+1Ctrl+2 / Cmd+2Ctrl+3 / Cmd+3Ctrl+4 / Cmd+4 Header Large (h2)Header Medium (h3)Header Small (h4)Header Ti...
ffmpeg: combine Mediathek versions to one
To merge the different Mediathek versions (AD, 2nd language, pure speech etc.) into one file use: #!/bin/bash## Written by Daniel Molkentin <daniel@molkentin.de># Licensed under CC0 (https://creativecommons.org/publicdomain/zero/1.0/## requires ebu-tt_to_srt....
Minisleep - a mini wiki engine
Source: http://halestrom.net/darksleep/software/minisleep Minisleep - a tiny wiki engine done right. Minisleep is genuinely small (<1000LOC), has an (optional) graphical page editor with drag-and-drop image support, statically compiles pages to html fi...
A Deep Dive Into Noise
A Brief History NOISE MAY BE THE MOST MISUNDERSTOOD PROBLEM in any professional audio or video facility. Today’s recording technology offers unsurpassed quality and accuracy, yet grounding system noise still baffles the experts. Grounding noise is one of the...
Use Ctrl-Z to switch back to Vim
ohmyzsh/plugins/fancy-ctrl-z/ I frequently need to execute random commands in my shell. To achieve it I pause Vim by pressing Ctrl-z, type command and press fg to switch back to Vim. The fg part really hurts me. I just wanted to hit Ctrl-z once again to get b...
Windows: count file lines in cmd
type DATEI | find /c /v ""
restart xwiki - Spielwiki
systemctl restart xwiki
Drucker Brother MFC-L2710DW Manual
https://support.brother.com/g/s/id/htmldoc/mfc/cv_mfcl2750dw/ger/index.html?c=de&lang=de&prod=mfcl2710dw_us_eu_as
find only common lines in two files
How to find all lines in two files which both files do have in common: cat FILE1 FILE2 | sort | uniq -d If they are sorted already this works to: comm -12 FILE1 FILE2 else: comm -12 <(sort FILE1 | uniq) <(sort FILE2 | uniq)
velocity: get domain
#macro(getDomain) #set ($docFullurl = $doc.getExternalURL()) ## regex Fullurl only until the first single "/" #set ($regex = "^((https://)?.+?/{1}).*$") #set ($domain = $docFullurl.replaceAll($regex, "$1")) ## remove protocol #set ($domain = ...
Klare Sprache - Instant Dialogue Cleaner
Shown on NAB: https://audionamix.com/2022/04/27/idc-powered-broadcast-device-debuts-at-nab It's https://audionamix.com/instant-dialogue-cleaner inside a yellobrik IDC 1411: https://www.lynx-technik.com/products/yellobrik/embed-de-embedding/idc-1411-ai-based-i...
Disable Spotlight for external drive
Use mdutil command to prevent indexing on external drive. First check status for all: mdutil -a -s Disable spotlight for all and enable your home drive and /System/Volumes/Data (all apps) explicit: sudo mdutil -a -i off sudo mdutil -i on /Volumes/OSX sud...