#til
Read more stories on Hashnode
Articles with this tag
iOS 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...
TIL 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...
Homebrew Formula can receive options via command-line arguments. Wanted to compile and install code from a private repo and Devs may use ssh or...
We 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...
If we want certain links to be opened in a specific space then add routing rule in Arc Browser’s "Air Traffic Control". My use case: I want Arc...
TIL that we can copy single file from another branch to current branch: git checkout <branch-containing-the-file> </path/to/file> In below screenshot...