Skip to content

Instantly share code, notes, and snippets.

View AlifBrahim's full-sized avatar

Alif Ibrahim AlifBrahim

View GitHub Profile
#EXTM3U
#EXTINF:-1 tvg-id="TV1.my" tvg-name="TV1" group-title="RTM",TV1
#EXTVLCOPT:http-referrer=https://rtm-player.glueapi.io/
https://d25tgymtnqzu8s.cloudfront.net/smil:tv1/playlist.m3u8?id=1
#EXTINF:-1 tvg-id="TV2.my" tvg-name="TV2" group-title="RTM",TV2
#EXTVLCOPT:http-referrer=https://rtm-player.glueapi.io/
https://d25tgymtnqzu8s.cloudfront.net/smil:tv2/playlist.m3u8?id=2
#EXTM3U
#EXTINF:-1 tvg-id="tv1.my" group-title="RTM",TV1
https://raw.githubusercontent.com/MIFNtechnology/HTML5/main/content/Tv1_live_stream/master.m3u8
#EXTINF:-1 tvg-id="tv2.my" group-title="RTM",TV2
https://raw.githubusercontent.com/MIFNtechnology/HTML5/main/content/Tv2_live_stream/master.m3u8
#EXTINF:-1 tvg-id="tv6.my" group-title="RTM",TV6
https://raw.githubusercontent.com/MIFNtechnology/HTML5/main/content/Tv6_live_stream/master.m3u8
#EXTINF:-1 tvg-id="okey.my" group-title="RTM",Okey TV
https://raw.githubusercontent.com/MIFNtechnology/HTML5/main/content/OkeyTv_live_stream/master.m3u8
#EXTINF:-1 tvg-id="sukanrtm.my" group-title="RTM",Sukan RTM
@AlifBrahim
AlifBrahim / Code.gs
Last active September 3, 2023 22:47
Google Sheets Apps Script for Toastmasters Agenda generator
function getMeetingDates() {
var dateNow = new Date().toISOString();
var apiKey = 'AIzaSyBLRwnl6E51xmZESdP-HIHHiKovk_YfC_0';
var url = `https://www.googleapis.com/calendar/v3/calendars/p75em956e3b5r49tdpivg9ag2c%40group.calendar.google.com/events?orderBy=startTime&singleEvents=true&timeMin=${dateNow}&key=${apiKey}`;
var res = UrlFetchApp.fetch(url);
var repo = JSON.parse(res.getContentText());
var dates = repo.items.map(function(item) {
return item.start.dateTime.slice(0, 10);
});