- test1
- test2
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Protocol Documentation</title> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/> | |
<style> | |
body { | |
width: 60em; |
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
package main | |
import "fmt" | |
func main() { | |
var a, b, c int | |
var s string | |
fmt.Scanf("%d\n%d %d\n%s", &a, &b, &c, &s) | |
fmt.Println(a+b+c, s) | |
} |
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
package main | |
import "fmt" | |
type ArrayInt []int | |
func main() { | |
var is []int | |
for i := 0; i < 10; i++ { | |
is = append(is, i) |
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
package application | |
import ( | |
"context" | |
"strings" | |
) | |
// ... interfaceやstructの定義は一般的なものなので省略 | |
func (app *application) Authorize(ctx context.Context, token string) (*model.Certification, error) { |
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
# codeing:utf-8 | |
import cv2 | |
import os | |
import glob | |
import imghdr | |
import tensorflow as tf | |
from tensorflow import keras |
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
#codeing:utf-8 | |
import cv2 | |
import sys, os, glob, imghdr | |
DIRS = [ | |
"0_sakura_minamoto", | |
"1_saki_nikaido", | |
"2_ai_mizuno", | |
"3_junko_konno", |
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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"strings" | |
) |
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
type User struct { | |
ID int | |
Profile Profile | |
Reservations []Reservation | |
Followers []User | |
Follows []User | |
WishList []Wish | |
CreatedAt time.Time | |
} |
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
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
fmt.Println("Hello, golang!") | |
} |
NewerOlder