- reportbug
- sbuild << unshare https://www.linux.it/~ema/posts/building-debian-packages-the-right-way/
- arch-test << qemu-user, qemu-user-binfmt 필요 https://wiki.debian.org/QemuUserEmulation
- git-buildpackage
- piuparts
- autopkgtest << unshare
- check-all-the-things https://wiki.debian.org/CopyrightReviewTools#check-all-the-things
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fingerprint: A7830CCABA4AFF02E50213FE8F32B4422F52107F | |
| Uid: Adrian Knoth <adi@drcomp.erfurt.thur.de> | |
| Allow: a2jmidid (A62D2CFBD50B9B5BF360D54B159EB5C4EFC8774C), | |
| ardour (A62D2CFBD50B9B5BF360D54B159EB5C4EFC8774C), | |
| ardour3 (218EE0362033C87B6C135FA4A3BABAE2408DD6CF), | |
| calf (A62D2CFBD50B9B5BF360D54B159EB5C4EFC8774C), | |
| jack-audio-connection-kit (A62D2CFBD50B9B5BF360D54B159EB5C4EFC8774C), | |
| jackd-defaults (A62D2CFBD50B9B5BF360D54B159EB5C4EFC8774C), | |
| jackd2 (A62D2CFBD50B9B5BF360D54B159EB5C4EFC8774C), | |
| kmidimon (A62D2CFBD50B9B5BF360D54B159EB5C4EFC8774C), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # m h dom mon dow command | |
| */5 * * * * /home/jmkim/papermc-backup.sh |
매뉴얼 위치 : https://deb.li/IDBHDD
본 HDD는 /home 에 통채로 마운트하기 위한 HDD입니다.
LVM 입니다. 추후 HDD 이어붙여 용량 확장 시 도움이 될거예요.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jmkim@db ~ sudo apt upgrade | |
| Reading package lists... Done | |
| Building dependency tree... Done | |
| Reading state information... Done | |
| Calculating upgrade... Done | |
| The following packages were automatically installed and are no longer required: | |
| dnsutils g++-12 gcc-13-base gcc-14-base ibverbs-providers libabsl20220623 libaom-dev libavif-dev libavif16 libboost-iostreams1.74.0 libboost-thread1.74.0 libcephfs2 libdav1d-dev libde265-dev libdeflate-dev libfmt9 | |
| libgfapi0 libgfrpc0 libgfxdr0 libglusterfs0 libheif-dev libibverbs1 libjbig-dev libjpeg-dev libjpeg62-turbo-dev liblerc-dev libnl-3-200 libnl-route-3-200 libnsl-dev libpthread-stubs0-dev librados2 librav1e-dev | |
| librav1e0.8 librdmacm1 libsframe1 libsharpyuv-dev libstdc++-12-dev libsub-override-perl libsvtav1enc-dev libsvtav1enc2 libtiff-dev libtiffxx6 libtirpc-dev libunistring2 libutempter0 libvpx-dev libvpx11 libvpx7 | |
| libwebp-dev libwebpdecoder3 libwebpmux3 libx265-199 libx265-dev libxpm-dev libyuv-dev libzstd-dev php8.2-cli php8.2-fpm php8.2-gd php8.2-mysql p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env sh | |
| # Author: Jongmin Kim <jmkim@debian.org> | |
| # Usage: ./check-deb.sh file.deb | |
| # Strict mode | |
| set -eu | |
| # $1 as $DEB | |
| DEB="${1:-}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| char a2i[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; | |
| // in_base진수에서 int형(10진수)으로 변환 | |
| // in_base가 10진수 이상일 경우 대문자만 지원(A, B, C, ...) | |
| int stoi(string input, int in_base) { | |
| int number = 0; | |
| for(char ch : input) { | |
| number *= in_base; | |
| number += ch - ((ch <= '9') ? '0' : 'A' - 10); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Arduino IDE | |
| Comment=Write code and flash to Arduino hardware | |
| GenericName=Embedded electronics IDE | |
| Keywords=Programming;Development | |
| Exec=/opt/arduino-ide_2.3.6_Linux_64bit/arduino-ide | |
| Terminal=false | |
| X-MultipleArgs=false | |
| Type=Application |
Since kernel 6.10, the IPU6 driver has been included in the mainline kernel. This guide explains how to install the driver on Debian 13 and its derivatives.
- PC: Lenovo ThinkPad X1 Carbon Gen 12
- Camera:
UHD 8.0MP + IR discrete, with privacy shutter, MIPI, fixed focus, Computer Vision, temporal noise reduction
- Camera:
- OS: Debian GNU/Linux 13 “Trixie”
NewerOlder