You may have several git repos that you want to combine into a single git repo. Here is how you can accomplish this using git subtree...
1. Create a new empty git repo.
mkdir monorepo
cd monorepo
git initYou may have several git repos that you want to combine into a single git repo. Here is how you can accomplish this using git subtree...
1. Create a new empty git repo.
mkdir monorepo
cd monorepo
git initAfter looking for alternatves to the suggested Router from Telekom (AVM FritzBox and HUawei Speedport), I've discovered the possibility of configuring my existing OpenWRT Router to act as gateway to the Telekom FTTH (Fiber To The Home) Magenta Zuhause package.
The WAN interface must be configured as follows (see your Telekom letter):
PPPoE| { stdenv, lib, bash, callPackage, writeText, makeWrapper, writeScript, dotnet-sdk, | |
| patchelf, libunwind, coreclr, libuuid, curl, zlib, icu }: | |
| let | |
| config = "Staging"; | |
| project = "RazorCx.Api"; | |
| target = "linux-x64"; | |
| rpath = stdenv.lib.makeLibraryPath [ libunwind coreclr libuuid stdenv.cc.cc curl zlib icu ]; |
| <# | |
| .SYNOPSIS | |
| This script searches for certificates by thumbprint or issuer, exports them to Base-64 encoded .crt files, and optionally installs them in WSL. | |
| .DESCRIPTION | |
| The script searches for certificates with the specified thumbprints or issuers. If found, it exports the certificates to Base-64 encoded .crt files. The script can also install the certificates in WSL if the --install parameter is provided. | |
| .PARAMETER Thumbprint | |
| The thumbprints of the certificates to search for. Default is an array of predefined thumbprints. |
| <# | |
| .SYNOPSIS | |
| This script searches for certificates with a specific description pattern, exports them, installs them in WSL, and checks the response using curl. | |
| .DESCRIPTION | |
| The script searches for certificates with a specific description pattern. It exports each certificate, installs them in WSL, and checks the response using curl. If the response is not correct, it tries the next certificate from the results. If the list is exhausted and WSL still responds with an incorrect answer, it throws an error. | |
| .PARAMETER DescriptionPattern | |
| The pattern to search for in the certificate description. Default is "CA". |
"cocotte bag": exact match"* is thicker than water": * to replace a phrase inside exact matchjaguar -car: minus to filter out matchessite:time.com google: search on site, you don't need '.', e.g. 'site:gov'define:bae: check definition, even for slang$0..$50: numeric range (ignore $)"inbound marketing" ~professional: synonymsrelated:nationalgeographic.com: similar sites| function Set-CaCertsBundles { | |
| [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Medium')] | |
| param( | |
| [Parameter(HelpMessage = 'Environment variable target')] | |
| [ValidateScript({ $_ -ne [System.EnvironmentVariableTarget]::Machine -or ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) }, ErrorMessage = 'Cannot set machine environment variables without admin privileges')] | |
| [ArgumentCompleter({ [System.Enum]::GetNames([System.EnvironmentVariableTarget]) })] | |
| [System.EnvironmentVariableTarget] | |
| $Target = ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator) ? [System.EnvironmentVariableTarget]::Machine : [System.EnvironmentVariableTarget]::User, | |
| [Parameter(HelpMessage = 'Output file path')] | |
| [string] |
| { config, pkgs, modulesPath, lib, system, ... }: | |
| { | |
| imports = [ | |
| (modulesPath + "/profiles/qemu-guest.nix") | |
| ]; | |
| config = { | |
| #Provide a default hostname | |
| networking.hostName = lib.mkDefault "base"; |
GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.
For more information, visit our search help section.