Related Posts
Sample /etc/fstab entry for EBS volume
gid= and uid= are not valid for XFS, pass “grpid=” to your fstab entry. /dev/xvdf /media/ebs/data xfs defaults,auto,noatime,noexec,grpid=1000 0 0
How to use environment variables in your Eclipse project Run Configuration
Say you have some environment variables that you’d love to use as arguments of an executable in your project. 1. Go to “Run Configurations” 2. Click on the “Environment” tab. 3. Click the “Select” button. 4. A list with all of your environment variables will be shown. Choose the environment variables you need for this […]
How to edit the same word/token in multiple places using Sublime Text
1. Double click on the word/variable/token 2. Press Ctrl+Cmd+G 3. start editing, it will edit all the ocurrences of the same token within the same file. 4. When you are done, you can click anywhere, or press Ctrl+Cmd+G again to finish the simultaneous edits.