See my other guides for SSL certificates on Pi-hole v6:
Pi-hole v6 introduces changes to its web server:
- Embedded Web Server – Pi-hole no longer relies on
lighttpd.
See my other guides for SSL certificates on Pi-hole v6:
Pi-hole v6 introduces changes to its web server:
lighttpd.| # Note: can also just install nerdctl-full | |
| sudo apt-get update | |
| sudo apt-get install containerd | |
| wget https://github.com/containerd/nerdctl/releases/download/v1.5.0/nerdctl-1.5.0-linux-amd64.tar.gz | |
| tar -zxf nerdctl-1.5.0-linux-amd64.tar.gz nerdctl | |
| sudo mv nerdctl /usr/bin/nerdctl | |
| rm nerdctl-1.5.0-linux-amd64.tar.gz |
| # Install WIX toolset | |
| Import-Module "C:\Program Files (x86)\WiX Toolset v3.11\bin\Microsoft.Deployment.Compression.dll" | |
| Import-Module "C:\Program Files (x86)\WiX Toolset v3.11\bin\\Microsoft.Deployment.Compression.Cab.dll" | |
| $cab = New-Object Microsoft.Deployment.Compression.Cab.Cabinfo "$home\Downloads\file\dotnet-sdk-5.0.404-win-x64_a943fac999a30b3eb83580112b793d37de0c0700.exe" | |
| $cab.UnpackFile("0","C:\temp\0.xml") | |
| $a = [xml](Get-Content "C:\temp\0.xml") | |
| $guid = [guid]$a.BurnManifest.Registration.Id |
| function Set-TaskbarIconSize { | |
| # Sets the windows 11 task bar icon size. Default value is medium. | |
| [CmdletBinding()] | |
| param( | |
| [validateset("small", "medium", "large")] | |
| [string]$Size = "medium" | |
| ) | |
| $sizeChart = @{ | |
| "small" = 0 | |
| "medium" = 1 |
| AWSTemplateFormatVersion: "2010-09-09" | |
| Description: > | |
| https://twitch.tv/ruptwelve | |
| Parameters: | |
| EnvName: | |
| Type: String | |
| Description: Enter the name for your IDE | |
| Default: please-change-me | |
| Resources: | |
| Oblak9: |
| AWSTemplateFormatVersion: "2010-09-09" | |
| Description: > | |
| https://twitch.tv/ruptwelve | |
| Parameters: | |
| RepoName: | |
| Type: String | |
| Description: Enter the name for your repository | |
| Default: please-change-me | |
| Resources: | |
| MyGitHubRepo: |
| import sys, os, base64, datetime, hashlib, hmac | |
| import requests | |
| import json | |
| from typing import * | |
| # based on the example python code found here: | |
| # https://docs.aws.amazon.com/general/latest/gr/sigv4-signed-request-examples.html | |
| # call this method to query all items for a given primary hash key in a table | |
| # endpoint: the DynamoDB endpoint to query (for AWS servers, this is "https://dynamodb.{region}.amazonaws.com/") |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: > | |
| Sample SAM Template using Application Auto Scaling + Provisioned Concurrency | |
| Globals: | |
| Function: | |
| Timeout: 30 |
| AWSTemplateFormatVersion: "2010-09-09" | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: > | |
| your-api | |
| SAM Template for your API | |
| Globals: | |
| Api: | |
| Cors: |
| using namespace System.Management.Automation | |
| using namespace System.Text | |
| class PSTextEncodingConverter : PSTypeConverter { | |
| hidden | |
| [hashtable] | |
| $ConversionTable = @{ | |
| 'ASCII' = [System.Text.Encoding]::ASCII | |
| 'ANSI' = [System.Text.Encoding]::ASCII | |