- First run through this guide from Mac.
- If you're still seeing a general slowness, and you're on OS X Sierra, proceed to run through the guide here.
- If you've run through ^ and the wireless is still providng to be slow, do a speed test at fast.com.
- If the speed test shows anything less than 75Mbps proceed to take a screenshot.
- Take a screenshot using the keys: Command + Shift + 4 (see this link for further info)
- Upload the screeenshot (it should be on your desktop) to the Impact Guild slack in #tech-support and mention @aaronsachs for additional help
This is a short gist to teach basic scripting. It's meant for beginners. For each and every exercise, you should comment exactly what each line does.
Below is a list of concepts you should be familiar with, and should be able to answer.
- The Shebang: What is a shebang? Why should you use it in a script? What does it do?
- Variables: What are variables? How are they used?
- Built-In Variables: What are built-in(internal) variables?
I hereby claim:
- I am asachs01 on github.
- I am aaronsachs (https://keybase.io/aaronsachs) on keybase.
- I have a public key whose fingerprint is C121 EF27 5964 40B8 B25E 4578 62C8 6CB3 3807 D29E
To claim this, I am signing this object:
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
| --- | |
| - name: Initial Odroid Setup | |
| hosts: odroids-local | |
| user: root | |
| vars: | |
| - root_password: 'HASHED ROOT PASSWORD HERE' | |
| - <YOUR USER>_password: 'USER PASSSWORD HERE' | |
| tasks: | |
| - name: Change root password |
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
| Get a VPS and: | |
| 1) Move your production website to it (or create one). | |
| 2) You're going to need DNS. he.net provides it free, but you're going to do it yourself from this box. | |
| 3) Don't forget your backups. While you're at it, better do off-site backups too. | |
| 4) You know what would be cool? If your website had subdomains. A dev site for your production site would be a good thing. |
I hereby claim:
- I am AaronSachs on github.
- I am aaronsachs (https://keybase.io/aaronsachs) on keybase.
- I have a public key whose fingerprint is 190C D2BE 3E59 E3CD 6A27 A9A9 60B1 DEF7 C4D5 6E40
To claim this, I am signing this object:
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
| #!/bin/sh | |
| # | |
| # Note runlevel 2345, 86 is the Start order and 85 is the Stop order | |
| # | |
| # chkconfig: 2345 86 85 | |
| # description: Start/Stop/Restart Ghost | |
| # | |
| # Below is the source function library, leave it be | |
| . /etc/init.d/functions | |
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
| if ($http_referer ~* (semalt.com)) { return 403; } |
NewerOlder