Skip to content

Instantly share code, notes, and snippets.

View UlyssesWu's full-sized avatar
💤
Learn C++

Ulysses UlyssesWu

💤
Learn C++
View GitHub Profile
@LukeZGD
LukeZGD / NekoparaExtraction.md
Last active October 25, 2025 08:13
Nekopara Data Extraction for Vol. 1, 0, 2, 3, 4, and Extra

Nekopara Data Extraction for Vol. 1, 0, 2, 3, 4, and Extra

  • This guide can also be used in other VNs that have the Kirikiri/CatSystem2 engine

Tools Needed:

@bittner
bittner / keyboard-keys.md
Created February 28, 2019 22:50
Keyboard keys markup in MarkDown

Ctrl + Alt + Space

using System;
using System.Runtime.CompilerServices;
using System.Text;
static class P
{
static unsafe void Main()
{
var arr = new []
{
using System;
using System.Runtime.CompilerServices;
using System.Text;
static class P
{
static void Main()
{
var arr = new []
{
@imba-tjd
imba-tjd / .Cloud.md
Last active July 20, 2026 14:31
☁️ 一些免费的云资源

  • IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装。PaaS提供语言环境和框架(可以自己选)。SaaS只能使用开发好的软件(卖软件本身,如税务会计、表格文字处理)。BaaS一般类似于非关系数据库,但各家不通用
  • 云服务的特点:零前期成本 & 按需付费 & 弹性(类似于租,可随时多加、退掉;但没有残值)、高可用(放在机房中,不同AZ间水电隔离)

如果你想补充内容,建议优先给 free-for-dev 提PR,还能混个高星repo的contributor,没必要加到本列表里。
If you want to make improvements, I would recommend you contributing to free-for-dev rather than this list.

其他人的集合

@BastianBlokland
BastianBlokland / binserialize.md
Last active December 2, 2024 08:47
Span<byte> based binary serialization
MIT License

Copyright (c) 2019 Bastian Blokland

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@jaredpar
jaredpar / evilnames.cs
Created November 5, 2019 00:27
Evil async and await C# code
using System;
using System.Runtime.CompilerServices;
public class C {
async async await(await async) => await async;
}
[AsyncMethodBuilder(typeof(builder))]
class async {
public awaiter GetAwaiter() => throw null;
@natowi
natowi / audio2midi.md
Last active July 6, 2026 14:27
List of open source audio to midi packages
@RickStrahl
RickStrahl / ColorConsole.cs
Last active December 14, 2025 19:50
Color Console - a simple class to add color to .NET Console commands more easily.
using System;
using System.Text;
using System.Text.RegularExpressions;
namespace MainColorConsole
{
class Program
{
static void Main(string[] args)
{