Skip to content

Instantly share code, notes, and snippets.

@kosztik
kosztik / media-query.css
Created October 26, 2018 17:07 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@kosztik
kosztik / delete_old_mail.py
Created September 28, 2020 06:44 — forked from Rathgore/delete_old_mail.py
Simple script to delete old messages in an IMAP mailbox
MAIL_SERVER = ''
USERNAME = ''
PASSWORD = ''
MAILBOX = 'Spam'
MAX_DAYS = 7 # Deletes messages older than a week
import imaplib
import datetime
today = datetime.date.today()
@kosztik
kosztik / README.md
Created November 23, 2020 19:18 — forked from guillaumevincent/README.md
Windows Service with Python 3.5 and pyinstaller