Skip to content

Instantly share code, notes, and snippets.

View kr4fty's full-sized avatar

Tapia Favio kr4fty

  • Buenos Aires, Argentina
View GitHub Profile
@kr4fty
kr4fty / livestream1.m3u8
Last active December 26, 2023 13:25
Oficial Radio Stream Horizonte FM - 101.9 MHz - Buenos Aires - Argentina
#EXTM3U
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=128000,CODECS="mp4a.40.2"
https://jireh-1-hls-audio-ar-isp.dps.live/hls-audio/4e252a65837b69e349d5d8c1033152b4/hztear/playlist/index1-edge.m3u8?dpssid=b41014125200658ad2b51d590&sid=ba5t1l1xb4554928711658ad2b51d58c&ndvc=1
@kr4fty
kr4fty / itoa.c
Last active August 6, 2017 19:48
itoa: int to ascii
/* ITOA()
*
* int to ascii
*
* Descripcion:
* Convierte un entero a su ascii equivalente.
* Retorna:
* un puntero a string con los caracteres numericos que componen el entero
* Ejemplo:
* buff=itoa(1024): luego en buff={'1','0','2','4','\0'}