Skip to content

Instantly share code, notes, and snippets.

View Likilee's full-sized avatar
🎯
Focusing

Kihoon Lee (Kilee) Likilee

🎯
Focusing
View GitHub Profile
@flexboni
flexboni / main.dart
Created November 27, 2023 03:27
플러터챌린지 1일차 기본문제 - 김구봉
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
@JaeSeoKim
JaeSeoKim / 42seoul_link_all_cache_dirs.sh
Last active January 3, 2024 05:48
42Seoul Cluster Mac 용량확보 스크립트!
@sebmarkbage
sebmarkbage / Infrastructure.js
Last active May 2, 2024 03:11
SynchronousAsync.js
let cache = new Map();
let pending = new Map();
function fetchTextSync(url) {
if (cache.has(url)) {
return cache.get(url);
}
if (pending.has(url)) {
throw pending.get(url);
}