Just execute the script and paste the .htaccess content from <IfModule mod_rewrite.c>
into yours.
Cheers 🎉
<?xml version="1.0"?> | |
<ServerSettings> | |
<!-- GENERAL SERVER SETTINGS --> | |
<!-- Server representation --> | |
<property name="ServerName" value="Disano"/> <!-- Whatever you want the name of the server to be. --> | |
<property name="ServerDescription" value="A 7 Days to Die server"/> <!-- Whatever you want the server description to be, will be shown in the server browser. --> | |
<property name="ServerWebsiteURL" value=""/> <!-- Website URL for the server, will be shown in the serverbrowser as a clickable link --> | |
<property name="ServerPassword" value=""/> <!-- Password to gain entry to the server --> | |
<property name="ServerLoginConfirmationText" value="" /> <!-- If set the user will see the message during joining the server and has to confirm it before continuing. For more complex changes to this window you can change the "serverjoinrulesdialog" window in XUi --> |
alias: 🌊 Wetterwarnung DWD | |
description: "" | |
trigger: | |
- platform: numeric_state | |
entity_id: sensor.kreis_viersen_current_warning_level | |
above: 0 | |
condition: [] | |
action: | |
- service: notify.notify | |
data: |
##################Creality Ender 3 S1 Klipper Config - 3DPrintBeginner################### | |
######Full guide: https://3dprintbeginner.com/how-to-install-klipper-on-ender-3-s1/###### | |
[stepper_x] | |
step_pin: PC2 | |
dir_pin: PB9 | |
enable_pin: !PC3 | |
microsteps: 16 | |
rotation_distance: 40 | |
endstop_pin: !PA5 |
{ | |
"name": "Create Voice Synth with ElevenLabs", | |
"nodes": [ | |
{ | |
"parameters": { | |
"method": "POST", | |
"url": "https://api.elevenlabs.io/v1/text-to-speech/pNInz6obpgDQGcFmaJgB", | |
"authentication": "genericCredentialType", | |
"genericAuthType": "httpHeaderAuth", | |
"sendQuery": true, |
- title: Solar | |
path: solar | |
icon: mdi:solar-power-variant | |
badges: [] | |
cards: | |
- type: vertical-stack | |
cards: | |
- type: custom:mushroom-title-card | |
title: Unterstand | |
- type: horizontal-stack |
Just execute the script and paste the .htaccess content from <IfModule mod_rewrite.c>
into yours.
Cheers 🎉
{ | |
"openapi": "3.1.0", | |
"info": { | |
"title": "Spoolman REST API v1", | |
"version": "1.0.0" | |
}, | |
"paths": { | |
"/info": { | |
"get": { | |
"summary": "Info", |
##################Creality Ender 3 S1 Klipper Config - 3DPrintBeginner################### | |
######Full guide: https://3dprintbeginner.com/how-to-install-klipper-on-ender-3-s1/###### | |
[stepper_x] | |
step_pin: PC2 | |
dir_pin: PB9 | |
enable_pin: !PC3 | |
microsteps: 16 | |
rotation_distance: 40 | |
endstop_pin: !PA5 |
import { Module } from '@nestjs/common'; | |
import { AppController } from './app.controller'; | |
import { AppService } from './app.service'; | |
import { PluginModule } from './plugin/plugin.module'; | |
@Module({ | |
imports: [PluginModule.registerPluginsAsync()], | |
controllers: [AppController], | |
providers: [AppService], | |
}) |
type FlattenIfArray<T> = T extends (infer R)[] ? R : T; | |
interface Array<T> { | |
orderBy<K extends keyof FlattenIfArray<T>>(key: K): Array<any>; | |
} | |
Array.prototype.orderBy = function<K>(key: K): Array<any> { | |
return this.sort((a: any, b: any) => a[key] - b[key]); | |
} |