- Click your profile picture in the bottom left.
- Go to Preferences → Themes
- Click on "Import theme" and paste the following string:
#1E1E2E,#CBA6F7,#A6E3A1,#FAB387
#1E1E2E,#CBA6F7,#A6E3A1,#FAB387
| #!/bin/bash | |
| launchctl stop com.apple.Dock.agent | |
| launchctl start com.apple.Dock.agent |
| #!/bin/bash | |
| SUMMARY=$(find . -name "node_modules" -type d -prune -print | xargs du -chs) | |
| if [ -z "$SUMMARY" ]; then | |
| echo "👍 No node_modules directories found!" | |
| exit 0 | |
| fi | |
| echo -e "👇 The following projects has a \"node_modules\" directory:\n" |
| # Change $PORT with the port you want to scan | |
| sudo lsof -i -P | grep LISTEN | grep :$PORT |
| #!/bin/bash | |
| function die { | |
| declare MSG="$@" | |
| echo "$0: Error: $MSG">&2 | |
| exit 1 | |
| } |
| <select id="uf" name="uf"> | |
| <option value="AC">Acre</option> | |
| <option value="AL">Alagoas</option> | |
| <option value="AP">Amapá</option> | |
| <option value="AM">Amazonas</option> | |
| <option value="BA">Bahia</option> | |
| <option value="CE">Ceará</option> | |
| <option value="DF">Distrito Federal</option> | |
| <option value="ES">Espirito Santo</option> | |
| <option value="GO">Goiás</option> |
| <?php | |
| $name = filter_var($_POST["name"], FILTER_SANITIZE_STRING); | |
| $email = filter_var($_POST["email"], FILTER_SANITIZE_EMAIL); | |
| $message = filter_var($_POST["message"], FILTER_SANITIZE_STRING); | |
| $to = "contact@yourcompany.com"; | |
| $subject = "YourCompany - Contact Message"; | |
| $msg = '<h3 style="font-family: sans-serif">Sender\'s info:</h3> |
| // Conexoes | |
| #define TRIGGER_PIN 12 | |
| #define ECHO_PIN 13 | |
| #define IN1 4 | |
| #define IN2 5 | |
| #define IN3 6 | |
| #define IN4 7 | |
| // Configs | |
| int distanciaMaxima = 15; |
| <?php | |
| // Setting up the timezone | |
| date_default_timezone_set("America/Sao_Paulo"); | |
| // Grabbing the date and time | |
| $now = date("YmdHis"); | |
| // Converting the date into a MD5 hash, reducing it to 8 characters, "shuffling" it and type-casting as string (why not?!) | |
| $password = (string) str_shuffle(substr(md5($now), 0, 8)); |