Skip to content

Instantly share code, notes, and snippets.

View tbrlpld's full-sized avatar

Tibor Leupold tbrlpld

View GitHub Profile
@tbrlpld
tbrlpld / transfer-postgres-to-sqlite.sh
Created March 11, 2023 23:37
Transfer Django PostgreSQL to SQLite
# 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
@tbrlpld
tbrlpld / sphere.html
Created May 30, 2021 03:47
HTML CSS sphere doodle...
<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>
@tbrlpld
tbrlpld / abstract.py
Last active May 17, 2020 02:19
How to make sure you are only using the abstract interface of a concrete implementation.
# -*- 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.
"""
@tbrlpld
tbrlpld / socketclient.py
Created April 23, 2020 03:17
Simple Python socket example
import socket
HOST = "127.0.0.1"
PORT = 5000
s = socket.socket()
s.connect((HOST, PORT))
# msg = str(input("Message -> "))
@tbrlpld
tbrlpld / email_via_sendgrid_client.py
Last active April 23, 2020 03:15
Send emails with Python (and Sendgrid)
# 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',
@tbrlpld
tbrlpld / classinitnone.py
Last active April 23, 2020 00:14
Just playing around with the class init method and its return values
# -*- conding: uft-8 -*-
"""Just playing around with the class init method."""
class InitReturnNone():
def __init__(self, var):
self.var = var
return None
@tbrlpld
tbrlpld / base.css
Last active May 21, 2020 00:02
My basic CSS resets
* {
box-sizing: border-box;
font-family: 'Helvetica Neue', Arial, sans-serif;
}
html,
body,
h1,
h2,
@tbrlpld
tbrlpld / tunnel.py
Created April 15, 2020 17:38
Establish ssh tunnel via Python
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")
@tbrlpld
tbrlpld / decor.py
Created April 15, 2020 17:36
Python decorators
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
@tbrlpld
tbrlpld / singleton.py
Created April 15, 2020 17:29
Python singleton
# -*- coding: utf-8 -*-
"""Trying to create a singleton."""
class Singleton(object):
"""The public class."""
instance = None