Home
restato's memo
Cancel

[Hive] 특정 필드(들)을 제외하고 컬럼 추출

set hive.support.quoted.identifiers=none; SELECT `(date|name)?+.+` FROM <table_name>

[Git] Remote branch로 덮어 씌우는 방법

Remote Branch로 덮어씌우는 방법 특정 branch에서 작업하고 있다. 다시 remote에 있는 내용으로 덮어씌우고 싶을때 방법 1 git fetch --all git branch backup-master # backup # two options git reset --hard origin/master git reset --hard o...

[Python] Advanced Technique Python (2)

Intro import를 통해 코드를 포함시킬때 효과적으로 구조화하는게 필요 import를 적절하게 사용하면 생산성이 향상되어 프로젝트 유지관리 하면서 코드 재사용이 가능 import가 어떻게 동작하는지 코드로 이해 배우는 내용 module, packages, namespace packages handl...

Udacity A/B Testing

Lesson 1: Overview of A/B Testing 1.Introduction to Course design a task choose metrics analyize results 2.Course Format choose a metric review statistics design analyze experi...

M1 MAC mini에서 starcraft 동작 안함

M1 맥미니로 변경한 이후에 생각보다 사용하는데 불편함이 있다… tensorflow 설치할때도 apple에서 서포트하는 버전을 설치해야하고, 또 numpy 버전 호환도 안맞아서 삽질을 했었는데.. 문득 주말에 놀고 싶다는 생각에 스타를 실행해보려고 했는데 M1 맥미니에서는 지원을 안하고 있음 ^^ 그럼 그렇지 관련 포스트 ...

[Tensorflow] requests.exceptions.HTTPError: 400 Client Error: Bad Request for url

20개의 요청을 했을때 앞에 몇개는 성공하는데 어느 순간 400이 뜬다. 간혹 아래 에러도 떠서 requests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer')) urllib3.exceptions.Protocol...

[Python] Timeit Decorator (함수 실행시간 체크)

Decorator 생성 import time def timeit(f): def timed(*args, **kw): start_time = time.time() result = f(*args, **kw) end_time = time.time() # print(f'func:{f.__nam...

[Python] Pywebio

Streamlit이 Python으로 웹사이트를 쉽게 만들수 있었는데 Pywebio라는걸 발견 Streamlit 보다는 부족한게 많아 보이지만 이제는 python으로 웹사이트를 서비스 할 수 있을것 같은 기대감을 준것 같음 시간날때 한번 만들어보자. 간단한 데모 페이지로 사용하기 좋을듯 잠깐 1.3.3? 버전으로 해보니 모듈 찾을수 없다고 나와서 안...

[Python] 3.9버전에서 새롭게 사용할 수 있는 기능

Merging two Dictionaries a = {‘first’: 1, 'second’: 2, 'python’: 3} b = {’first’: 'third’, 'forth’: 'python3.9’} a | b {’second’: 2, 'python’: 3, ’first’:’third’, 'forth’: 'python3.9’} b | a {’fi...

[Jekyll] We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.

We were unable to load Disqus. If you are a moderator please see our troubleshooting guide. 안해 참고 https://help.disqus.com/en/articles/1717301-i-m-receiving-the-message-we-were-unable-to-load-...