Bash party

Bash 헷갈릴 때 보는 포스트 Variable Assignment 띄어쓰기 없이 변수명=값. 환경변수와는 별개. foo=bar # OK echo $foo # output: bar foo =bar # WRONG; arg0: “foo”, arg1: “=bar” foo = bar # WRONG; arg0: “foo”, arg1: “=”, arg2: “bar” foo= bar # WRONG; executes “bar” with empty envvar “foo” Double Quotes vs. Single Quote 작은 따옴표는 literal string, 큰따옴표는 치환 실행함 foo=barecho “$foo” # output: barecho ‘$foo’ # output: $foo Bash special chars https://tldp.org/LDP/abs/html/special-chars.html Substitution # Command substitution # Execute command, and substitute $() with the output… Continue reading Bash party

Synergism

https://pseudo-corp.github.io/SynergismOfficial/ 꿀잼.

Increlution

https://store.steampowered.com/app/1593350/Increlution/

차 타고 자주 다니는 경로

괄호 안은 통행료. 서울대 시흥캠 <-> 관악캠 무료 코스는 45분, 나머지는 35분 정도 걸린다. 호암로에 카메라와 신호등이 많으므로 관악 터널의 위대함을 느낄 수 있는 가성비 코스 추천. 티맵 켜면 맨날 호구 코스로 안내함(…) 서울대 시흥캠 <-> 대전 결국 경부를 언제 들어가느냐 차이인데, 서울 근처의 경부는 지옥이므로 왠만하면 안성에서 들어가자. 남안산IC는 시내를 통과해야하므로 정왕IC가 좋다. 어차피… Continue reading 차 타고 자주 다니는 경로

ROCm

AMD는 CUDA 설치 관련 스크립트 보면서 좀 배우자… CUDA도 그다지 깔끔하진 않지만… Clean Reinstall – Ubuntu