Skip to content

Instantly share code, notes, and snippets.

View dimus's full-sized avatar
💭
langextract

Dmitry Mozzherin dimus

💭
langextract
  • University of Illinois
  • Champaign, IL, US
View GitHub Profile
@branzo
branzo / cam_ptz.sh
Created May 23, 2026 09:32 — forked from rm1138/cam_ptz.sh
eMeet Pixy (328f:00c0) PTZ and HID control for Linux - reverse-engineered tracking, privacy, gesture, and audio mode commands
#!/usr/bin/env bash
# PTZ and mode control for eMeet Pixy webcam (USB 328f:00c0)
# Uses v4l2-ctl for PTZ and HID for tracking/idle mode
# Usage: cam_ptz.sh <command> [value]
#
# --- How the HID protocol was reverse-engineered ---
#
# The eMeet Pixy exposes two control interfaces:
# 1. UVC (standard) — pan/tilt/zoom/focus via v4l2-ctl
# 2. HID (proprietary) — tracking, audio, gesture, privacy via /dev/hidrawN
@marcobrt
marcobrt / class_ScientificNameParser.inc
Last active June 29, 2026 07:50
Singleton PHP class used to keep an instance of gnparser open in streaming mode.
<?php
/*
* MIT License
*
* Copyright (c) 2021 Marco Bortolin
*/
class ScientificNameParser
{
protected static $parser = null;
protected $proc = null;
@pteich
pteich / main.go
Last active May 30, 2024 02:57
Example for using go's sync.errgroup together with signal detection signal.NotifyContext to stop all running goroutines
package main
import (
"context"
"errors"
"fmt"
"os/signal"
"syscall"
"time"
@huytd
huytd / .gitconfig
Created August 4, 2016 16:26
Use neovim as diff tool
[merge]
tool = vimdiff
[mergetool]
prompt = true
[mergetool "vimdiff"]
cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
[difftool]
prompt = false
[diff]
tool = vimdiff
@rgreenjr
rgreenjr / postgres_queries_and_commands.sql
Last active June 4, 2026 21:14
Useful PostgreSQL Queries and Commands
-- show running queries (pre 9.2)
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query
FROM pg_stat_activity
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%'
ORDER BY query_start desc;
-- show running queries (9.2)
SELECT pid, age(clock_timestamp(), query_start), usename, query
FROM pg_stat_activity
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%'