Advanced Search
Search Results
258 total results found
Wohnmarktanalyse Haus Kavelstorf
Von der HASPA: WMA-18196-Kavelstorf-Rostocker_Strasse-25-ID-188084_1.pdf WMA-18196-Kavelstorf-Rostocker_Strasse-25-ID-188096_2.pdf
Slam Nakilé Mono
A0_Nakile_mono_16LUFS.aac
Schöne Töne CCC Berlin Audio Workshop
Schoene_Toene.key
Beyond Frames e.V. Slam - SSWS abwickeln
Folgendes wäre wohl abzuwickeln: Liquidation per Mitgliederversammlung beschließen und per Notar dem Vereinsregister mitteilen Nürnberger Versicherung (wird bereits von Thorsten gekündigt) 1&1 (IONOS) Homepage (inkl. Domains singersongwriterslam.de/beyond...
Seawatch Minimixer
First contact:Wir brauchen Hilfe!Für ein humanitäres Projekt im Mittelmeerraum brauchen wir Hilfe bei derEntwicklung eines kleinen Audiomixers.Wir brauchen eine kleine Box die folgende Aufgaben erfüllen kann:An Bord befindet sich ein Intercom als auch ein weit...
Dell Monitor
DELL UltraSharp U2720Q (210-AVES) HDR LED-hintergrundbeleuchteter LCD-Monitor 68.47 cm (27") 44 kWh / Jahr Leistungsaufnahme im Ein-Zustand 31.5 Watt IPS 16:9 4K 3840 x 2160 bei 60 Hz Pixeldichte 163 ppi Pixelpitch 0.1554 mm 350 cd/m² 1300:1 8 ...
ffmpeg: create test tone
ffmpeg -f lavfi -i "sine=frequency=997:duration=10:sample_rate=48000" -af "volume=-16dB" -c:a pcm_s24le -ac 2 997Hz.wav frequency: 997 Hz duration: 10 seconds sample rate: 48 kHz bit rate: 24 bit amplitude: -16 dBFS channel: 2
master_me_voc: cmd line
Default settings ffmpeg -hide_banner -i 997Hz.wav -af 'ladspa=file=$HOME/.ladspa/master_me_voc.so:p=master_me_voc:c=c0=0|c1=-16|c2=0.095|c3=55|c4=55|c5=-50|c6=-22|c7=-4|c8=2|c9=150|c10=500|c11=2000|c12=6000|c13=2|c14=0' test.mp3 Available plugins ffmpeg -hi...
spark: search hotkey
I use Spark for os hotkeys. To look for the shortcuts I made a small function: function spark() { `# search for spark shortcuts; no parameter - list all` | cat ~/.dotfiles/spark-hotkeys.txt | grep -i --color=never "$1" || cat ~/.dotfiles/spark-hotkeys.t...
batch - start: "xxx konnte nicht gefunden werden"
start has a odd behaviour. If you have to quote your path of the executable start thinks that this is the given title of the window. The first parameter with quotation marks must be the title of the window. So use "" before the path. @echo off REM "": first ...
XWiki: path to german translation file
Most translations are written here: .\xwiki-platform\xwiki-platform-core\xwiki-platform-oldcore\src\main\resources\ApplicationResources_de.properties
macbook wifi: self assigned ip
If nothing helps to connect with other wifis and it will only assign self ip go to: open /Library/Preferences/SystemConfiguration Delete following files: com.apple.airport.preferences.plist com.apple.network.identification.plist NetworkInterfaces.plist m...
Check passwords
https://passwords.igg.cloud The database contains all passwords that had more than 50 instances in the data set. The first three letters submitted are transmitted to retrieve results, but are not recorded. Passwords presented here independent of all other log...
path to nginx.conf
The path is /usr/local/etc/nginx/nginx.conf Homebrew services path of nginx is /opt/homebrew/etc/nginx/nginx.conf Logfile with Homebrew open /opt/homebrew/var/log/nginx/error.log
finding error logs
You can use lsof (list of open files) in most cases to find open log files without knowing the configuration. Example: Find the PID of httpd (the same concept applies for nginx and other programs): $ ps aux | grep httpd ... root 17970 0.0 0.3 495964...
open link in new tab
Use always: target="_blank" rel="noopener noreferrer" Without attribute rel there is an security issue: https://medium.com/sedeo/how-to-fix-target-blank-a-security-and-performance-issue-in-web-pages-2118eba1ce2f
Updating BookStack
BookStack is updated regularly and is still in beta although we do try to keep the platform and upgrade path as stable as possible. The latest release can be found on GitHub here and detailed information on releases is posted on the BookStack blog here. Befor...
ffmpeg: convert all found files in folder and subfolder
for i in $1/**/*.flac; do ffmpeg -i "$i" "$i".wav done for i in $1/*.flac; do ffmpeg -i "$i" "$i".wav done
git: delete remote branch
To remove a remote branch use: git push origin --delete <branch>
Bash Shell Strict Mode
Let's start with the punchline. Your bash scripts will be more robust, reliable and maintainable if you start them like this: #!/bin/bash set -euo pipefail IFS=$'\n\t' I call this the unofficial bash strict mode. This causes bash to behave in a way that ma...