BenchmarkDotNet=v0.13.2, OS=Windows 11 (10.0.22622.601)
AMD Ryzen 7 5800H with Radeon Graphics, 1 CPU, 16 logical and 8 physical cores
.NET SDK=6.0.401
[Host] : .NET 6.0.9 (6.0.922.41905), X64 RyuJIT AVX2
DefaultJob : .NET 6.0.9 (6.0.922.41905), X64 RyuJIT AVX2
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
[*.cs] | |
csharp_new_line_before_catch = false | |
csharp_new_line_before_else = false | |
csharp_new_line_before_finally = false | |
csharp_new_line_before_members_in_anonymous_types = false | |
csharp_new_line_before_members_in_object_initializers = false | |
csharp_new_line_before_open_brace = none | |
csharp_new_line_between_query_expression_clauses = 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
using System.Linq.Expressions; | |
using Shouldly; | |
R a = new( | |
new int[] { 0 }, | |
new uint[] { 1 }, | |
new short[] { 2 }, | |
new ushort[] { 3 }, | |
new sbyte[] { 4 }, | |
new byte[] { 5 } |
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
"use strict"; | |
let looper = (callback) => { | |
let n = 2000000; | |
while (n > 0) { | |
callback(n); | |
n--; | |
} | |
}; |
- Windows Server 2019
- Microsoft-IIS/10.0 - home directory: C:\inetpub\wwwroot
- php-8.0.3-nts-Win32-vs16-x64 - install directory: C:\php
- mariadb-10.5.9-winx64
- phpMyAdmin-5.1.0-all-languages
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
.wiki-heading__collapsible { | |
cursor: pointer; | |
/* border-bottom: 1px solid #000; */ | |
} | |
.wiki-heading__collapsible::before { | |
content: '^'; | |
display: inline-block; | |
transform: translateY(-5%) rotate(180deg); | |
font-weight: 100; | |
filter: opacity(0.5); |
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
안녕하세요. 저는 BMS 난이도표 "Stella"를 관리하고 있는 LUXURY입니다. | |
다름이 아니오라, BMS 플랫폼에서 만들어진 컨텐츠를 무단도용 한 건에 대해 | |
osu의 관리자 peppy씨에게 저작권 침해 신고를 하였습니다. | |
이와 관련해 삭제를 승인한 상태입니다. | |
참고링크: | |
https://gist.githubusercontent.com/peppy/84402555f291eff47c257dde348e2090/raw |
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
#include <vector> | |
#include <set> | |
#include <string> | |
#include <iostream> | |
#include <map> | |
#include <tuple> | |
#include <utility> | |
#include <cctype> | |
#include <queue> | |
#include <algorithm> |
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
<!DOCTYPE html> | |
<html lang="ko" class="min-vh-100"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>계산기</title> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
</head> | |
<body class="min-vh-100"> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<rewrite> | |
<rules> | |
<!-- SEO Rules --> | |
<rule name="StripSlashes" stopProcessing="true"> | |
<conditions> | |
<add input="{UNENCODED_URL}" pattern="^([^\?]*)//(.*)" /> | |
</conditions> |
NewerOlder