Skip to content

Instantly share code, notes, and snippets.

View binki's full-sized avatar

Nathan Phillip Brink binki

View GitHub Profile
@binki
binki / pork-cutlet-tonkatsu.md
Last active October 1, 2020 14:37
Pork Cutlet (tonkatsu 豚カツ)

Source: unknown, posted by 김예본 in the cooking party Kakaotalk channel.

Ingredients

  • 450g (1lb) thin cut pork chops
  • salt
  • ground black pepper
  • small amount of red wine (rice wine/mirin would work)
  • 1 tbsp minced ginger
  • 2 eggs
@binki
binki / marbled-pound-cake.md
Last active November 12, 2020 15:11
Marbled Pound Cake Recipe (Americanized from Rasa Malaysia)

Binki’s Top Ten Waifus

I am not sure about this list. I just had to get started and get something out there, so here it is.

  1. Kagura-chan from Gintama Kagura-chan
  2. Sakura Mamiya from RIN-NE Mamiya Sakura
  3. Haruhi Suzumiya
  4. Rukia from Bleach
  5. Hitagi Senjougahara-san from Monogatari series
@binki
binki / kimchi-fried-rice.md
Last active March 26, 2024 02:55
kimchi fried rice

Ingredients

  • 1 servings cooked rice (each serving is made from 0.75 cup uncooked rice).
  • 1 cup kimchi
  • 1 onion
  • 1 stalk green onion
  • 1 tbsp gochugaru
  • 1.5 tsp soy sauce
  • 1 tbsp rice syrup (halve to make hotter)
  • 0.5lb meat such as chicken, spam (optional)

Source: posted by Kim Hansol in Katok, originally from David Kong(?), originally from https://www.chopsticksandflour.com/baek-jong-won-spicy-braised-pork-ribs/ ???

Ingredients

  • 4lb pork ribs (one pack—usually $12 at meijer)
  • Kimchi (1:1 with pork; usually my 4 handfuls)
  • 1 tbsp vinegar if using young kimchi (if using aged kimchi, omit)
  • Onion 1 large/2 small (Yellow the best)
  • Red pepper flakes (gochugaru) 2-3 tbsp
  • soy sauce 2 tbsp
  • sugar 2 tbsp
@binki
binki / 떡볶이-recipe.md
Last active October 24, 2022 00:11
떡볶이 (ddeokbokki) recipe from 김한솔

Source: transcript from a discord channel

Ingredients

Main

  • 1lb (450g) Rice cakes (1.5in long (thumb length)) (I tried 300g once but there was too much sauce)
  • 0.33lb (150g) fish cakes (4×4in 2.5 layers?—half as much as there is ddeok)
  • 1 onion
  • 1 carrot
  • 1 cup sliced cabbage (optional)
@binki
binki / discord-refocus-binki.user.js
Last active November 12, 2020 15:14
Discord Refocus Binki
// ==UserScript==
// @name discord-refocus-binki
// @namespace https://gist.github.com/binki/4dcbb7e47f18d17fcc4fc898af46e871
// @version 1
// @grant none
// @match https://discordapp.com/*
// @description Make Discord blink the input textbox upon being refocused (it seems unsafe to type at a window without a blinking cursor).
// ==/UserScript==
// Discord does this weird thing where it stops the cursor from blinking in the input textbox if
@binki
binki / szechuan-chicken-recipe.md
Last active March 22, 2020 08:33
Szechuan Chicken Recipe
@binki
binki / carbonara.md
Last active September 9, 2021 02:14
Carbonara (Modern wth Garlic)

Modern Carbonara

Source: The second half, modern, from https://youtube.com/watch?v=qoHnwOHLiMk

Ingredients

  • 1 cup grated parmesan cheese (about a third of an 8oz wedge (i.e., 2⅔oz ungrated cheese) becomes a cup when grated).
  • ½ cup grated Romano cheese (so get 1+1/3oz ungrated cheese).
  • 3 eggs
  • 1 egg yolk (for a total of 4 egg yolks and 3 egg whites)
  • ½ tsp ground black pepper
@binki
binki / FuncUtil.cs
Last active December 12, 2019 18:55
AsyncEx-3.0.1 AsyncConditionVariable deadlock repro
using System;
namespace AsyncExAsyncProducerConsumerQueueDeadlock
{
class FuncUtil
{
public static T Invoke<T>(Func<T> func) => func();
}
}