アレクサンダー.eth
アレクサンダー.eth
I've been trying to get a Dropbox replacement for managing client servers. fswatch is handy, check out this script: ``` #!/bin/bash alias live_rsync='rsync -azP --exclude ".DS_Store" --exclude "Icon*" --exclude "node_modules"...
Here is the wallet snippet that I used ```SQL ALTER TABLE "Ubiquity Metadata" ADD wallet_address char(42); ```
I realize the issue is because I am using `~/.profile` instead of `~/.bashrc` I would recommend at least putting a note in the README, or at most automatically detecting which...
It's not about restarting the terminal. From what I understand, if `~/.profile` exists on macOS, then it will not load `~/.bashrc` unless you explicitly tell it to e.g. `source ~/.bashrc`...
- source `~/.bashrc` in `~/.profile` - To clarify, I moved everything into `~/.bashrc` and now my `~/.profile` in its entirety appears as follows: ```bash #!/bin/bash/env bash source ~/.bashrc ```