wsl --debug-shellps aux --sort=-%cpu | head -4| curl -sSL https://strix.ai/install | bash | |
| export STRIX_LLM="openai/gpt-5.4" | |
| export LLM_API_KEY="..." | |
| export LLM_API_BASE="..." | |
| export STRIX_REASONING_EFFORT="high" | |
| strix --target /var/www/path/to/dir |
| <!doctype html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>glow</title> | |
| <style> | |
| /* boilerplate */ | |
| * { | |
| box-sizing: border-box; |
| composer global require vildanbina/composer-upgrader | |
| composer upgrade-all | |
| composer update | |
| composer outdated -D --direct |
| <?php | |
| // smtp microsoft 365 exchange support | |
| add_filter( | |
| 'pre_wp_mail', | |
| function ($pre_wp_mail, $attributes) { | |
| $from_email = 'noreply@vielhuber.de'; | |
| $mailhelper = new \vielhuber\mailhelper\mailhelper([ | |
| $from_email => [ | |
| 'smtp' => [ | |
| 'host' => 'smtp.office365.com', |
| # auto switch | |
| find_up() { | |
| local file="$1" | |
| local dir="$PWD" | |
| while [[ "$dir" != "/" ]]; do | |
| if [[ -f "$dir/$file" ]]; then | |
| echo "$dir/$file" | |
| return 0 | |
| fi | |
| dir="$(dirname "$dir")" |