This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Youtube Data API > `activities`のリクエスト。 | |
* 公式Docs: https://developers.google.com/youtube/v3/docs/activities/list?hl=ja | |
* | |
* 取得対象のチャンネルの選び方は大きく分けてつ: | |
* - チャンネルIDを指定する方法(`channelId`) | |
* - 認証ユーザーのHOMEページのアクティビティのみにする(`home`=`true`) | |
* - 認証ユーザーが所有するチャンネルのみにする(`mine`=`true`) | |
*/ | |
export interface IActivitiesRequest { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
sudo -v | |
sudo apt-get update | |
sudo apt-get dist-upgrade -y | |
sudo apt-get autoremove -y |