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 February 20, 2025 05:30
42Seoul Cluster Mac 용량확보 스크립트!
@sebmarkbage
sebmarkbage / Infrastructure.js
Last active February 26, 2025 13:57
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);
}
@matthewmccullough
matthewmccullough / git-compressing-and-deltas.md
Created May 14, 2012 19:05
Git, Compression, and Deltas - An explanation

Git Compression of Blobs and Packfiles.

Many users of Git are curious about the lack of delta compression at the object (blob) level when commits are first written. This efficiency is saved until the pack file is written. Loose objects are written in compressed, but non-delta format at the time of each commit.

A simple run though of a commit sequence with only the smallest change to the image (in uncompressed TIFF format to amplify the observable behavior) aids the understanding of this deferred and different approach efficiency.

The command sequence:

Create the repo: