IT Guy

IT、AI / Machine Learning、IoT、Project Management、プログラミング、ITIL等々

Software Dev

Apple WWDC 2021動画

Appleの2021年Worldwide Developers ConferenceのKeynote動画 youtu.be Keynote目次 Introduction iOS AirPods iPadOS Privacy iCloud Health watchOS Home macOS Developer Technologies and App Store Link developer.apple.com

Link - 「なぜ日本政府が作るソフトウェアは使えないモノばかりなのか?」

www.atmarkit.co.jp

Windows10のWSLでUbuntu

手順(下記のLinkに従って) WSL構築 インストール後、「sudo apt-get update」は最初にしておこう C/C++開発環境構築 demo@JP:~$ sudo apt-get update demo@JP:~$ sudo apt-get install build-essential Link qiita.com qiita.com 動作確認 Hello World dem…

GCP (Googl Cloud Platform)でUbuntu環境構築

背景 とりあえず、個人用のクラウド上のLinux開発環境がほしい 長年使ってたAWS環境はもうぐちゃぐちゃで、AWS Workspaces for Linuxを使おうとしたが、VPC、Security Group、NIC周りの設定がお互い絡み合ってずっとエラー それにAWS Workspaces for Linuxっ…

Git / GitHub作業の流れ(基本コマンドまとめ)

1週間経つとまたド忘れするため(T_T)、自分用のメモ書きです。 シナリオ やりたいことは、とりあえず個人用として、CodeをGitHubにあげておく。 全体の流れ I. GitHubでRepository作成 II. Local PC側の作業 - 最初のみ III. Local PC側の作業 - 日々の作…

git基本コマンド

初期化 git init 追加、コミット git add <file> git add . git add --all git commit -m "Commit comments" チェックアウト/branch git checkout git checkout <branchname> git branch git branch -a Undo git reset HEAD <file> ステータス確認 git status git log github git clo</file></branchname></file>…