본문 바로가기

전체 글9

Golang POP3 구현 package routes import ( "bytes" "crypto/rand" "encoding/base64" "encoding/json" "fmt" "io" "io/ioutil" "log" "mime" "mime/multipart" "mime/quotedprintable" "net/http" "net/mail" "strconv" "strings" "github.com/taknb2nch/go-pop3" ) type popMail struct { Title string From string To string Uid string Date string Content string } func pop(w http.ResponseWriter, r *http.Request) { addr := "pop.naver... 2020. 10. 30.
반응형 테이블 특정 열 숨기기 /* 테이블 컬럼 숨기기 */ @media (max-width: 575px) { .col1 { display: none; visibility: hidden; width: 0%; } } 2020. 10. 30.
Multi-step LSTM 시계열 예측 (by Jason Brownlee) Multistep Time Series Forecasting with LSTMs in Python (번역) 개인적인 공부를 위해 번역해서 포스트 올립니다. 하지만 오역이 난무합니다. (수정 피드백 환영) - 출처 machinelearningmastery.com/multi-step-time-series-forecasting-long-short-term-memory-networks-python/ Multistep Time Series Forecasting with LSTMs in Python The Long Short-Term Memory network or LSTM is a recurrent neural network that can learn and forecast long sequences. A ben.. 2020. 9. 4.
go-imap, charset 오류(ks_c_5601-1987 error) Golang, go-imap 패키지 사용 중 ks_c_5601-197 오류가 생길 때, ​ 1. go-imap을 사용하는 함수 안에 다음 코드 추가 imap.CharsetReader = charset.Reader ​ 2. charset.go 파일 안에 "ks_c_5601-1987": korean.EUCKR 추가 var charsets = map[string]encoding.Encoding{ ... "ks_c_5601-1987": korean.EUCKR, ... } 2020. 6. 30.