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
# Bash "strict mode" | |
set -euo pipefail | |
IFS=$'\n\t' | |
echo "Transfer data from PostgreSQL to SQLite" | |
DUMP_FILE=$DB_DIR/dbdump.json | |
echo "Migrate SQLite database..." | |
USE_SQLITE=true ./manage.py migrate --no-input |
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
<div style="padding: 100px;background: rgb(11, 11, 11);"> | |
<div style="background: white;border-radius: 9999px;width: 100px;height: 100px;margin: 50 auto;box-shadow: 12px -26px 27px 4px black inset, 5px -9px 33px -10px white;ack;ac;"></div> | |
</div> |
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
# -*- coding: utf-8 -*- | |
""" | |
Defines the method patters the are supposed to be implemented in concrete. | |
There is no actual implementation here. This serves as a interface. The | |
consumer should use the concrete implementations only to the extend defined | |
here. | |
""" |
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 socket | |
HOST = "127.0.0.1" | |
PORT = 5000 | |
s = socket.socket() | |
s.connect((HOST, PORT)) | |
# msg = str(input("Message -> ")) |
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
# from here: https://github.com/sendgrid/sendgrid-python#quick-start | |
import os | |
from sendgrid import SendGridAPIClient | |
from sendgrid.helpers.mail import Mail | |
message = Mail( | |
from_email='[email protected]', | |
to_emails='[email protected]', | |
subject='Sending with Twilio SendGrid is Fun', |
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
# -*- conding: uft-8 -*- | |
"""Just playing around with the class init method.""" | |
class InitReturnNone(): | |
def __init__(self, var): | |
self.var = var | |
return 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
* { | |
box-sizing: border-box; | |
font-family: 'Helvetica Neue', Arial, sans-serif; | |
} | |
html, | |
body, | |
h1, | |
h2, |
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 os | |
import time | |
from sshtunnel import SSHTunnelForwarder | |
# Set the environment variable that contains the passphrase for the given | |
# private key file. | |
KEY_PASSPHRASE = os.environ.get("SSH_PRIVATE_KEY_PASSPHRASE") |
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
print(" NO AGRUMENTS ".center(30, "#")) | |
def this_adds_decoration(function_to_decorate): | |
def this_creates_decoration(): | |
print("Before") | |
function_to_decorate() | |
print("After") | |
# Return the created decoration to add it to a function |
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
# -*- coding: utf-8 -*- | |
"""Trying to create a singleton.""" | |
class Singleton(object): | |
"""The public class.""" | |
instance = None |
NewerOlder