Go 언어로 윈도우 어플을 개발할 일은 별로 없겠지만 Go 언어로 Electron을 이용하여 윈도우 어플을 개발할수 있다.바로 go-astilectron 이다. Go 언어로 작성한 어플을 실행하면 Console 윈도우가 표시 된다.Console 윈도우를 숨기기 위해서는 Go 작성한 어플을 빌드할 때 아래와 같은 옵션을 주면 된다.$ go build -ldflags -H=windowsgui 파일명.go 참고https://stackoverflow.com/questions/36727740/how-to-hide-console-window-of-a-go-program-on-windowshttps://stackoverflow.com/questions/23250505/how-do-i-create-an-executab..
출처 : https://gist.github.com/denji/12b3a568f092ab951456 Generate private key (.key) # Key considerations for algorithm "RSA" ≥ 2048-bit $ openssl genrsa -out server.key 2048 # Key considerations for algorithm "ECDSA" ≥ secp384r1 # List ECDSA the supported curves (openssl ecparam -list_curves) $ openssl ecparam -genkey -name secp384r1 -out server.key Generation of self-signed(x509) public key (PE..
아래는 예제 이다. package main import ( "fmt" "os" "syscall" ) // ansi color const ( black = "\033[1;30m%s\033[0m" red = "\033[1;31m%s\033[0m" green = "\033[1;32m%s\033[0m" yellow = "\033[1;33m%s\033[0m" blue = "\033[1;34m%s\033[0m" purple = "\033[0;36m%s\033[0m" cyan = "\033[0;36m%s\033[0m" white = "\033[0;37m%s\033[0m" ) func init() { // cmd 에서 ansi color 활성화 시키는 부분 handle := syscall.Handle(os.Stdout..
bcrypt 설치 go get -u -v golang.org/x/crypto/bcrypt 예제 코드 package main import ( "golang.org/x/crypto/bcrypt" ) func main() { pwd := "abcdefg1234" hashedPwd, err := GeneratePassword(pwd) if err == nil { equalPwd := EqualPassword(hashedPwd, pwd) fmt.Println("hashed password : ", hashedPwd) fmt.Println("equal password : ", equalPwd) } } func GeneratePassword(password string) (string, error) { pass :=..
아래의 명령을 이용하여 fresh를 설치 한다 go get github.com/pilu/fresh 그리고 해당 프로젝트 폴더로 이동후 fresh를 실행 한다. (내 웹 프로젝트가 test 라면 아래와 같이 test 폴더로 이동후 fresh를 실행하면 아래야 같이 메시지가 나온다.) C:\work\src\test>fresh 16:56:36 runner | InitFolders 16:56:36 runner | mkdir ./tmp 16:56:36 watcher | Watching . 16:56:36 watcher | Watching templates 16:56:36 main | Waiting (loop 1)... 16:56:36 main | receiving first event / 16:56:36 main..
- Total
- Today
- Yesterday