- GitとGitHubを知らない
- 言葉だけ聞いたことがある
- GitとGitHubとはなにかを知る
- 使い方を知る
package main | |
import ( | |
"log" | |
"os" | |
) | |
func main() { | |
if len(os.Args) < 2 { | |
return |
function! s:echo_err(msg) abort | |
echohl ErrorMsg | |
echom '[code2img]' a:msg | |
echohl None | |
endfunction | |
function! s:on_err_vim(ch, msg) abort | |
call s:echo_err(a:msg) | |
endfunction |
package main | |
import ( | |
"encoding/json" | |
"io/ioutil" | |
"log" | |
"os" | |
"testing" | |
) |
package main | |
import "testing" | |
func BenchmarkMapStruct(b *testing.B) { | |
m := map[int]interface{}{ | |
0: 0, | |
} | |
for i := 0; i < b.N; i++ { |
package main | |
import ( | |
"context" | |
"log" | |
"os" | |
"github.com/docker/docker/api/types" | |
"github.com/docker/docker/client" | |
streamer "github.com/skanehira/docker-streamer" |
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<script src="https://cdn.jsdelivr.net/npm/vue"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.js"></script> | |
</head> | |
<body> | |
<div id="app"> |
https://github.com/neovim/neovim/wiki/Building-Neovim#build-prerequisites
ChromeのGoogle拡張で使っているエンドポイントを使えば翻訳結果を取得できる
curl -s "https://translate.googleapis.com/translate_a/single?client=gtx&sl=en&tl=ja&dt=t&q=hello"
new WebSocket("ws://localhost:1323/ws", ["hello", "world"]) |