AAJinblog.ajbothe.com·Nov 22, 2021 · 1 min readTMUX CheatsheetA quick cheatsheet for TMUX commands that I can never remember. tmux yum -y install tmux Out of tmux new session tmux new new session with name tmux new -s sessionname show sessions tmux ls attach to session tmux attach-session -t 0 Go to last sessi...00
AAJinblog.ajbothe.com·Apr 29, 2021 · 1 min readResolving "not syncing vfs unable to mount root fs on unknown block" on LinodeHere's a fun error: "not syncing vfs unable to mount root fs on unknown block" I'm running CentOS7 on Linode and happened to run into this error on one of my systems. Quite unusual, so I did the quick and dirty method and restored a backup of my VM....00
AAJinblog.ajbothe.com·Apr 28, 2021 · 1 min readgit switchI discovered a fun git command that I wasn't aware of before. git switch -c <new-branch> Using git switch, you can take existing, uncommitted files and move them to a new branch. Say you're working in the master branch and want to move those changes...00
AAJinblog.ajbothe.com·Mar 19, 2021 · 5 min readA hidden Vudu API and Searching JSON Data with PythonWell, maybe not so hidden, but definitely not advertised. Vudu has an API that, for the life of me, I could not find advertised anywhere, even with an advanced Google search. So, I'll take it upon myself to scrape their webpage and dissect their ho...01M
AAJinblog.ajbothe.com·Mar 15, 2021 · 4 min readDeploy a Local DynamoDB for TestingI didn't realize until recently that you can run DynamoDB on a local machine on either Windows, Mac, or Linux. This obviously can be hugely benefitial for learning and dabbling in DynamoDB, without racking up a large AWS bill. Let's see if we can get...00