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
| Sid Meier's 10 Rules of Game Design | |
| 1. Choose a topic you have a passion for. Game Design is about creativity. | |
| 2. Do research after the game is done. Tap into the player’s brain. | |
| 3. Define your axioms, refine your axioms. Prototype, prototype, prototype; sit in all the chairs. | |
| 4. Double it or cut it in half. You are more wrong than you think. |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>This is the title of the webpage!</title> | |
| </head> | |
| <body> | |
| <p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p> | |
| </body> | |
| </html> |
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/bash | |
| while read d; do | |
| echo $d | |
| gtimeout 1 nc -z $d 443 | |
| if [ $? -eq 0 ]; then | |
| gtimeout 2 openssl s_client -connect $d:443 2> /dev/null < /dev/null| openssl x509 -noout -dates | |
| else | |
| echo "No TLS enabled" | |
| fi | |
| done< domains |
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/bash | |
| function base() { | |
| # this is the base case in the center of the spiral | |
| echo -n 1 | |
| echo 1 > .number | |
| } | |
| function addTop() { | |
| #this function extends the string by one row on the top |