Skip to content

Instantly share code, notes, and snippets.

View keehyun2's full-sized avatar
๐Ÿ˜ช
zzzz

Keehyun Park keehyun2

๐Ÿ˜ช
zzzz
View GitHub Profile
@encikpulasan
encikpulasan / device_info_utils.dart
Created June 25, 2021 05:57
Flutter Device Info Utility Helper
import 'dart:io';
import 'package:device_info_plus/device_info_plus.dart';
class DeviceInfoUtils {
final DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
/// Info available for both iOS & Android OS
String? deviceId;
String? deviceName;
@andromedarabbit
andromedarabbit / gradle-commands.md
Last active October 30, 2022 08:13
์ž์ฃผ ์“ฐ๋Š” Gradle ๋ช…๋ น์–ด

์ž์ฃผ ์“ฐ๋Š” Gradle ๋ช…๋ น์–ด

๋‹จ์œ„ ํ…Œ์ŠคํŠธ ๋Œ๋ฆฌ๊ธฐ

gradle test

๋‹จ์œ„ ํ…Œ์ŠคํŠธ๋Š” ๊ฑด๋„ˆ๋›ฐ๊ณ  ๋นŒ๋“œํ•˜๊ธฐ

@jbgo
jbgo / free-space-on-boot-disk.md
Last active April 3, 2025 19:21
Free up space on /boot disk (ubuntu)

Free disk space when /boot is full (Ubuntu)

TL;DR

dpkg -l linux-image*
uname -r
sudo apt-get remove linux-image-2.6.32-{21,37,38,39,40,41,42,43,44}-server
sudo apt-get autoremove
@eligrey
eligrey / object-watch.js
Created April 30, 2010 01:38
object.watch polyfill in ES5
/*
* object.watch polyfill
*
* 2012-04-03
*
* By Eli Grey, http://eligrey.com
* Public Domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*/