https://prestodb.io/docs/current/functions/datetime.html 8.13. Date and Time Functions and Operators — Presto 0.235 Documentation MySQL Date Functions The functions in this section use a format string that is compatible with the MySQL date_parse and str_to_date functions. The following table, based on the MySQL manual, describes the format specifiers: Specifier Description %a Abbrevi prestodb.io
var hexString = yourNumber.toString(16); var yourNumber = parseInt(hexString, 16); https://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hexadecimal-in-javascript How to convert decimal to hexadecimal in JavaScript How do you convert decimal values to their hexadecimal equivalent in JavaScript? stackoverflow.com
var copy = blob.slice(); https://stackoverflow.com/questions/37802025/how-to-clone-a-blob-in-javascript How to clone a blob in javascript I'm desperately trying to clone a blob in javascript without using an external library (such as jQuery). I've tried JSON.parse(JSON.stringify(blob)) without success. stackoverflow.com
# 잔여 df -m # 사용 du -hs * https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%EB%94%94%EB%A0%89%ED%86%A0%EB%A6%AC_%EC%9A%A9%EB%9F%89_%ED%99%95%EC%9D%B8_du 리눅스 디렉토리 용량 확인 du - 제타위키 다음 문자열 포함... zetawiki.com https://ra2kstar.tistory.com/135 UNIX/LINUX : 용량 확인 명령어 (df/du) unix/linux Unix/Linux 디스크 용량 확인 (df/du) 디스크 용량을 확인하는 명령어들이다. df : 디스크의 남은 용량을 확인 df -k : 킬로바이트 단위로 현재 남은 용량을 확인 df -m : 메가바이트 ..
https://stackoverflow.com/questions/34408646/how-to-create-multiple-partitions-using-alter-command-in-hive How to create multiple partitions using alter command in hive? I have 2 partitions on a table as below: hive> show partitions alt_part; OK yop=2011 yop=2013 Now I want to add an inner partition to year 2013. But I'm getting the below error. hive> alter... stackoverflow.com
alter table {table명} drop if exists partition (label ='science') alter table {table명} drop if exists partition (label ='science', date_id='2019-12-11') alter table {table명} drop if exists partition (label ='science', date_id < '2019-12-11') https://velog.io/@crescent702/drop-hive-partition hive partition 정리하기 hive partition 정리하기 hive table에 매일매일 데이터를 쌓으며 방치하다보면, 데이터가 눈 깜짝할 새에 늘어나버린다. 필요한 이상으로. 주..
System.out INFO ACCEPT DENY %-4relative [%thread] %-5level %logger - %msg%n System.err WARN %-4relative [%thread] %-5level %logger - %msg%n https://stackoverflow.com/questions/8489551/logging-error-to-stderr-and-debug-info-to-stdout-with-log4j Logging error to stderr and debug, info to stdout with log4j I want to add logging to an application I am developing, using apache log4j. At this point I ..
document.body.getBoundingClientRect() https://m.blog.naver.com/PostView.nhn?blogId=smilennv&logNo=220668722738&proxyReferer=https:%2F%2Fwww.google.com%2F JavaScript :: 문서 엘리먼트 스크롤 등의 크기와 위치 자바스크립트(javascript)Element(엘리먼트)의 크기와 위치엘리먼트의 크기와 위치를 알고 싶을 때는 get... blog.naver.com
KST = datetime.timezone(datetime.timedelta(hours=9)) now = datetime.now(KST) KST = timezone('Asia/Seoul') now = datetime.now().astimezone(KST) https://spoqa.github.io/2019/02/15/python-timezone.html 파이썬의 시간대에 대해 알아보기(datetime.timezone) 파이썬의 시간대에 대해서 알아봅니다. spoqa.github.io https://show-me-the-money.tistory.com/69 Python에서 Datetime과 Timezone 다루기 Datetime은 python에서 날짜와 시간을 표현하는 아주 유용한 패키지입니다. 대다수의 ..
nohup python3 app.py > log.txt 2>&1 & nohup python3 app.py > /dev/null 2>&1 & need to sleep on jenkins sleep 10s https://wooiljeong.github.io/server/flask_nohup/ Flask - nohup으로 백그라운드 실행하기 nohup과 &로 파이썬 플라스크 웹 서버를 백그라운드로 실행하기 wooiljeong.github.io
import operator dict = {'A':1, 'D':4, 'C':3, 'B':2} # key sort_dict = sorted(dict.items()) print(sort_dict) # value sort_dict = sorted(dict.items(), key=lambda x:x[1]) print(sort_dict) https://sinsomi.tistory.com/entry/%EB%AC%B8%EB%B2%95-Python-%EB%94%95%EC%85%94%EB%84%88%EB%A6%AC-%EC%A0%95%EB%A0%AC%ED%95%98%EA%B8%B0 [문법 / Python] 딕셔너리 정렬하기 딕셔너리를 정렬하는 방법들을 알아보겠습니다. 딕셔너리는 리스트처럼 sort()함수를 사용할 수 없기..
### chunk rows 1. read 2. process 3. write ### difference size - chunk - page https://jojoldu.tistory.com/331 6. Spring Batch 가이드 - Chunk 지향 처리 Spring Batch의 큰 장점 중 하나로 Chunk 지향 처리를 얘기합니다. 이번 시간에는 Chunk 지향 처리가 무엇인지 한번 살펴보겠습니다. 6-1. Chunk? Spring Batch에서의 Chunk란 데이터 덩어리로 작업 할 때 각 커� jojoldu.tistory.com
function getParameterByName(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, '\\$&'); var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, ' ')); } // query string: ?foo=lorem&bar=&baz var foo = getParameterByName('foo'); /..
https://web.dev/image-support-for-async-clipboard/ Image support for the async clipboard API Chrome 76 adds expands the functionality of the Async Clipboard API to add support for png images. Copying and pasting images to the clipboard has never been easier. web.dev
3 in [1, 2, 3] # => True https://stackoverflow.com/questions/9542738/python-find-in-list Python: Find in list I have come across this: item = someSortOfSelection() if item in myList: doMySpecialFunction(item) but sometimes it does not work with all my items, as if they weren't recognized in the list ... stackoverflow.com
new Blob([new Uint8Array([1, 2, 3, 4]).buffer]); https://stackoverflow.com/questions/44147912/arraybuffer-to-blob-conversion/44148694 ArrayBuffer to blob conversion I have a project where I need to display djvu schemas in browser. I found this old library on Github which, as far as I understood, converts djvu files to bmp and then puts them into canvas elemen... stackoverflow.com https://heropy...
https://gist.github.com/seunggabi/49fa44e51d2fe1d0b6e9865898cb9302 boot.sh boot.sh. GitHub Gist: instantly share code, notes, and snippets. gist.github.com https://wooriworld2006.tistory.com/426 Springboot jar execute script 스프링으로 개발한 후 메이븐 컴파일 하여 war 파일을 톰켓에 넣어 실행 할 경우에는 톰캣 서비스를 통해서 시작/중지 가능하다. 물론 톰캣이 서비스에 등록되어있다고 가정 했을경우임. 서버에� wooriworld2006.tistory.com http://blog.naver.com/PostView.nhn?blog..
https://gist.github.com/seunggabi/6b8b985b5a076e1b90a1eaf1ac8059c8 deploy_hdfs.sh deploy_hdfs.sh. GitHub Gist: instantly share code, notes, and snippets. gist.github.com https://stackoverflow.com/questions/16437548/how-to-overwrite-the-existing-files-using-hadoop-fs-copytolocal-command How to overwrite the existing files using hadoop fs -copyToLocal command Is there any way we can overwrite exis..
https://gist.github.com/seunggabi/f5a9f05f602b1b532b880bbc4da7c4c0 mail.sh mail.sh. GitHub Gist: instantly share code, notes, and snippets. gist.github.com https://www.thegeekdiary.com/linux-unix-how-to-send-mails-with-attachments-using-mailx-command/ Linux / UNIX : How to send mails with attachments using mailx command – The Geek Diary www.thegeekdiary.com https://tecadmin.net/ways-to-send-emai..
// array buffer to JSON const dataString JSON.stringify(Array.from(new Uint8Array(arrayBuffer))); // send around // JSON to ArrayBuffer new Uint8Array(JSON.parse(dataString)).buffer https://gist.github.com/nuclearglow/ab251744db0ebddd504eea28153eb279 ArrayBuffer JSON ArrayBuffer ArrayBuffer JSON ArrayBuffer. GitHub Gist: instantly share code, notes, and snippets. gist.github.com
df -k : 킬로바이트 단위로 현재 남은 용량을 확인 df -m : 메가바이트 단위로 남은 용량을 왁인 df -h : 보기 좋게 보여줌 df . : 현재 디렉토리가 포함된 파티션의 남은 용량을 확인 du -a : 현재 디렉토리의 사용량을 파일단위 출력 du -s : 총 사용량을 확인 du -h : 보기 좋게 바꿔줌 du -sh * : 한단계 서브디렉토리 기준으로 보여준다. https://ra2kstar.tistory.com/135 UNIX/LINUX : 용량 확인 명령어 (df/du) unix/linux Unix/Linux 디스크 용량 확인 (df/du) 디스크 용량을 확인하는 명령어들이다. df : 디스크의 남은 용량을 확인 df -k : 킬로바이트 단위로 현재 남은 용량을 확인 df -m : 메가바..
- Total
- Today
- Yesterday
- 모델y
- 유투브
- 테슬라 리퍼럴 코드 혜택
- COUNT
- Bot
- Kluge
- 팔로워 수 세기
- wlw
- 테슬라 크레딧 사용
- 개리마커스
- 책그림
- 테슬라
- 연애학개론
- 테슬라 리퍼럴 코드 생성
- 테슬라 레퍼럴
- follower
- 테슬라 레퍼럴 코드 확인
- 어떻게 능력을 보여줄 것인가?
- 클루지
- 인스타그램
- 테슬라 레퍼럴 적용 확인
- 김달
- 모델 Y 레퍼럴
- 테슬라 리퍼럴 코드
- 레퍼럴
- 할인
- 테슬라 추천
- 메디파크 내과 전문의 의학박사 김영수
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |