Skip to content

Instantly share code, notes, and snippets.

View typeon's full-sized avatar
no problem.

sangbae Kang typeon

no problem.
View GitHub Profile
@ychoi-kr
ychoi-kr / install_konlpy.py
Created November 26, 2021 10:24
KoNLPy 최신 버전 설치
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'
@luncliff
luncliff / cmake-tutorial.md
Last active February 18, 2026 17:08
CMake 할때 쪼오오금 도움이 되는 문서

CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자

주의

  • 이 문서는 CMake를 주관적으로 서술합니다
  • 이 문서를 통해 CMake를 시작하기엔 적합하지 않습니다
    https://cgold.readthedocs.io/en/latest/ 3.1 챕터까지 따라해본 이후 기본사항들을 속성으로 익히는 것을 돕기위한 보조자료로써 작성되었습니다
@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) {
@fuzzywalrus
fuzzywalrus / pure css circular progress bar.scss
Created October 23, 2017 23:29
This uses a data-attribute to create the progress bar. Forked from https://bootsnipp.com/snippets/featured/circle-progress-bar. This functions based on increments defined in the the scss. Change the $howManySteps var and the for loops below will generate the CSS. The data attributes will need to be changed to reflect the newly generated CSS. Let…
//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.
@jinkyou
jinkyou / gist:ac92c0d9fc53860b703ac773af03b0da
Last active February 27, 2017 10:47
ElasticSearch autocomplete
PUT music
{
"settings": {
"index": {
"analysis": {
"filter": {
"autocompleteFilter": {
"max_shingle_size": "5",
"min_shingle_size": "2",
"type": "shingle"
@serithemage
serithemage / AWSSecurityContents.md
Last active July 24, 2025 04:30
AWS 보안 관련 자료 모음집

AWS 학습 링크집 시리즈

@soham2008xyz
soham2008xyz / modal-fullscreen.css
Last active June 19, 2019 04:19
Bootstrap 3 transparent and fullscreen modals
/* .modal-fullscreen */
.modal-fullscreen {
background: transparent;
}
.modal-fullscreen .modal-content {
background: transparent;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
@serithemage
serithemage / AWSCertifiedDeveloperUnofficialStudyGuide.md
Last active December 11, 2025 14:15
AWS 공인 개발자 - 어소시에이트 수험 가이드
@dvm-shlee
dvm-shlee / pykoen.py
Last active April 21, 2022 10:19
pykoen, jupyter notebook 을 이용한 interactive 한영번역기 (구글번역기 + Ginger 문법교정기)
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.