Skip to content

Instantly share code, notes, and snippets.

View kiding's full-sized avatar
๐Ÿฆ‘
๐Ÿฆœ ๐Ÿฆœ ๐Ÿฆœ ๐Ÿฆœ

Dongsung "Donny" Kim kiding

๐Ÿฆ‘
๐Ÿฆœ ๐Ÿฆœ ๐Ÿฆœ ๐Ÿฆœ
View GitHub Profile
@kiding
kiding / thechoiceisyours.js
Last active September 9, 2021 05:21
thechoiceis466560 - All the Matrix 4 Teasers
/*
This script checks ALL the possible Matrix 4 teaser URLs for their existence using HTTP HEAD.
Although the PR statement says the number of combinations is "more than 180,000,"
the actual app.js indicates there are actually 466,560 mp4 files generated and uploaded to S3.
It's possible some footages were recycled; maybe b = 1 and b = 3 are the same, etc.
*/
const { createHash } = require('crypto');
const https = require('https');
@kiding
kiding / NoScrollOnInputFocusiOSSafari.html
Last active March 12, 2025 19:09
Preventing iOS Safari scrolling when focusing on input elements
<!--
When an input element gets focused, iOS Safari tries to put it in the center by scrolling (and zooming.)
Zooming can be easily disabled using a meta tag, but the scrolling hasn't been quite easy.
The main quirk (I think) is that iOS Safari changes viewport when scrolling; i.e., toolbars shrink.
Since the viewport _should_ change, it thinks the input _will_ move, so it _should_ scroll, always.
Even times when it doesn't need to scrollโ€”the input is fixed, all we need is the keyboardโ€”
the window always scrolls _up and down_ resulting in some janky animation.
However, iOS Safari doesn't scroll when the input **has opacity of 0 or is completely clipped.**
@kiding
kiding / install.sh
Last active February 24, 2022 15:21
Heterogeneous Homebrew: Apple Silicon & Intel Rosetta 2 side-by-side
# Install Homebrew at /opt/homebrew (for Apple Silicon)
arch -arm64e /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install Homebrew at /usr/local (for Intel Rosetta 2)
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Add these lines to ~/.zshrc
alias za="arch -arch arm64e /bin/zsh"
alias zi="arch -arch x86_64 /bin/zsh"
if [[ $(arch) == "arm64" ]]; then
@kiding
kiding / HDRGainMap.swift
Last active February 17, 2025 22:52
Extracting HDR Gain Map from iOS 14.1+ (iPhone 12+) photos
import UIKit
import MobileCoreServices.UTCoreTypes
if #available(iOS 14.1, *) {
let input = Bundle.main.url(forResource: "IMG_0037", withExtension: "HEIC")!
let output = FileManager().temporaryDirectory.appendingPathComponent("IMG_0037.GAIN_MAP.BMP")
let source = CGImageSourceCreateWithURL(input as CFURL, nil)!
// urn:com:apple:photo:2020:aux:hdrgainmap
let dataInfo = CGImageSourceCopyAuxiliaryDataInfoAtIndex(source, 0, kCGImageAuxiliaryDataTypeHDRGainMap)! as Dictionary
@kiding
kiding / KeepAll.playground.swift
Last active April 21, 2021 06:07
word-break: keep-all; but in Swift
import UIKit
class KRLayoutManagerDelegate: NSObject, NSLayoutManagerDelegate {
func layoutManager(_ layoutManager: NSLayoutManager,
shouldBreakLineByWordBeforeCharacterAt charIndex: Int) -> Bool {
if charIndex <= 0 {
return true
}
let string = layoutManager.textStorage?.string as NSString?
@kiding
kiding / 2018-2019.diff
Created May 30, 2019 01:11
(2018|2019)๋…„๋„ ๋ณ‘์—ญ์ง€์ •์—…์ฒด ์„ ์ • ๋ฐ (2019|2020)๋…„๋„ ์ธ์›๋ฐฐ์ • ๊ณ ์‹œ
1,4c1,4
< โ—‰๋ณ‘๋ฌด์ฒญ๊ณ ์‹œ์ œ2018-1ํ˜ธ
< 2018๋…„๋„ ๋ณ‘์—ญ์ง€์ •์—…์ฒด ์„ ์ • ๋ฐ 2019๋…„๋„ ์ธ์›๋ฐฐ์ • ๊ณ ์‹œ
< 2018๋…„๋„ ๋ณ‘์—ญ์ง€์ •์—…์ฒด ์„ ์ • ๋ฐ 2019๋…„๋„ ์ธ์›๋ฐฐ์ •์— ๋Œ€ํ•˜์—ฌ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ๊ณ ์‹œํ•ฉ๋‹ˆ๋‹ค.
< 2018๋…„ 5์›” 23์ผ
---
> โ—‰๋ณ‘๋ฌด์ฒญ๊ณ ์‹œ ์ œ2019-2ํ˜ธ
> 2019๋…„๋„ ๋ณ‘์—ญ์ง€์ •์—…์ฒด ์„ ์ • ๋ฐ 2020๋…„๋„ ์ธ์›๋ฐฐ์ • ๊ณ ์‹œ
> 2019๋…„๋„ ๋ณ‘์—ญ์ง€์ •์—…์ฒด ์„ ์ • ๋ฐ 2020๋…„๋„ ์ธ์›๋ฐฐ์ •์— ๋Œ€ํ•˜์—ฌ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ๊ณ ์‹œํ•ฉ๋‹ˆ๋‹ค.
> 2019๋…„ 5์›” 27์ผ
@kiding
kiding / KakaoTalk+.js
Last active January 28, 2019 02:41
KakaoTalk+: No More Search Pane (macOS)
/*
Hide the annoying search pane.
$ sudo node KakaoTalk+.js
$ nohup /Applications/KakaoTalk.app/Contents/MacOS/KakaoTalk+ </dev/null >/dev/null 2>&1
*/
const { readFileSync, writeFileSync } = require('fs'),
{ execSync } = require('child_process'),
{ ok } = require('assert');
@kiding
kiding / BCM.hcd.b64
Last active May 2, 2019 05:31
BCM4356A3 Firmware (for Nintendo Switch)
TPxGAIAhAEJSQ01jZmdTAAAAADIAAAABAQQYkgAAAAMGrB8Ao1ZDAAEcQoAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP4AAEz8zEKAIQBCUkNNY2ZnRAAAAACuEgAAAwMgQ1lXNDM1NkEzXzAwMS4wMDQuMDA5LjAwNjIuMDA2NAAQAQ8A1KoBALXwlLsAAAACDQAQAQ8BjBMEAI7wPL8AAAgCDQAGAQRoCw0AEAEPAhjXAADC8IC9AAAcAg0AEAEPA2zeAADC8Cu/AADGDA0AEAEPBFzUAADC8OG+AAAiAg0AEAEPBbjPAADD8JK/AADgDg0AEAEPBuDYAADD8NW7AACOEA0AEAEPB0zTAADD8AG/AABSEUz8zAqBIQANABABDwgQ7QAAwfCLugAAKgINABABDwk8FQgATvB+vgAAPAINABABDwoMuAcAVPAavQAARAINABABDwtGuAcAVPAEvQAAUgINABABDwz4vwcAVfCIuQAADBMNABABDw2kxQcAAL8q4AAAAAAAABABDw6cJgcAXfDgvQAAYAINABABDw88cQQAifCcuAAAeAINABABDxDYdwQAiPBQvQAAfAINABABDxFQegQAiPAbvAAAigINABABDxIogwQAh/C1vwAAlgINAEz8zNKBIQAQAQ8T0IMEAAC/AL8AAAAAAAAGAQSIGA0AEAEPFGxzBACK8Jy6AACoGA0AEAEPFZh1BACI8IW+AACmAg0AEAEPFuxkBACJ8OC+AACwAg0AEAEPF6hQBwBb8AS5AAC0Ag0AEAEPGORRBwBb8HG4AADKAg0AEAEPGZyQBACH8Bi5AADQAg0AEAEPGkQ+BACN8GK/AAAMHQ0AEAEPGyQ9BACM8Ni6AADYAg0AEAEPHPBBAQC88Ha4AADgAg0AEAEPHdA5AQC+8Iq7AEz8zJqCIQAA6CANABABDx7EewIAqvBVuwAAciINAAYBBOgoDQAQAQ8fJDwBAL7wZr4AAPQoDQAQAQ8gMDsBAL7wBr8AAEApDQAQ
@kiding
kiding / hangulJosa.js
Created October 9, 2014 16:42
ํ•œ๊ธ€ ์กฐ์‚ฌ ์ž๋™ ์„ ํƒ ์Šคํฌ๋ฆฝํŠธ
/**
* ํ•œ๊ธ€์กฐ์‚ฌ - ์€/๋Š” ์ด/๊ฐ€ ์„/๋ฅผ ๊ณผ/์™€ ์ด์—ฌ/์—ฌ
* @author Dongsung Don Kim <[email protected]>
* @license MIT
*/
// TODO: ์œผ๋กœ/๋กœ
var hangulJosa = (function() {
var reT = /[0136-8๏ผ๏ผ‘๏ผ“๏ผ–-๏ผ˜L-NR๏ผฌ-๏ผฎ๏ผฒใ„ฑ-ใ…Ž\uFFA1-\uFFBE\u3165-\u3186\u1100-\u115E\u11A8-\u11FF]/,
// ์˜์ผ์‚ผ์œก์น ํŒ” ๋ฐ˜๊ฐ ์ „๊ฐ, ๋Œ€๋ฌธ์ž ์•ŒํŒŒ๋ฒณ ์—˜์— ์—” ๋ฐ˜๊ฐ ์ „๊ฐ, ์ž์Œ, ๋ฐ˜๊ฐ ์ž๊ธˆ, ์˜›์ž์Œ, ์กฐํ•ฉ ์ดˆ์„ฑ, ์กฐํ•ฉ ์ข…์„ฑ
reF = /[2459๏ผ’๏ผ”๏ผ•๏ผ™A-KO-QS-Z๏ผก-๏ผซ๏ผฏ-๏ผฑ๏ผณ-๏ผบใ…-ใ…ฃ\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u3187-\u318E\u1161-\u11A7]/;
@kiding
kiding / gist:589242021df49eb17be3
Last active December 3, 2019 23:57
safari-utm-stripper Bookmarklet
javascript:(function()%7Bvar%20e%3Dwindow.location.href%3Bvar%20t%3De.indexOf(%22%3F%22)%3Bif(e.indexOf(%22utm_%22)%3Et)%7Bvar%20n%3De.replace(%2F(%5B%3F%26%5Dutm_(source%7Cmedium%7Cterm%7Ccampaign%7Ccontent)%3D%5B%5E%26%23%5D%2B)%2Fig%2C%22%22)%3Bif(n.charAt(t)%3D%3D%3D%22%26%22)%7Bn%3Dn.substr(0%2Ct)%2B%22%3F%22%2Bn.substr(t%2B1)%7Dif(n!%3De)%7Bhistory.replaceState(null%2Cnull%2Cn)%7D%7D%7D)();