CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자
- 이 문서는 CMake를 주관적으로 서술합니다
- 이 문서를 통해 CMake를 시작하기엔 적합하지 않습니다
https://cgold.readthedocs.io/en/latest/ 3.1 챕터까지 따라해본 이후 기본사항들을 속성으로 익히는 것을 돕기위한 보조자료로써 작성되었습니다
| import os | |
| from urllib.parse import urlparse | |
| import urllib.request | |
| import zipfile | |
| import tempfile | |
| from subprocess import call | |
| zip_url = 'https://github.com/konlpy/konlpy/archive/refs/heads/master.zip' | |
| dirname = 'konlpy-master' |
CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자
| @Slf4j | |
| public class Invalidate { | |
| private static final String CLOUD_FRONT_DISTRIBUTION_ID = System.getenv("distribution_id"); | |
| private static final AmazonCloudFront AMAZON_CLOUD_FRONT_CLIENT | |
| = AmazonCloudFrontClient.builder().withCredentials(new EnvironmentVariableCredentialsProvider()) | |
| .withRegion(Regions.US_WEST_2).build(); | |
| public void invalidateListOfItems(final List<String> itemsToInvalidate) { |
| //styling | |
| $borderWidth: 7px; | |
| $animationTime: 1.5s; | |
| $border-color-default: #eee; | |
| $border-color-fill: #ffb43e; | |
| $size: 150px; | |
| //Create how many steps | |
| $howManySteps: 10; //this needs to be even. |
| PUT music | |
| { | |
| "settings": { | |
| "index": { | |
| "analysis": { | |
| "filter": { | |
| "autocompleteFilter": { | |
| "max_shingle_size": "5", | |
| "min_shingle_size": "2", | |
| "type": "shingle" |
AWS 학습 링크집 시리즈
| /* .modal-fullscreen */ | |
| .modal-fullscreen { | |
| background: transparent; | |
| } | |
| .modal-fullscreen .modal-content { | |
| background: transparent; | |
| border: 0; | |
| -webkit-box-shadow: none; | |
| box-shadow: none; | |
| } |
AWS 학습 링크집 시리즈
| from __future__ import absolute_import | |
| import json | |
| import sys | |
| import re | |
| import requests | |
| import urllib | |
| import urlparse | |
| from urllib2 import HTTPError | |
| from urllib2 import URLError | |
| from urllib2 import urlopen |
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |