Skip to content

Instantly share code, notes, and snippets.

View G-Pereira's full-sized avatar

Gonçalo Pereira G-Pereira

View GitHub Profile
@GrahamM
GrahamM / I2S_MIC_UDP.ino
Last active March 18, 2025 15:45
ESP32 I2S Mic UDP streamer
/**
* ESP32 I2S UDP Streamer
*
* This is influenced by maspetsberger's NoiseLevel at
* https://github.com/maspetsberger/esp32-i2s-mems/blob/master/examples/NoiseLevel/NoiseLevel.ino
*
* @author GrahamM
*/
#include <driver/i2s.h>
@pksunkara
pksunkara / config
Last active June 17, 2025 08:03
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
# vi: ft=dosini
[user]
name = Pavan Kumar Sunkara
email = [email protected]
github = pksunkara
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[column]