Skip to content

Instantly share code, notes, and snippets.

@aetos382
aetos382 / AspNetCore1.cs
Last active February 28, 2024 16:15
ASP.NET Core の Program.cs の書き方の変遷
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
new WebHostBuilder()
.ConfigureServices(static services =>
{
})
.Configure(static app =>
{
app.Use(static _ => static context => context.Response.WriteAsync("Hello, ASP.NET Core 1"));
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingPlainTextForPassword', 'AppPassword')]
param(
[Parameter(Mandatory)]
[string] $AccountHandle,
[Parameter(Mandatory)]
[string] $AppPassword)
function New-HashTag {
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingPlainTextForPassword', 'AppPassword')]
param(
[Parameter(Mandatory)]
[string] $AccountHandle,
[Parameter(Mandatory)]
[string] $AppPassword)
Set-StrictMode -Version Latest
static int GetPoemNumber(
string poem)
{
return poem switch
{
"あきのたのかりほのいほのとまをあらみわがころもではつゆにぬれつつ" => 1,
"はるすぎてなつきにけらししろたへのころもほすてふあまのかぐやま" => 2,
"あしびきのやまどりのをのしだりをのながながしよをひとりかもねむ" => 3,
"たごのうらにうちいでてみればしろたへのふじのたかねにゆきはふりつつ" => 4,
"おくやまにもみぢふみわけなくしかのこゑきくときぞあきはかなしき" => 5,
using System;
using System.Collections.Generic;
using System.Linq;
const int MaxAttempts = 100;
foreach (var s in GenerateDdsk().DoWhile(x => !x.LoveInjected).Take(MaxAttempts).Select(x => x.Ddsk))
{
Console.WriteLine(s);
}
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb mirror+http://mirrors.ubuntu.com/mirrors.txt focal main restricted
# deb-src mirror+http://mirrors.ubuntu.com/mirrors.txt focal main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb mirror+http://mirrors.ubuntu.com/mirrors.txt focal-updates main restricted
# deb-src mirror+http://mirrors.ubuntu.com/mirrors.txt focal-updates main restricted
Array.prototype.forEach.call(document.querySelectorAll('.webcatalog-favorite-dialog-color input[value="1"]'), (e) => e.click())
Import-Module -Name PowerShellGet
Update-FormatData -AppendPath (Join-Path -Path $PSScriptRoot -ChildPath '.\InstalledModule.format.ps1xml')
function Get-InstalledModule {
<#
.ForwardHelpTargetName PowerShellGet\Get-InstalledModule
#>