arunvelsriram.devBackspace in iOS Calculator AppiOS calculator does have a backspace feature. Just that is hidden and unintuitive 馃槄. Swiping left or right on the number deletes one number at a time from the last. Got to know from a colleague that this is changed in iOS 18. The Calculator app in ...Oct 8, 2024路1 min read
arunvelsriram.devGet Sharable Link for ChatGPT ConversationTIL that We can get a publicly shareable link of a conversation in ChatGPT. The link is accessible even without logging in by anyone. It's available only in the web version as of now. Useful for providing link to explanations in your social media pos...Aug 1, 2024路1 min read
arunvelsriram.devPassing Options to Homebrew FormulaHomebrew Formula can receive options via command-line arguments. Wanted to compile and install code from a private repo and Devs may use ssh or https in their local machines. So added an option to toggle the url/remote: # Formula/infractl.rb clas...Jul 22, 2024路1 min read
arunvelsriram.devUsing Shell Command in Git AliasWe can prefix the Git Alias with ! to make it a shell command instead of sub-command to git. git config --global alias.statuses \ '!for repo in $(find * -type d -maxdepth 0); do echo "\n=========$repo==========\n" && git -C $repo status; done' Now g...Jul 11, 2024路1 min read
arunvelsriram.devMake Links Open in Designated Space in Arc BrowserIf we want certain links to be opened in a specific space then add routing rule in Arc Browser鈥檚 "Air Traffic Control". My use case: I want Arc Browser鈥檚 Ask ChatGPT (Option + Cmd + G) to use my Personal space always. So added a routing rule for ch...Jun 18, 2024路1 min read