Skip to content

Instantly share code, notes, and snippets.

@brainwo
brainwo / youtubeemoji.csv
Created June 23, 2024 02:46
YouTube Live Chat Emoji
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 9.
"Emoji label","Src"
":hand-pink-waving:","https://yt3.ggpht.com/KOxdr_z3A5h1Gb7kqnxqOCnbZrBmxI2B_tRQ453BhTWUhYAlpg5ZP8IKEBkcvRoY8grY91Q=w24-h24-c-k-nd"
":face-blue-smiling:","https://yt3.ggpht.com/cktIaPxFwnrPwn-alHvnvedHLUJwbHi8HCK3AgbHpphrMAW99qw0bDfxuZagSY5ieE9BBrA=w24-h24-c-k-nd"
":face-red-droopy-eyes:","https://yt3.ggpht.com/oih9s26MOYPWC_uL6tgaeOlXSGBv8MMoDrWzBt-80nEiVSL9nClgnuzUAKqkU9_TWygF6CI=w24-h24-c-k-nd"
":face-purple-crying:","https://yt3.ggpht.com/g6_km98AfdHbN43gvEuNdZ2I07MmzVpArLwEvNBwwPqpZYzszqhRzU_DXALl11TchX5_xFE=w24-h24-c-k-nd"
":text-green-game-over:","https://yt3.ggpht.com/cr36FHhSiMAJUSpO9XzjbOgxhtrdJNTVJUlMJeOOfLOFzKleAKT2SEkZwbqihBqfTXYCIg=w24-h24-c-k-nd"
":person-turqouise-waving:","https://yt3.ggpht.com/uNSzQ2M106OC1L3VGzrOsGNjopboOv-m1bnZKFGuh0DxcceSpYHhYbuyggcgnYyaF3o-AQ=w24-h24-c-k-nd"
":face-green-smiling:","https://yt3.ggpht.com/G061SAfXg2bmG1ZXbJsJzQJpN8qEf_W3f5cb5nwzBYIV58IpPf6H90lElDl85iti3HgoL3o=w24-h24-c-k-nd"
":face-orange-frowning:","https://yt3.ggpht.com/Ar8jaEIxzfiyYm
@brainwo
brainwo / schema.json
Last active April 25, 2024 11:41
Yatta Schema Draft
{
"$id": "https://example.com/person.schema.json",
"$schema": "https://gist.githubusercontent.com/brainwo/7eeddb3b5ae171ed1c86c28df1ff6c01/raw/schema.json",
"title": "Yatta configuration file",
"type": "object",
"properties": {
"minimizedOnLaunch": {
"description": "Launch application in minimized",
"type": "boolean",
"default": false
@brainwo
brainwo / birb.md
Last active April 25, 2024 18:43
Blue Bird Emoji Kitchen Discord emoji Pack

image

@brainwo
brainwo / ibus.csv
Last active August 20, 2023 18:15
IBus open sourced input modules
ibus im spoken lang programming lang
rime chinese c
chewing chinese c and rust
pinyin chinese c++
sunpinyin chinese c++ and c
anthy japanese python
skk japanese vala and c
kkc japanese vala and c
hangul korean c
bamboo vietnamese go
@brainwo
brainwo / material_symbols.csv
Created August 17, 2023 09:50
Material Symbols
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
 10k
 10mp
 11mp
 123
 12mp
 13mp
 14mp
 15mp
 16mp
 17mp
@brainwo
brainwo / .inputrc
Created August 16, 2023 20:27 — forked from erikmchut/.inputrc
My .inputrc with both emacs + vim goodness
# Use Unicode & do NOT use the "8bit hack" to input/output non-ASCII characters
set input-meta on
set output-meta on
set convert-meta off
# Ignore completion case
set completion-ignore-case On
set match-hidden-files Off
set bell-style visible
@brainwo
brainwo / malayindodutch.md
Last active August 13, 2023 14:58
Malaysian vs Indonesian Dutch loanwords
@brainwo
brainwo / color_picker.md
Last active August 2, 2023 14:14
Useful shell recipes

System-wide color picker for Flutter, copied to clipboard

xcolor -c "Color.fromRGBO(%{r}, %{g}, %{b}, 1)" | tr -d '\n' | xclip -selection clipboard
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
@brainwo
brainwo / userscript.js
Last active October 24, 2022 21:42
Tampermonkey change Rust icon color in GitHub
// ==UserScript==
// @name Color
// @version 0.1
// @description Change Rust icon color in GitHub
// @author Brian Wo
// @match https://github.com/*
// ==/UserScript==
(function() {
'use strict';