Skip to content

Instantly share code, notes, and snippets.

View neuecc's full-sized avatar

Yoshifumi Kawai neuecc

View GitHub Profile
@voluntas
voluntas / shiguredo_tech.rst
Last active March 15, 2025 00:17
時雨堂を支える技術

時雨堂を支える技術

日時:2025-03-15
作:時雨堂
バージョン:2025.2
URL:https://shiguredo.jp/

時雨堂クラウドサービスを支える技術

@staltz
staltz / introrx.md
Last active April 29, 2025 08:33
The introduction to Reactive Programming you've been missing
@AArnott
AArnott / StaticFuncWithArgExaminer.cs
Created August 21, 2014 21:21
Creating a static method that accepts a first argument supplied by the delegate.
namespace ILExaminer
{
using System;
static class Program
{
internal static Func<T> AsFunc<T>(this T value)
where T : class
{
return new Func<T>(value.Return);