programing
-
[BJ] 11724 - 연결 요소의 개수programing/Algorithm 2019. 9. 28. 23:38
안녕하세요, Einere입니다. (ADblock을 꺼주시면 감사하겠습니다.) 오늘은 백준 11724번 연결 요소의 개수에 대해 포스팅하겠습니다. 연결 요소(connected component) In graph theory, a component, sometimes called a connected component, of an undirected graph is a subgraph in which any two vertices are connected to each other by paths, and which is connected to no additional vertices in the supergraph. 연결 요소란, 무향 그래프에서 서로 다른 두 정점이 경로로 연결되어 있으면서 상위 그래프의 ..
-
[Docker, MySQL] docker에 mysql 설치하기programing/Database 2019. 9. 24. 15:14
docker 설치 최하단 참고 참조 docker에 mysql설치하기 최다한 참고 참조 docker 이미지 생성 docker 컨테이너 생성 docker 컨테이너 활성화 docker container start [OPTIONS] CONTAINER [CONTAINER...] docker container start mysql-dev docker 컨테이너 실행 docker exec [OPTIONS] CONTAINER COMMAND [ARG...] docker exec -it ubuntu_bash bash 참고 https://jmlim.github.io/docker/2019/07/30/docker-mysql-setup/ Docker를 통한 MySQL 설치하기. (macOS) · 기억하기 위한 개발노트 Docker..
-
[Express, Redis] express-session과 redis-server 활용하기programing/Database 2019. 9. 24. 14:24
https://medium.com/mtholla/managing-node-js-express-sessions-with-redis-94cd099d6f2f Managing Node.js - Express Sessions with Redis Article Summary: Learn how & why you should use Redis in-memory database storage for scalable Node.js / Express application session… medium.com Express에서, 세션을 관리하기 위해 express-session미들웨어를 많이 사용합니다. express-session모듈은 세션 테이블을 인메모리에서 부터 상용 DBMS까지 지원하는데요, 그 중 redis-ser..
-
[Redis] mac에 redis설치하는 방법 및 여러가지 정보들programing/Database 2019. 9. 24. 14:06
home brew brew install redis 설정파일로 redis server 켜기 redis-server /usr/local/etc/redis.conf 서버가 켜져 있는지 테스트하기 redis-cli ping "PONG"으로 응답이 온다면 켜져있다는 뜻. 참고 https://medium.com/@petehouston/install-and-config-redis-on-mac-os-x-via-homebrew-eb8df9a4f298 Install and config Redis on Mac OS X via Homebrew by Pete Houston medium.com
-
[Webpack] 웹팩에서 cass(scss) 적용하기programing/Web 2019. 9. 19. 19:56
https://developerhandbook.com/webpack/how-to-configure-scss-modules-for-webpack/ How to configure SCSS modules for Webpack SCSS modules are a fantastic way of writing clean, self contained styles, that are usually consumed by components developerhandbook.com
-
[Algoritm] logn, nlogn은 어떻게 도출할까programing/Algorithm 2019. 9. 13. 18:54
시간복잡도를 보다보면 $O(n\log n)$의 시간복잡도를 가지는 알고리즘들이 많습니다. 이 $n\log n$이란 값은 어떻게 도출되는걸까 생각을 해봤습니다. 간단하게 이진탐색을 예로 들어봅시다. 주어진 데이터는 $n$입니다. 이진탐색은 주어진 데이터를 반씩 쪼개서 둘 중의 한 부분에서 원하는 값을 찾습니다. 최악의 경우, 남은 데이터의 개수가 1이 될 때 까지 반씩 쪼개는 작업을 반복해야 합니다. 그렇다면 다음과 같은 수열을 유추할 수 있습니다. $$n : 1, n/2 : 2, n/4 : 3, ..., 1 : x$$ 이때, 연산의 횟수를 $x$라고 가정했을 때, $n$이 1일 경우 $x$는 무슨 값일까요? 1에서 2를 $x$번 곱해야 $n$이 되므로, $n = 1 \times 2^{x}$라는 방성식을 ..
-
[AWS] S3 버킷 삭제시 access denied 오류 해결 방법programing/Web 2019. 9. 10. 11:59
{ "Version": "2008-10-17", "Statement": [ { "Sid": "...", "Effect": "Allow", "Principal": { "AWS": "..." }, "Action": "s3:PutObject", "Resource": "..." }, { "Sid": "...", "Effect": "Allow", "Principal": { "AWS": "..." }, "Action": [ "s3:ListBucket", "s3:ListBucketVersions", "s3:GetObject", "s3:GetObjectVersion" ], "Resource": [ "...", "..." ] }, { "Sid": "...", "Effect": "Deny", "Principal": { "..