There are 2 registry keys you need to remove.
HKEY_CLASSES_ROOT\Directory\Background\shell\AnyCodeHKEY_CLASSES_ROOT\Directory\shell\AnyCode
| BenchmarkRunner.Run<DistanceBench>(); | |
| [ShortRunJob(RuntimeMoniker.Net90)] | |
| [ShortRunJob(RuntimeMoniker.Net10_0)] | |
| [MemoryDiagnoser] | |
| public class DistanceBench | |
| { | |
| [Params(10_000, 100_000, 1_000_000)] | |
| public int PointCount { get; set; } | |
| private Point[] _points = default!; |
| youtube.com | |
| www.youtube.com | |
| m.youtube.com | |
| ytimg.com | |
| s.ytimg.com | |
| ytimg.l.google.com | |
| youtube.l.google.com | |
| i.google.com | |
| googlevideo.com | |
| youtu.be |
| // Set invariant Culture to get none-localized date format, should be US style. | |
| System.Globalization.CultureInfo.CurrentCulture = CultureInfo.InvariantCulture; | |
| // See format with https://learn.microsoft.com/ja-jp/dotnet/standard/base-types/standard-date-and-time-format-strings | |
| DateTime.Now.Dump("None"); // MM/dd/yyyy HH:mm:ss | |
| DateTime.Now.ToLongDateString().Dump("ToLongDateString"); // DDD dd/MM/yyyy | |
| DateTime.Now.ToString("o").Dump("o"); // yyyy-MM-ddTHH:mm:ss.SSSSSS+O | |
| DateTime.Now.ToString("d").Dump("d"); // dd/MM/yyyy | |
| DateTime.Now.ToString("D").Dump("D"); // DDD, dd MM yyyy | |
| DateTime.Now.ToString("f").Dump("f"); // DDD, dd MM yyyy HH:mm |
| # stop correct for LLM | |
| unsetopt correct_all | |
| unsetopt correct | |
| export ENABLE_CORRECTION="false" |
| BenchmarkRunner.Run<Bencmarks>(); | |
| [HideColumns(Column.Job, Column.RatioSD, Column.AllocRatio)] | |
| [ShortRunJob(RuntimeMoniker.Net80)] | |
| [ShortRunJob(RuntimeMoniker.Net90)] | |
| [MemoryDiagnoser] | |
| [ReturnValueValidator(failOnError: true)] | |
| public class Bencmarks | |
| { | |
| private List<Unit> _list; |
| var draftBasePath = @"{YOUR_GITHUB_PATH}/blogdraft_entries\"; | |
| var basePath = @"{YOUR_GITHUB_PATH}/entries/{YOUR_ACCOUNT}.hatenablog.com/entry/"; | |
| var targetMonths = new[] { | |
| // 持ってきたい日付を並べる | |
| "2025/03" | |
| }; | |
| var titlePattern = new Regex("201[2,3]/[0-9]{2}/[0-9]{2}/[0-9]{6}", RegexOptions.Compiled); | |
| var drafts = Directory.EnumerateFiles(draftBasePath, "*.md"); | |
| foreach (var draft in drafts) |
| マークダウンの表示用テキスト | |
| # 見出し1 | |
| ## 見出し2 | |
| ### 見出し3 | |
| #### 見出し4 |
| // ConsoleAppFramework v4 | |
| using ConsoleAppFramework; | |
| // # OK | |
| // # Output: foo | |
| // args = ["--msg", "foo"]; | |
| // # OK | |
| // # Output: foo--hello bar |
| using System.Collections.Concurrent; | |
| using System.Text.Json; | |
| using System.Text.Json.Serialization; | |
| using System.Xml.Linq; | |
| var path = @"output.json"; | |
| var bytes = File.ReadAllText(path); | |
| var packages = JsonSerializer.Deserialize<DotnetCliListPackages>(bytes); | |
| ArgumentNullException.ThrowIfNull(packages); | |
| var licenses = new ConcurrentBag<DotnetLicense>(); |