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 code | |
import os | |
import socket | |
import threading | |
import traceback | |
import bluetooth | |
DEVICE_ADDR = "xx:xx:xx:xx:xx:xx" | |
SPP_SERVICE_UUID = "00001101-0000-1000-8000-00805f9b34fb" |
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 django.core.mail import send_mail | |
from django.db import models | |
from django.dispatch import receiver | |
from django_comments_xtd.models import XtdComment | |
class CommentMailFilter(models.Model): | |
# To prevent duplicate mails | |
id = models.IntegerField(primary_key=True) | |
def _comment2html(comment: XtdComment, with_header=True): |
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
// ==UserScript== | |
// @name Наебатор для webinar.ru | |
// @namespace http://melianmiko.ru/ | |
// @version 0.1 | |
// @description С этим скриптом можно ливнуть с лекции и никто это не спалит | |
// @author melianmiko | |
// @match https://events.webinar.ru/ | |
// @icon https://melianmiko.ru/favicon.ico | |
// @grant none | |
// ==/UserScript== |