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
body { | |
font-family: 'Calibri', 'Georgia', sans-serif; | |
background-color: #F3F2EE; | |
color: #1F0909; | |
} | |
a, a:visited, a:hover { | |
color: #065588; | |
text-decoration: none; | |
} |
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
@SamiecAlfa // klasa. | |
// zmienne. | |
#oswiadczenie string tekst = "hello world" | |
#oswiadczenie int liczba = 10 | |
// deklaracja zmiennej z automatycznym zgadywaniem typu | |
#oswiadczeniezdupy zgadnij = 42 | |
// wskaznik pozwala na grzebanie w pamieci, bez tagu #nsfw obiekt bedzie normalnym obiektem. |
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
""""Find e to the Nth Digit | |
Enter a number and have the program generate e up to that many decimal places. | |
Keep a limit to how far the program will go""" | |
from math import e | |
def e_with_precision(n): | |
"""Return euler's number to the n-th decimal place |
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
#!/usr/bin/python | |
# Thanks to Hal Otis | |
# http://www.halotis.com/2009/07/11/sending-email-from-python-using-gmail/ | |
# for the script! | |
import smtplib | |
from email.MIMEText import MIMEText | |
GMAIL_LOGIN = '[email protected]' |