Skip to content

Instantly share code, notes, and snippets.

View dance2die's full-sized avatar
🐰
Working

Sung M. Kim dance2die

🐰
Working
View GitHub Profile
@dance2die
dance2die / TamperMonkey - Expand all TeamBlind.com comments.js
Created March 19, 2023 22:09
Expand all TeamBlind.com comemnts on load because nobody got time to click on "more" button
// ==UserScript==
// @name Team Blind - Expand all comments
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Expand all comments on load on TeamBlind.com
// @author You
// @match https://www.teamblind.com/post/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
@dance2die
dance2die / 1. TL;DR.md
Last active June 20, 2022 02:25
A new INK project with "create-ink-app"

Set up an INK project

# Create a folder
mkdir ink3

# Go to the folder
cd ink3

# Create the ink project
@dance2die
dance2die / 01 - autoguluon.md
Last active June 5, 2022 16:29
AWS autoguluon setup troubleshoot

Installation with official doc

https://auto.gluon.ai/stable/index.html#

pip3 install -U pip
pip3 install -U setuptools wheel

# CPU version of pytorch has smaller footprint - see installation instructions in
# pytorch documentation - https://pytorch.org/get-started/locally/
@dance2die
dance2die / tailwind.config.js
Created March 25, 2022 00:26
sung.codes.next
/* eslint-disable @typescript-eslint/no-var-requires */
const { BlockList } = require("net");
const twColors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
/**
* Material Design breakpoints
* @see https://material.io/design/layout/understanding-layout.html#layout-anatomy
* @see https://tailwindcss.com/docs/breakpoints
*/
@dance2die
dance2die / Conditional.md
Created February 16, 2022 03:36
Clean Coding Practice - Self Note to track my thoughts.
  1. Compare numbers in a sequence. e.g.
# ok
3 > 2 > 1
1 < 2 < 3
# not
1 < 3 > 2
# not
#https://unix.stackexchange.com/a/377601/334761
# Get the device id with "xinput"
# Look for "Wacom Intuos PT S Pen stylus"
# Get the ID value. e.g.) id=14
# pass the ID (14 for mine) as "device" in
# xinput MAN page: https://linux.die.net/man/1/xinput
xinput set-prop 14 "Coordinate Transformation Matrix" 1 0 0 0 1 0 0 0 1
# default
@dance2die
dance2die / youtube.com.js
Last active September 21, 2021 05:02
Add a button on "Subscriptions" panel on Youtube.com
let bt = document.createElement('button')
bt.appendChild(document.createTextNode('Close'))
bt.addEventListener('click', function(e) {
this.parentElement.style.display = 'none';
});
// Subscriptions panel
let subEl = document.querySelector("#sections > ytd-guide-section-renderer:nth-child(2)")
subEl.prepend(bt)
@dance2die
dance2die / .prettierrc
Created June 25, 2021 19:49
Prettier configuration, .prettierc for typescript
{
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 100,
"proseWrap": "preserve",
@dance2die
dance2die / Blog - Adding Tailwind CSS for Docusaurus.md
Last active August 24, 2021 20:13
Blogs before migration to Next.js from Gatsby.js
title date
How to add Tailwind CSS for Docusaurus
2021-06-22

Steps

  1. Install Docusaurus
    • npx @docusaurus/init@latest init site-name class