Hold key combo for pairing mode.
- Bluetooth device 1:
Fn + 1 - Bluetooth device 2:
Fn + 2 - Bluetooth device 3:
Fn + 3 - 2.4GHz device:
Fn + 4
- Change effect:
Fn + ←
| #!/bin/bash | |
| ############################################# | |
| # WordPress Standard-Installation Script | |
| # Für all-inkl Hosting mit WP CLI | |
| # Version: 3.1 - Multiple Fonts & Colors | |
| ############################################# | |
| # Farbcodes für Ausgabe | |
| RED='\033[0;31m' |
| Name | Input | Output | |
|---|---|---|---|
| Gemini 2.0 Flash-Lite | $0.075 | $0.30 | |
| Mistral 3.1 Small | $0.10 | $0.30 | |
| Gemini 2.0 Flash | $0.10 | $0.40 | |
| ChatGPT 4.1-nano | $0.10 | $0.40 | |
| DeepSeek v3 (old) | $0.14 | $0.28 | |
| ChatGPT 4o-mini | $0.15 | $0.60 | |
| Gemini 2.5 Flash | $0.15 | $0.60 | |
| DeepSeek v3 | $0.27 | $1.10 | |
| Grok 3-mini | $0.30 | $0.50 |
| { | |
| "shorty": { | |
| "prefix": "shorty", | |
| "body": [ | |
| "function ${2:function_name}(\\$atts, \\$content = null) {", | |
| "\t\\$a = shortcode_atts([", | |
| "\t\t'title'\t=> 'My Title',", | |
| "\t\t'class'\t=> 'myClass'", | |
| "\t], \\$atts);", | |
| "\t\\$return_string = '';", |
| { | |
| // Place your snippets for scss here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: | |
| // "Print to console": { | |
| // "prefix": "log", | |
| // "body": [ | |
| // "console.log('$1');", |
| #region Allow .svg files | |
| function nxt_allow_svg($mimes) { | |
| $mimes['svg'] = 'image/svg+xml'; | |
| return $mimes; | |
| } | |
| add_filter('upload_mimes', 'nxt_allow_svg'); | |
| function nxt_really_allow_svg($checked, $file, $filename, $mimes){ | |
| if(!$checked['type']){ | |
| $wp_filetype = wp_check_filetype( $filename, $mimes ); |
Preview:
Download Flutter SDK, extract the "Flutter" folder and put somewhere on your machine https://flutter.dev/docs/get-started/install
Add path for 'location/flutter/bin'
| #! /bin/bash | |
| # ECHO COMMAND | |
| # echo Hello World! | |
| # VARIABLES | |
| # Uppercase by convention | |
| # Letters, numbers, underscores | |
| NAME="Bob" | |
| # echo "My name is $NAME" |