This file contains hidden or 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 datetime | |
| import smtplib | |
| import ssl | |
| from email.headerregistry import Address | |
| from email.message import EmailMessage | |
| import dbus | |
| import pytz | |
| from dbus.mainloop.glib import DBusGMainLoop | |
| from gi.repository import GLib | |
| from jinja2 import Template |
This file contains hidden or 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/env python3 | |
| from PyQt5.QtWidgets import QApplication, QWidget | |
| from PyQt5.QtCore import Qt, QTimer, QPoint, pyqtSignal, QObject | |
| from PyQt5.QtGui import QPainter, QPen, QColor | |
| from pynput import keyboard, mouse | |
| import sys | |
| class RippleWidget(QWidget): | |
| def __init__(self, x, y): | |
| super().__init__() |
OlderNewer