AWS 학습 링크집 시리즈
- AWS 학습 자료집 http://bit.ly/aws-study-resource
- AWS 공인 솔루션스 아키텍트 - 어소시에이트 수험 가이드 http://bit.ly/sacertguide
- AWS 공인 개발자 - 어소시에이트 수험 가이드 http://bit.ly/devcertguide
- AWS 보안 관련 컨텐츠 모음집 http://bit.ly/seccontents
| Go 18 hrs 19 mins ██████████████████▌░░ 88.5% | |
| Java 57 mins ▉░░░░░░░░░░░░░░░░░░░░ 4.7% | |
| Bash 43 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.5% | |
| Other 18 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.5% | |
| JavaScript 12 mins ▏░░░░░░░░░░░░░░░░░░░░ 1.0% |
| 🌞 Morning 429 commits ███████▍░░░░░░░░░░░░░ 35.4% | |
| 🌆 Daytime 640 commits ███████████░░░░░░░░░░ 52.8% | |
| 🌃 Evening 117 commits ██░░░░░░░░░░░░░░░░░░░ 9.7% | |
| 🌙 Night 26 commits ▍░░░░░░░░░░░░░░░░░░░░ 2.1% |
AWS 학습 링크집 시리즈
| {"lastUpload":"2020-03-12T02:16:23.481Z","extensionVersion":"v3.4.3"} |
| # <type>: (If applied, this commit will...) <subject> (Max 50 char) | |
| # |<---- Using a Maximum Of 50 Characters ---->| | |
| # Explain why this change is being made | |
| # |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
| # Provide links or keys to any relevant tickets, articles or other resources | |
| # Example: Github issue #23 |
| version: '2.2' | |
| services: | |
| es01: | |
| image: docker.elastic.co/elasticsearch/elasticsearch:7.4.2 | |
| container_name: es01 | |
| environment: | |
| - node.name=es01 | |
| - cluster.name=es-docker-cluster | |
| - discovery.seed_hosts=es02,es03 | |
| - cluster.initial_master_nodes=es01,es02,es03 |
Custom recipe to get macOS 10.12 Sierra running from scratch, setup applications and developer environment. This is very similar (and currently mostly the same) as my 10.11 El Capitan setup recipe and 10.10 Yosemite setup recipe. I am currently tweaking this for 10.12 Sierra and expect to refine this gist over the next few weeks.
I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. I generally reinstall each computer from scratch every 6 months, and I do not perform upgrades between releases.
This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.
You are encouraged to fork this and modify it to your heart's content to match your o
| #!/bin/sh | |
| SL=/etc/apt/sources.list | |
| PARAM="r:hm:dna" | |
| KAKAO=mirror.kakao.com | |
| NEOWIZ=ftp.neowiz.com | |
| HARU=ftp.harukasan.org |
| #!/usr/bin/env python | |
| """ | |
| Use Selenium to Measure Web Timing | |
| Performance Timing Events flow | |
| navigationStart -> redirectStart -> redirectEnd -> fetchStart -> domainLookupStart -> domainLookupEnd | |
| -> connectStart -> connectEnd -> requestStart -> responseStart -> responseEnd | |
| -> domLoading -> domInteractive -> domContentLoaded -> domComplete -> loadEventStart -> loadEventEnd |
| // 다음은 수정자 메소드를 이용한 방식이다. | |
| public class UserDao { | |
| private ConnectionMaker connectionMaker; | |
| public void setConnectionMaker(ConnectionMaker connectionMaker) { | |
| this.connectionMaker = connectionMaker; | |
| } | |
| } | |
| @Bean | |
| public UserDao userDao() { |