Skip to content

Instantly share code, notes, and snippets.

import time
import requests
import datetime
from dashing import *
url_address = 'http://localhost:7076'
time_out = 5
ui = HSplit(
VSplit(
@marcelstoer
marcelstoer / HtmlPopupTransientWindow.py
Created September 19, 2017 06:30
wxPython transient window with HTML support, selectable text and clickable links
# coding=utf-8
import wx
import wx.html
import webbrowser
class HtmlPopupTransientWindow(wx.PopupTransientWindow):
def __init__(self, parent, style, html_body_content, bgcolor, size):
@brainstorm
brainstorm / esp32_promisc.c
Last active July 26, 2023 19:18
esp32 promiscuous mode and packet injection experiments
// Espressif ESP32 promiscuous mode and packet injection experiments
// by brainstorm at nopcode org
#include "freertos/FreeRTOS.h"
#include "esp_wifi.h"
#include "esp_wifi_internal.h"
#include "lwip/err.h"
#include "esp_system.h"
#include "esp_event.h"
#include "esp_event_loop.h"