Skip to content

Instantly share code, notes, and snippets.

@philhartung
philhartung / aes67.py
Created December 8, 2021 15:33
Simple AES67 implementation using gstreamer. Does not implement any discovery.
import sys
import gi
gi.require_version('Gst', '1.0')
gi.require_version('GstNet', '1.0')
from gi.repository import Gst, GstNet, GObject, GLib
Gst.init([])
mainloop = GLib.MainLoop()
@d3noob
d3noob / .block
Last active November 23, 2024 20:25
Collapsible tree diagram in v7
license: mit
let Gpio
const express = require('express')
const router = express.Router()
// Onoff cannot be installed on devices without Gpio
try {
Gpio = require('onoff').Gpio
} catch (err) {
Gpio = {
accessible: false
@barbietunnie
barbietunnie / additional_notes.md
Last active June 26, 2024 01:20 — forked from JaisonBrooks/remove_input_number_scroll.js
Disable Input[type=number] scroll action

Disable Input[type=number] scroll action

WebKit desktop browsers add little up down arrows to number inputs called spinners.

These spinners have their value changed inadvertently when the scroll wheel is active on the number field. To prevent this from happen, you may choose to prevent this functionality, even though it ignores accessibility considerations.

Here are further discussions regarding this:

@philhartung
philhartung / ptp.py
Last active July 25, 2024 14:56
Sync to PTPv2 clock and send RTP according to AES67. SAP/SDP not implemented here.
import sys
import gi
gi.require_version('Gst', '1.0')
gi.require_version('GstNet', '1.0')
from gi.repository import Gst, GstNet, GObject, GLib
Gst.init([])
mainloop = GLib.MainLoop()
@larshb
larshb / arpscan.py
Last active July 20, 2023 19:36
ARP-scan for Windows
import re
from subprocess import CalledProcessError, check_output as echo
from sys import platform
from socket import gethostbyaddr
# Config
IGNORE_BROADCAST = True
LOOKUP_HOSTNAMES = True
def get_host(ip):
import sys
import gi
gi.require_version('Gst', '1.0')
gi.require_version('GstNet', '1.0')
from gi.repository import Gst, GstNet
ptp_domain = 0
ptp_interfaces = ['enp0s25']
@adrobinoga
adrobinoga / multiple_realtime.py
Last active January 2, 2025 15:38
test script to read realtime events from multiple zkteco devices
import time
import datetime
from utils import *
import pyzk.pyzk as pyzk
from pyzk.zkmodules.defs import *
from pyzk.misc import *
"""
Script to connect to multiple ZKTeco devices and check the incoming events by pooling.
@nazrdogan
nazrdogan / axios.js
Created July 7, 2017 13:08
Axios- 401 Re Login
// Add a request interceptor
axios.interceptors.request.use(function (config) {
// Do something before request is sent
return config;
}, function (error) {
// Do something with request error
return Promise.reject(error);
});
// Add a response interceptor
@hectorm
hectorm / README.md
Created May 7, 2017 20:47 — forked from jm3/README.md
Cognitive Bias Codex