| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 |
- 행렬
- component
- localStorage
- todo-list
- websocket
- PROPS
- cli
- URL
- reactivity
- channel
- Vue
- Refactoring
- Server
- toggle
- Dictionary
- CDN
- go
- Vue.js
- golang
- SFC
- Matrix
- App.vue
- goroutine
- method
- emit
- goroutines
- container
- map
- TODO
- graceful shutdown
- Today
- Total
목록URL (2)
ksundev 님의 블로그
2025.06.26 - [[개발] Go/중급 프로젝트] - [URL Checker] hitURL 그리고 느린 URL Checker (순차적) [URL Checker] hitURL 그리고 느린 URL Checker (순차적)urls := []string{ "https://www.airbnb.com/", "https://www.google.com/", "https://www.amazon.com/", "https://www.reddit.com/", "https://www.google.com/", "https://soundcloud.com/", "https://www.facebook.com/", "https://www.instagram.com/", }위의 유명한ksundev.tistory.com이전 URL Ch..
urls := []string{ "https://www.airbnb.com/", "https://www.google.com/", "https://www.amazon.com/", "https://www.reddit.com/", "https://www.google.com/", "https://soundcloud.com/", "https://www.facebook.com/", "https://www.instagram.com/", }위의 유명한 사이트들에 get 요청을 보내는 메서드를 만들어봅시다.참고로 Go 표준 라이브러리 중 net/http를 사용할 것입니다.https://pkg.go.dev/net/http package mainimport ( "errors" "fmt" "net/http")v..