0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

案件準備

Last updated at Posted at 2022-06-16

案件準備

0ベース

読書・今までの知識をまとめる。

◾️ 10年戦えるデータ分析
10年戦えるデータ分析入門 SQLを武器にデータ活用時代を生き抜く (Informatics &IDEA) by 青木 峰郎
●進捗
一読しました。

あるある

Oracleとpostgreの違いを軽くチェック
https://www.ashisuto.co.jp/tech-note/article/20141006_db.html

作戦

かなりたくさんの言葉を提示されたので作戦を考える。
Go

React

Go編

チートシートを手に入れる

サクッとドットインストールを一周する。

はじめてのGo言語(完了)
https://dotinstall.com/lessons/basic_golang_v2

fizzbuzzやってみる。

package main

import "fmt"

func main() {
	i := 1
	for i <= 100 {
		if i%3 == 0 && i%5 == 0 {
			fmt.Println("fizzbuzz")
		} else if i%3 == 0 {
			fmt.Println("fizz")
		} else if i%5 == 0 {
			fmt.Println("buzz")
		}
		i = i + 1
	}
}

Udemy学んでみる

https://www.udemy.com/course/go-fintech/
それが終わったらテキストを学びつつReactへ

◾️Take Away
option + ¥ ()(MAC)
Tab
Shift + Tab

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?