Skip to content

Instantly share code, notes, and snippets.

View mrabro's full-sized avatar
🌍
is Online

Mohammad Rafi Abro mrabro

🌍
is Online
View GitHub Profile
@mrabro
mrabro / README.md
Created September 27, 2022 07:33 — forked from Thong-Tran/README.md
Set up auto build and distribute flutter app on Appcenter

Auto deploying flutter app via Appcenter

Configure project

  • Active AndroidX if it isn’t already.
  • Create and checkout to new branch (appcenter currently only listen trigger from commit code on branch)
  • Setup android:
    • Comment those lines in file android/.gitignore

gradle-wrapper.jar

@mrabro
mrabro / get_youtube_channel_ID.php
Created June 17, 2022 16:51 — forked from webarthur/get_youtube_channel_ID.php
Get youtube Channel ID by channel url
<?php
function get_youtube_channel_ID($url){
$html = file_get_contents($url);
preg_match("'<meta itemprop=\"channelId\" content=\"(.*?)\"'si", $html, $match);
if($match && $match[1]);
return $match[1];
}