高円寺の南のほうのあたりで、ちょっとした新築共同住宅プロジェクトを立ち上げてみたいと思っています。つきましては、このプロジェクトの趣旨とノリに賛同してくださって居住してくださる方をふわっと募集します。
最近、高円寺の南のほうのあたりに築古賃貸物件を買ってみました。物件概要はざっくり以下のような感じです。
- 立地: 丸の内線東高円寺駅徒歩5分、JR中央線中野駅徒歩12分(Google調べ)
- 地積: 110平米と120平米の間ぐらい
- 建物: 築およそ30年の2階建て木造アパートを賃貸運用中
| # https://support.google.com/a/answer/6214622?hl=en#zippy=%2Coption-dns | |
| # CNAME to restrict.youtube.com | |
| www.youtube.com | |
| m.youtube.com | |
| youtubei.googleapis.com | |
| youtube.googleapis.com | |
| www.youtube-nocookie.com |
| using System; | |
| using System.IO; | |
| using System.Text; | |
| using System.Text.Json; | |
| // need System.Text.Json 9.0 or later | |
| namespace jsonserializertest | |
| { | |
| class Program |
| // PdqSort: https://github.com/orlp/pdqsort | |
| using System.Numerics; | |
| using System.Runtime.CompilerServices; | |
| using System.Runtime.InteropServices; | |
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Configs; | |
| using BenchmarkDotNet.Environments; | |
| using BenchmarkDotNet.Jobs; | |
| using BenchmarkDotNet.Running; |
| using System.Runtime.CompilerServices; | |
| using static ParsingExtensions; | |
| string input = "Name: Andrew; Age: 31"; | |
| string? name = null; | |
| int age = 0; | |
| if (input.TryParse($"Name: {Placeholder(ref name)}; Age: {Placeholder(ref age)}")) | |
| { |
The following are examples of various features.
| #Requires -Version 7.0 | |
| Set-StrictMode -Version Latest | |
| function CreateSubCommand { | |
| param ( | |
| $prof, | |
| [bool]$admin | |
| ) | |
| $regKeyName = $prof.guid |
| # https://github.com/secretlint/secretlint | |
| name: secretlint | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['**'] | |
| jobs: |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Reflection; | |
| using System.Text; | |
| namespace Cysharp.Reflection | |
| { | |
| public static class DiffUtil |