Just execute the script and paste the .htaccess content from <IfModule mod_rewrite.c> into yours.
Cheers 🎉
| # mssql-agent-fts-ha-tools | |
| # Maintainers: Microsoft Corporation (twright-msft on GitHub) | |
| # GitRepo: https://github.com/Microsoft/mssql-docker | |
| # Base OS layer: Latest Ubuntu LTS | |
| FROM mcr.microsoft.com/mssql-tools | |
| # Install prerequistes since it is needed to get repo config for SQL server | |
| RUN export DEBIAN_FRONTEND=noninteractive && \ | |
| apt-get update && \ |
| <div class="d-flex container-fluid flex-row h-100"> | |
| <div class="navigation m-3"> | |
| <ul class="nav flex-column nav-pills"> | |
| <li class="nav-item" [class.pt-3]="!first" *ngFor="let route of routes; let first = first;"> | |
| <a class="nav-link" routerLinkActive="active" [routerLinkActiveOptions]="{exact:true}" [routerLink]="route.path">{{route.component.name }}</a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="tab container flex-fill h-100 px-0 bg-white border-bottom d-flex flex-column"> |
| 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]); | |
| } |
| ##################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 |
| { | |
| "openapi": "3.1.0", | |
| "info": { | |
| "title": "Spoolman REST API v1", | |
| "version": "1.0.0" | |
| }, | |
| "paths": { | |
| "/info": { | |
| "get": { | |
| "summary": "Info", |
Just execute the script and paste the .htaccess content from <IfModule mod_rewrite.c> into yours.
Cheers 🎉
| - 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 |
| { | |
| "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, |
| ##################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 |
| <?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 --> |