Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

258 total results found

git: show unreferenced objects

Coding

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

Coding

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

Coding

#!/bin/sh

Grafana with logfiles

Coding

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

Coding

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

Coding

journalctl -u APP To see what is actually happening: journalctl -fu APP

encode windows / dos files to unix / mac

Coding

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

Coding

\\ad\user$\HH\USERNAME\Profil.v6\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup  

Bookstack key commands

Coding

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

Coding

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

Projekte

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

Ausbildung

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

Coding

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

Coding

type DATEI | find /c /v ""

restart xwiki - Spielwiki

Coding

systemctl restart xwiki

Drucker Brother MFC-L2710DW Manual

Coding

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

Coding

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

Coding

#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

Projekte

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

Coding

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...