Trouvaillle log.
Categories
ai
2
backend
9
blockchain
2
career
1
data-engineering
3
database
5
frontend
1
life
3
software-engineering
1
study/kuar
3
tip
14
App
Apr 1, 2022
Counter
Jun 17, 2022
Random Number Generator
Jun 26, 2022
Spider!
Aug 11, 2022
Cashwalk Answer
Aug 15, 2022
Sketch Pad
Oct 28, 2022
Tetris
Oct 3, 2023
Clock
Sep 23, 2024
Minesweeper
Oct 18, 2024
Supaplex
Trouvaillle log.
Categories
ai
2
backend
9
blockchain
2
career
1
data-engineering
3
database
5
frontend
1
life
3
software-engineering
1
study/kuar
3
tip
14
tip ·
14
Aug 5, 2024 · 0 min
CentOS yum error
How to deal with CentOS yum error Change repos sudo vi /etc/yum.repos.d/CentOS-Base.repo Add below lines. [centos-sclo-rh] name=CentOS-6.10 - SCLo rh baseurl=http://vault.centos.org/centos...
Jul 17, 2024 · 0 min
Intellij IDEA and VS Code in Shell
How to open path directly in apps on macOS Intellij IDEA https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html#toolbox $ sudo vi /usr/local/bin/idea $ sudo c...
Apr 21, 2024 · 0 min
Jekyll cheatsheet
Jekyll cheatsheet Introduction Jekyll uses liquid template language. How to serve jekyll locally Initial setup https://www.ruby-lang.org/en/documentation/installation/#homebrew gem instal...
Apr 20, 2024 · 0 min
How to fix WSL2 0x8007019e error
Issue Installing, this may take a few minutes... WslRegisterDistribution failed with error: 0x8007019e Error: 0x8007019e Linux? Windows ?? ???? ????? ???? ?? ????. Press any key to continue... S...
Jan 17, 2024 · 0 min
Windows 11 Recovery
Windows 11 Recovery sfc /scannow DISM /Online /Cleanup-Image /RestoreHealth
May 2, 2022 · 0 min
Jenkins Docker Version Upgrade
도커 상에서 돌아가는 젠킨스의 버전 업그레이드 하기 젠킨스 도커 쉘에 접근 docker container exec -u 0 -it jenkins bash 원하는 버전의 젠킨스 war 이미지를 다운로드 https://www.jenkins.io/download/에서 최신 버전 확인 wget https://get.jen...
Apr 15, 2022 · 2 min
MacOS terminal & vim setting
Table of contents 1. iTerm 설치 2. Oh My Zsh 설치 3. Powerlevel9k 테마 설치 4. Powerlevel9k 폰트 설치 5. Powerlevel9k Prompt Customization 6. vim 설정 1. iTerm 설치 https://iterm2.com/ 2. Oh My Zsh 설치 ...
Mar 31, 2022 · 0 min
Macbook 2021, M1 MAX, 16inch 에서 스피커에 잡음이 날 때
popping, cracking noise https://www.reddit.com/r/mac/comments/k2stpu/macbook_pro_m1_speaker_popping_noise/ Issue with the software driver, not sure why it happens but until Apple fix it, here is a...
Jun 25, 2021 · 0 min
Windows 11을 macOS M1 가상머신으로 설치하기
환경 ARM64를 사용하는 macOS(M1, M1 Pro, M1 Max 등) 준비물 UTM for Mac 및 SPICE Guest Tools and QEMU Drivers (Windows) Windows Client ARM64 Insider Preview Homebrew 과정 qemu-image를 통해 다운받은 ...
Jun 16, 2021 · 0 min
Useful sites
SSL 적용 https://velog.io/@prayme/ubuntu%EC%97%90-nginx-%EC%84%A4%EC%B9%98%ED%95%98%EA%B3%A0-ssl-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0 https://www.lesstif.com/system-admin/nginx-https-ssl-27984443.ht...
May 27, 2021 · 0 min
리눅스에서 프로그램을 데몬으로 실행하는 방법
사용자가 로그인한 상태에만 프로그램을 백그라운드 데몬으로 실행 $ java –jar $app_jar & 사용자 로그아웃에 관계 없이 백그라운드 데몬으로 실행 $ nohup java -jar $app_jar & 데몬을 찾아서 종료 $ ps –ef | grep $app_jar $ kill -9 $pid