Skip to content

Instantly share code, notes, and snippets.

@discatte
discatte / ess_products.txt
Last active December 6, 2024 21:24
ESS AudioDrive Info (Thanks https://twitter.com/rakslice !) ES1488 ES1688 ES1879
(From SEC filing https://www.sec.gov/Archives/edgar/data/907410/0000891618-97-001254.txt)
(Found by https://twitter.com/rakslice)
ESS leverages a leadership position in PC audio, its video and fax/modem
technology, a diverse customer base, recognized quality, and dependable on-time
delivery to provide high quality, cost effective, and highly integrated
multimedia solutions for the personal computer and consumer markets. The Company
has three major families of products: the AudioDRIVE(TM) family addressing the
PC digital audio device market; the VideoDRIVE(TM) family targeting MPEG-1 and
MPEG-2 decompression-based consumer products, such as Video Compact Disk ("VCD")
@Dliv3
Dliv3 / defs.h
Created June 29, 2020 08:19
IDA plugins/defs.h
/*
This file contains definitions used by the Hex-Rays decompiler output.
It has type definitions and convenience macros to make the
output more readable.
Copyright (c) 2007-2017 Hex-Rays
*/
@cbmeeks
cbmeeks / sid.txt
Last active November 10, 2025 19:00
SID File Format
===========================
SID FILE FORMAT DESCRIPTION
===========================
AUTHORS:
Michael Schwendt (PSID v1 and v2)
Simon White (PSID v2NG, RSID)
Dag Lem (PSID v2NG)
Wilfred Bos (PSID v3, RSID v3, PSID v4, RSID v4)
@dhilowitz
dhilowitz / wavecuepoint.c
Last active January 1, 2026 17:43 — forked from jimmcgowan/wavecuepoint.c
This code reads a .wav file and a text file containing marker locations (specified as frame indexes, one per line) and creates a new .wav file with embedded cue points for each location. The code is standard, portable C.
//
// wavecuepoint.c
// Created by Jim McGowan on 29/11/12.
// Turned into command-line utility by David Hilowitz on 19/11/16.
// jim@bleepsandpops.com
// jim@malkinware.com
//
// This function reads a .wav file and a text file containing marker locations (specified as frame indexes, one per line)
// and creates a new .wav file with embedded cue points for each location. The code is standard, portable C.
//
@DraTeots
DraTeots / ComPort over Network.md
Last active January 29, 2026 03:06
ComPort over Network
@rafaelrinaldi
rafaelrinaldi / CloneVector.as
Created May 27, 2011 00:55
Tricky way to clone a Vector in ActionScript.
var vec1 : Vector.<String> = new <String>["blue", "gray", "orange"];
var vec2 : Vector.<String> = vec1.concat();
vec1[0] = "foo";
trace(vec1); // foo,gray,orange
trace(vec2); // blue,gray,orange