Skip to content

Instantly share code, notes, and snippets.

View KooShnoo's full-sized avatar

KooShnoo

  • 19:42 (UTC -07:00)
View GitHub Profile

Prepare build tools

  1. Install brew
  2. brew install git git-lfs cmake meson ninja

Download blender and dependencies

  1. cd ~
  2. git clone https://projects.blender.org/blender/blender.git --depth=1
  3. cd blender
  4. git checkout tags/v5.0.1 Optionally checkout v5.0.1 for stability
  5. cd lib
@leoetlino
leoetlino / nnMain_150.cpp
Created April 26, 2019 11:17
BotW nnMain 1.5.0 vs 1.6.0
void nnMain()
{
// [COLLAPSED LOCAL DECLARATIONS. PRESS KEYPAD CTRL-"+" TO EXPAND]
sead::system::Print("0000002d\n"); // version number. 0x10 in 1.0.0
Profiler::Push("起動時間");
Profiler::Push("main");
_WriteStatusReg(FPCR, _ReadStatusReg(FPCR) | 0x1000000);
@chrisdone
chrisdone / Printf.idr
Last active May 27, 2024 13:01
Type-safe dependently-typed printf in Idris
module Printf
%default total
-- Formatting AST.
data Format
= FInt Format
| FString Format
| FOther Char Format
| FEnd