-
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-14-04
-
https://sysadmincasts.com/episodes/43-19-minutes-with-ansible-part-1-4
-
https://sysadmincasts.com/episodes/45-learning-ansible-with-vagrant-part-2-4
-
https://sysadmincasts.com/episodes/46-configuration-management-with-ansible-part-3-4
-
https://medium.com/@perwagnernielsen/ansible-tutorial-part-2-installing-packages-41d3ab28337d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/environments/development.rb | |
... | |
if defined? BetterErrors | |
# Force all developers on this project to use VS Code, even if they prefer something else. | |
BetterErrors.editor = proc { |file, line| "subl://#{file}:#{line}"} | |
end |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Klass | |
def initialize(number) | |
self.number = number | |
end | |
attr_reader :number | |
private | |
attr_writer :number |
OlderNewer