Skip to content

Instantly share code, notes, and snippets.

View yukpiz's full-sized avatar
🐢
|ω・)و ̑̑༉

yukpiz yukpiz

🐢
|ω・)و ̑̑༉
View GitHub Profile

summaries

  • [0:00~] Introduction(1m)
  • [0:01~] WebAPIサーバーとは?(1m)
  • [0:02~] 最もシンプルなWebサーバー(10m)
  • [0:12~] 課題1: FizzBuzz APIを作ろう(説明1m+作業10m)
  • [0:23~] 課題2: プロフィールを返すAPIを作ろう(説明1m+作業10m)
  • [0:34~] 課題3: プロフィールを保存するAPIを作ろう(説明1m+作業10m)
  • [0:45~] 課題4: 保存したプロフィールを返すAPIを作ろう(説明1m+作業10m)
  • [0:56~] 課題5: プロフィールAPIのクライアントを作ろう(説明1m+作業10m)
  • [~0:67] 終了
package main
import (
"fmt"
"github.com/julienschmidt/httprouter"
"html/template"
"log"
"net/http"
)
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
@yukpiz
yukpiz / get_client.go
Last active September 11, 2018 06:18
package main
import (
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
)
package main
import (
"encoding/json"
"fmt"
"github.com/julienschmidt/httprouter"
"io/ioutil"
"log"
"net/http"
)
package main
import (
"encoding/json"
"fmt"
"github.com/julienschmidt/httprouter"
"io/ioutil"
"log"
"net/http"
)
package main
import (
"encoding/json"
"fmt"
"github.com/julienschmidt/httprouter"
"log"
"net/http"
)
@yukpiz
yukpiz / fizzbuzz.go
Last active September 11, 2018 06:16
package main
import (
"fmt"
"github.com/julienschmidt/httprouter"
"log"
"net/http"
"strconv"
)

golang-hands-on(解なし)

※計画中の資料ですので、内容が変わる事があります。

  • 全体で50分で達成することを目標とします
  • 各テーブルでのサポーター(3人)

Introduction

沖縄Go言語勉強会 企画

企画中:確定ではありません

イベント概要

  • 東京で活動している登壇・勉強会コミュニティ(#engineers_lt)
  • #engineers_ltのイベントグループ使用OK
  • 沖縄のエンジニアが登壇する機会を作りたい
  • 今回はGo言語というテーマを通す