Hello I am a single paragraph
I am another paragraph. There are no line breaks in me.
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using YamlDotNet.Core; | |
using YamlDotNet.Core.Events; | |
using YamlDotNet.Serialization; | |
using YamlDotNet.Serialization.NodeDeserializers; | |
namespace Egret.Cli.Models | |
{ |
using System; | |
using System.IO; | |
using SixLabors.Fonts; | |
using SixLabors.ImageSharp; | |
using SixLabors.ImageSharp.PixelFormats; | |
using SixLabors.ImageSharp.Processing; | |
using Color = SixLabors.ImageSharp.Color; | |
using Pen = SixLabors.ImageSharp.Processing.Pen; | |
namespace ImageSharpTests |
using SixLabors.ImageSharp; | |
using SixLabors.ImageSharp.Drawing.Processing; | |
using SixLabors.ImageSharp.Processing; | |
using SkiaSharp; | |
using System; | |
using System.IO; | |
namespace ConsoleApp1 |
Hello I am a single paragraph
I am another paragraph. There are no line breaks in me.
let id = (x: number) => x; | |
let param = (x: string) => x; | |
type ParamType<T> = T extends (arg: infer R) => any ? R : never; | |
/** | |
* Templates a string by substituting placeholders for tokens later in execution. | |
* It is designed to work as the tag function for tagged interpolated strings. | |
* @returns A reusable template function that is statically checked for arity and |
#NoEnv | |
#SingleInstance force | |
SendMode Input | |
DetectHiddenWindows, on | |
SetWinDelay, 0 | |
#`:: | |
terminal := WinExist("ahk_exe WindowsTerminal.exe") | |
if (terminal) | |
{ |
empty |
UTC: 2024-11-16 00:06 atruskie/chocolatey-packages-new
This file is automatically generated by the update_all.ps1 script using the AU module.
I'm testing file transfer methods (particularly to a SFTP remote).
In particular FileZilla does not detect corrupted files.
Use the above script to corrupt a remote file as a test.
If you are transferring files with rclone (https://rclone.org/)
using the --checksums
argument it will detect the fault and re-transfer
the corrupt file.
/// MIT License | |
/// Copyright (c) 2017 Anthony Truskinger | |
/// | |
/// Permission is hereby granted, free of charge, to any person obtaining a copy | |
/// of this software and associated documentation files (the "Software"), to deal | |
/// in the Software without restriction, including without limitation the rights | |
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
/// copies of the Software, and to permit persons to whom the Software is | |
/// furnished to do so, subject to the following conditions: | |
/// |