This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This list was compiled from https://web.archive.org/web/20230911135706/https://docs.docker.com/desktop/release-notes/, retrieved on 2024-05-24 | |
The information may not be correct in all cases, or may have changed since archive.org archived the page. At time of posting, I spot-checked a few links and they appeared to be good, but really, all I've done is copied, pasted, and visually formatted the information I found on archive.org, so no warrantee that it's good. | |
If the download links don't work, sometimes archive.org has the download archive, and you can try adding https://web.archive.org/web/20230911135706/ to the beginning of the URL. For instance, as of this writing, the 4.22.1 Windows download is available from archive.org https://web.archive.org/web/20230911135706/https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe as well as the normal web link at https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe. | |
Self-promotion: Michael Kupietz • Software Solutions fo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# diff all | |
###WARNING: NO CUSTOM DEFAULTS FOUND### | |
# version | |
# Betaflight / STM32F411 (S411) 4.1.0 Oct 16 2019 / 11:57:34 (c37a7c91a) MSP API: 1.42 | |
# manufacturer_id: MTKS board_name: MATEKF411RX custom defaults: NO | |
# start the command batch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static string TripleEncodeSymbol(this string input, string targetSymbol, string firstSymbol = "$", string secondSymbol = "Z") | |
{ | |
if (targetSymbol == firstSymbol) | |
throw new ArgumentOutOfRangeException($"{nameof(targetSymbol)} can't be equal {nameof(firstSymbol)}"); | |
if (targetSymbol == secondSymbol) | |
throw new ArgumentOutOfRangeException($"{nameof(targetSymbol)} can't be equal {nameof(secondSymbol)}"); | |
//return input.Replace("$", "$$$").Replace("Z", "$$Z").Replace(":", "$ZZ"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Context, Plugin } from "@nuxt/types"; | |
import Vue from "vue"; | |
import { defineStore, PiniaPluginContext } from "pinia"; | |
import { ref, set } from "@nuxtjs/composition-api"; | |
export const useAuthStore = defineStore({ | |
id: "auth", | |
state: () => ({ | |
busy: false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<PropertyGroup Label="Assembly Versioning"> | |
<VersionMajor>1</VersionMajor> | |
<VersionMinor>0</VersionMinor> | |
<Build>$([System.DateTime]::Now.Date.Subtract($([System.DateTime]::Parse(`2000-01-01`))).TotalDays)</Build> | |
<Revision>$([System.Convert]::ToUInt16( $([MSBuild]::Divide($([System.DateTime]::Now.TimeOfDay.TotalSeconds), 2 )) ))</Revision> | |
<AssemblyVersion>$(VersionMajor).$(VersionMinor).$(Build).$(Revision)</AssemblyVersion> | |
<FileVersion>$(AssemblyVersion)</FileVersion> | |
<InformationalVersion>$(AssemblyVersion)-preview</InformationalVersion> | |
</PropertyGroup> |