This file contains 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>Unicorns Hello World</title> | |
</head> | |
<body> | |
<h1>Whatever you want the heading to be</h1> | |
<p>Write whatever you want</p> | |
</body> | |
</html> |
This file contains 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
import time | |
import requests | |
from bs4 import BeautifulSoup | |
from twilio.rest import Client | |
import redis | |
from secrets import twilio_account_sid, token, my_number | |
client = Client(twilio_account_sid, token) |
This file contains 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
# For original code, see "some_framework.py" | |
# Remove Argument-Order Dependencies | |
# First code example under "Use Hashes for Initialization Arguments" | |
class Gear(object): | |
def __init__(self, **kwargs): | |
self.chainring = kwargs['chainring'] | |
self.cog = kwargs['cog'] | |
self.wheel = kwargs['wheel'] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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>Code2College - Brand Project</title> | |
</head> | |
<body> | |
<h1>Hi, I'm Samuel</h1> | |
</body> | |
</html> |