I quit my FAANG job / Future of Agentic AI
·
Others/TIL & Insight
https://jagilley.github.io/faang-blog.html?utm_source=Nomad+Academy&utm_campaign=34c1f817a5-EMAIL_CAMPAIGN_2025_03_14&utm_medium=email&utm_term=0_4313d957c9-7ac123137e-357695476 I quit my FAANG job because it'll be automated by the end of 2025Taking a medium-term look at the market dynamics surrounding my employment prompted me to quit a few weeks ago. I'm now convinced that my former job will b..
에러 해결: Command 'pip' not found & Permission denied
·
Others/Trubleshooting
conda 가상환경에서 clone한 레포지토리의 requirements를 install 하려는데, 아래 에러가 발생했다.   pip 모듈이 설치되어 있지 않아서 install이 안되는 건데, 문제는 서버가 내 권한이 아니라서 apt install python3-pip 커맨드가 동작하지 않는다는 것.(sudo도 마찬가지)그럴 땐 conda 환경에 python을 설치해주면 된다. 당연한 얘기지만, 가상환경 생성할 때 python 버전을 지정해주지 않은 경우 종종 이런 일이 생긴다. conda install python   설치 후 python과 pip 모듈이 잘 표시되는 것을 볼 수 있다.
Demystifying Reasoning Models
·
Others/TIL & Insight
This article explores the emerging paradigm of reasoning models, which differ from traditional large language models (LLMs) in their problem-solving approach. Unlike conventional LLMs that generate responses in a fixed manner, reasoning models allocate variable computational effort to thinking before answering, improving their ability to decompose problems, detect errors, and explore alternative..
jaehee831