Skip to content

Instantly share code, notes, and snippets.

View thilojaeggi's full-sized avatar
😀

Thilo thilojaeggi

😀
View GitHub Profile
@thilojaeggi
thilojaeggi / UnevenRoundedRectangle.swift
Last active May 2, 2024 11:44
Swift uneven Rounded Rectangle
//
// UnevenRoundedRectangle.swift
//
// Created by Thilo on 10.08.2023.
//
import Foundation
import SwiftUI
struct RectangleCornerRadii {
version="2023.02.dev1501" arch=`docker image ls | grep -- '-hassio-observer' | awk '{print $1}' | awk -F/ '{print $3}' | awk -F- '{print $1}'` && docker pull "ghcr.io/home-assistant/${arch}-hassio-supervisor:${version}" && docker tag "ghcr.io/home-assistant/${arch}-hassio-supervisor:${version}" "ghcr.io/home-assistant/${arch}-hassio-supervisor:latest" && docker stop hassio_supervisor && docker rm hassio_supervisor
#EXTM3U
#EXTINF:0 tvg-name="SRF1 HD" tvg-language="chde" tvg-country="ch" tvg-id="1010" tvg-logo="https://tv7api2.tv.init7.net/media/logos/SRF1HD_300x300px.png" group-title="",SRF1 HD
https://tv7api2.tv.init7.net/api/replay/?channel=5620aa6c-3349-44bc-91eb-dfb08e70634f
#EXTINF:0 tvg-name="SRFzwei HD" tvg-language="chde" tvg-country="ch" tvg-id="1012" tvg-logo="https://tv7api2.tv.init7.net/media/logos/srf-zwei-hd-neu.png" group-title="",SRFzwei HD
https://tv7api2.tv.init7.net/api/replay/?channel=0d838fbe-c285-4cc9-8f94-c1b1d11ea87c
#EXTINF:0 tvg-name="SRF Info HD" tvg-language="chde" tvg-country="ch" tvg-id="1015" tvg-logo="https://tv7api2.tv.init7.net/media/logos/srf-info-hd-neu.png" group-title="",SRF Info HD
https://tv7api2.tv.init7.net/api/replay/?channel=9f30a91d-7f1a-4307-964a-31e19ca28d7e
#EXTINF:0 tvg-name="blue Zoom D" tvg-language="chde" tvg-country="ch" tvg-id="1020" tvg-logo="https://tv7api2.tv.init7.net/media/logos/Zoom_D.jpg" group-title="",blue Zoom D
https://tv7api2.tv.init7.net/api/replay/?cha
@thilojaeggi
thilojaeggi / tv7.m3u
Last active May 22, 2024 20:29
init7 tv7 HLS Streams
#EXTM3U
#EXTINF:0 tvg-name="SRF1 HD" tvg-language="chde" tvg-country="ch" tvg-id="1010" tvg-logo="https://tv7api2.tv.init7.net/media/logos/SRF1HD_300x300px.png" group-title="",SRF1 HD
https://tv7api2.tv.init7.net/api/live/?channel=5620aa6c-3349-44bc-91eb-dfb08e70634f
#EXTINF:0 tvg-name="SRFzwei HD" tvg-language="chde" tvg-country="ch" tvg-id="1012" tvg-logo="https://tv7api2.tv.init7.net/media/logos/srf-zwei-hd-neu.png" group-title="",SRFzwei HD
https://tv7api2.tv.init7.net/api/live/?channel=0d838fbe-c285-4cc9-8f94-c1b1d11ea87c
#EXTINF:0 tvg-name="SRF Info HD" tvg-language="chde" tvg-country="ch" tvg-id="1015" tvg-logo="https://tv7api2.tv.init7.net/media/logos/srf-info-hd-neu.png" group-title="",SRF Info HD
https://tv7api2.tv.init7.net/api/live/?channel=9f30a91d-7f1a-4307-964a-31e19ca28d7e
#EXTINF:0 tvg-name="blue Zoom D" tvg-language="chde" tvg-country="ch" tvg-id="1020" tvg-logo="https://tv7api2.tv.init7.net/media/logos/Zoom_D.jpg" group-title="",blue Zoom D
https://tv7api2.tv.init7.net/api/live/?channel=35e
@thilojaeggi
thilojaeggi / tvopench.m3u
Last active January 22, 2022 00:54
tvopench.m3u
#EXTM3U url-tvg="http://epg.today/guide/free/FreeEU.xml.gz"
#EXTREM:german
#EXTREM: #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="" tvg-chno="" channel-id="" group-title="(No group)",channel name
#EXTINF:-1 tvg-id="" tvg-name="SRF 1" tvg-logo="http://static.epg.best/ch/SRF1.ch.png" tvg-chno="282" channel-id="282",SRF1 HD
rtp://239.186.68.1:10000
#EXTINF:-1 tvg-id="" tvg-name="SRF zwei" tvg-logo="http://static.epg.best/ch/SRF2.ch.png" tvg-chno="284" channel-id="284",SRF2 HD SRF zwei HD
rtp://239.186.68.2:10000
#EXTINF:-1 tvg-id="" tvg-name="SRF Info" tvg-logo="http://static.epg.best/ch/SRFInfo.ch.png" tvg-chno="286" channel-id="286",SRF info HD
rtp://239.186.68.202:10000
#EXTINF:-1 tvg-id="" tvg-name="3sat" tvg-logo="http://static.epg.best/at/3sat.at.png" tvg-chno="175" channel-id="175",3sat HD
String getCurrentFragment(){
Fragment visiblefragment = getSupportFragmentManager()
.findFragmentById(R.id.newusercontainer);
String[] currentFragment = visiblefragment.toString().split("\\{");
return currentFragment[0].toString();
}