일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Back tracking
- Linked list
- 알고리듬
- 알고리즘
- boj
- GitHub
- Trie
- DFS
- SWEA
- Vue.js
- Algorithm
- Bruth Force
- gpdb
- django
- aws
- Python
- BFS
- 코딩테스트
- 코테
- JavaScript
- hash table
- 모의SW역량테스트
- programmers
- spring boot
- 시뮬레이션
- Data Structure
- Priority Queue
- CSV
- SQL
- 구현
- Today
- Total
목록Dev./Golang (2)
hotamul의 개발 이야기
Concurrency vs. parallelism Concurrency is about dealing with lots of things at once. Parallelism is about doing lots of things at once. Not the same, but related. Concurrency is about structure, parallelism is about execution. Concurrency provides a way to structure a solution to solve a problem that may (but not necessarily) be parallelizable. An analogy Concurrent: Mouse, keyboard, display, a..
Installation ❯ brew intstall go When installed, run go version to see the installed version of Go. ❯ go version go version go1.17.6 darwin/arm64 Setup worksapce The GOPATH environment variable specifies the location of your workspace. It defaults to a directory named go inside your home directory. ❯ go env GOPATH $HOME/go add GOPATH to your shell/bash/zsh initialization file .bash_profile, .bash..