Skip to content

Instantly share code, notes, and snippets.

View WallabyStuff's full-sized avatar
🎯
Focusing

SeungGi LeE WallabyStuff

🎯
Focusing
View GitHub Profile
🌞 Morning 90 commits █▌░░░░░░░░░░░░░░░░░░░ 7.2%
🌆 Daytime 463 commits ███████▊░░░░░░░░░░░░░ 37.2%
🌃 Evening 487 commits ████████▏░░░░░░░░░░░░ 39.1%
🌙 Night 206 commits ███▍░░░░░░░░░░░░░░░░░ 16.5%
@WallabyStuff
WallabyStuff / lfs_pull.sh
Created August 24, 2023 06:17
[Build phase script] Git lfs pull
if which git-lfs >/dev/null; then
git-lfs pull
else
echo "warning: git-lfs is not installed. Large files may not be checked out properly."
fi
@WallabyStuff
WallabyStuff / SlowCPU-based.swift
Created July 16, 2023 05:45 — forked from almaleh/SlowCPU-based.swift
Slow CPU-based Drawing
class FreedrawingImageViewCG: UIImageView {
var currentTouchPosition: CGPoint?
override func layoutSubviews() {
super.layoutSubviews()
isUserInteractionEnabled = true
}
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
@WallabyStuff
WallabyStuff / EmojiTextField.swift
Last active June 13, 2023 04:55
Emoji만 입력할 수 있는 UITextField 입니다.
import UIKit
class EmojiTextField: UITextField {
override init(frame: CGRect) {
super.init(frame: frame)
setup()
}