Skip to content

Instantly share code, notes, and snippets.

@chmod755
chmod755 / plex.md
Last active May 21, 2025 12:02
Plex radio station

I have added webradios to my plex media server, and i "cast" them to a rasplex player with my phone (Android plex) : it works well. However it does not work playing it directly through plex Android....

I think it should work if you connect to sonos, as it is the same way as i connect to rasplex.

So:

Create a txt file with this in it :

EXTM3U EXT-X-MEDIA-SEQUENCE:0

@chmod755
chmod755 / sql1.md
Last active March 7, 2022 10:14
SQL to get cols for table

select schema_name(tab.schema_id) as schema_name, tab.name as table_name, col.column_id, col.name as column_name, t.name as data_type,
col.max_length, col.precision from sys.tables as tab inner join sys.columns as col on tab.object_id = col.object_id