뒤적거리다가 node.js보다 bun이 빠르다고 하던 글은 더러 봤었다.bun ver1.0이 나왔다길래 설치를 해볼까 싶어서 따라해 봅니다. https://bun.sh/ ** windows에서는 지원안됨 첫 화면을 따라하면서 부터 에러, 일단 unzip부터 설치한다.(내 wsl이 꼬였는지 에러나서 wsl부터 다시 설치 했음)sudo apt-get install unzip 간단히 성공.Quick Start에 나온대로 따라해 봅니다. 기대하고 bun run index.ts 를 실행짠! 뭐야.. 딱 hello via Bun! 이게 다네.. react sample을 한번 실행 봅시다.다른 글을 보니 vite+bun 실행하길래 요즘에 vite가 또 빠르다 해서 (stackblitz.com에서 ..
wsl --set-default-version 2체크인지 먼저 확인, 안되면wsl --update를 실행해서 wsl module update부터 설치가능한 wsl list 확인wsl -l -o # 설치wsl --install -d Ubuntu-22.04 설치 중 아래 에러 발생시 관련글 참고Error: 0x800701bc WSLhttps://thekkom.tistory.com/204 설치된 항목에서 특정이름의 Distribution Name >을 삭제할 때wsl --unregister Ubuntuwsl --unregister Ubuntu-22.04 https://woshub.com/move-wsl-another-drive-windows/ Moving WSL to Another Drive ..
Remove-Item -Path D:\repo\files\*.* -Recurse Remove-Item -Path D:\repo\files -Recurse #files folder삭제 Remove Files in Folder and SubFolders Remove-Item -Path D:\repo\files\*.* -Recurse # Delete all files from the folder D:\repo\files and it's subfolders Remove-Item -Path D:\repo\files\ -Recurse -Include *.* Get-ChildItem -Path D:\repo\files\ -File -Recurse | Remove-Item Delete a file -Path Speci..
dotnet new console dotnet build --output ./build_output dotnet ./build_output/my_app.dll dotnet build -c Release dotnet build -p:Version=1.2.3.4 # single file exe with all dependancies dotnet publish -c Release -r win-x64 --self-contained true /p:publishsinglefile=true # framework-dependent executable dotnet publish -c Release dotnet publish -c Release -r --self-contained false # self-contained ..
https://git-scm.com/docs/gitignore Git - gitignore Documentation The optional configuration variable core.excludesFile indicates a path to a file containing patterns of file names to exclude, similar to $GIT_DIR/info/exclude. Patterns in the exclude file are used in addition to those in $GIT_DIR/info/exclude. git-scm.com #.gitignore x64/* !x64/Release x64/Release/* !x64/Release/*.xll _
clone subfolder까지git clone --recursive git submodule addgit clone --recursive https://github.com/teamtv/streamlit_modal.git git rm -r --cached .git submodule add https://github.com/xlladdins/xll src/xllgit submodule add https://github.com/xlladdins/xllgit submodule update _