https://wikidocs.net/64 위키독스 온라인 책을 제작 공유하는 플랫폼 서비스 wikidocs.net (lambda x,y: x+y)(10,20) list(map(lambda x: x**2, range(5))) reduce(lambda x, y: x + y, [0, 1, 2, 3, 4]) list(filter(lambda x: x < 5, range(10))) https://wayhome25.github.io/cs/2017/04/03/cs-03/ 강의노트 03. 파이썬 lambda, map, filter, reduce, dic · 초보몽키의 개발공부로그 패스트캠퍼스 컴퓨터공학 입문 수업을 듣고 중요한 내용을 정리했습니다. 개인공부 후 자료를 남기기 위한 목적임으로 내용 상에 오류가 있을 수..
https://blog.adriaan.io/sublime-pretty-json.html Sublime Text 3 pretty JSON · Adriaan's blog Sublime Text 3 pretty JSON 11 Feb 2016 - Help improve this post Install this packages via CMD + SHIFT + P > Install package > Search for Pretty JSON and install. And then turn ugly json via CMD + CTRL + J (OSX) CTRL + ALT + J (Windows/Linux) in pretty JSON blog.adriaan.io CTRL + CMD + J CTRL + ALT + J ==..
https://databricks-prod-cloudfront.cloud.databricks.com/public/4027ec902e239c93eaaa8714f173bcfc/2728434780191932/1483312212640900/6987336228780374/latest.html Apache Spark 2.0 Subqueries - Databricks databricks-prod-cloudfront.cloud.databricks.com https://books.google.co.kr/books?id=wSaDDwAAQBAJ&pg=PA300&lpg=PA300&dq=spark+sql+count+subquery+compare&source=bl&ots=C_vypO4Wb2&sig=ACfU3U01SggtljOAH..
- Publish Over SSH Plugin - SSH2Easy Plugin https://yookeun.github.io/tools/2018/04/14/jenkins-remote/ 젠킨스(Jenkins)에서 원격(Remote)으로 배포하기 Jenkins에서 원격으로 배포하는 방법을 알아보자. 젠킨스에서 원격으로 배포하기 위해서는 해당 플러그인을 받아야 하다. 가장 많이 사용하는 플러그인은 아래와 같다 우리는 여기서 Publish Over SSH Plugin 를 사용하도록 한다. (SSH2Easy Plugin은 사용시 바이너리전송에 문제가 발생한 경험이 있다) 1. Publish Over SSH 설정 Jenkins관리 > 플러그인관리에서 설치가 잘되고 젠킨스를 리스타트했다면 시스템 설정 에 yookeu..
array = [[0 for col in range(10)] for row in range(10)] https://infinitt.tistory.com/106 파이썬 (Python) 2중 리스트, 2차원 배열 선언 및 출력 https://infinitt.tistory.com/17 파이썬(Python) 기초 (6) 데이터 타입(Data Type) - 리스트 (list) 와 튜플 (tuple) 그리고 관련 함수(sort reverse insert remove pop append extend 등.. ) 리스트와 튜플은 모.. infinitt.tistory.com
https://stackoverflow.com/questions/32941917/remove-basic-error-controller-in-springfox-swaggerui Remove Basic Error Controller In SpringFox SwaggerUI Is there a way i can remove the "basic-error-controller" from springfox swagger-ui? Picture: stackoverflow.com
https://knight76.tistory.com/entry/hbase-hbase-shell%EC%97%90%EC%84%9C-%ED%85%8C%EC%9D%B4%EB%B8%94-%EC%82%AD%EC%A0%9C%EC%B6%94%EA%B0%80-%EB%8D%B0%EC%9D%B4%ED%84%B0-%EC%B6%94%EA%B0%80%EB%B3%80%EA%B2%BD%EC%82%AD%EC%A0%9C-%EC%98%88%EC%8B%9C [hbase] hbase shell에서 테이블 삭제/추가, 데이터 추가/변경/삭제 예시 hbase 0.94에서 hbase shell을 사용해서 테이블 추가/삭제를 진행하는 예시이다. $ hbase shell 16/12/16 14:20:08 WARN conf.Configuration: h..
https://medium.com/@hyunalee419/spring-boot-custom-error-page-4258cd37f05c [Spring Boot] custom error page 웹사이트를 운영하다보면 404, 500 등의 에러페이지를 서버에서 기본으로 제공해주는 화면이 아닌 각 사이트의 디자인에 맞춰 변경해야 한다. medium.com https://cheese10yun.github.io/spring-guide-exception/ Spring Guide - Exception 전략 - Yun Blog | 기술 블로그 Spring Guide - Exception 전략 - Yun Blog | 기술 블로그 cheese10yun.github.io
# 앞부터 패턴 제거 ${variable#pattern} # 뒤부터 패턴 제거 ${variable%pattern} https://jin1ib.tistory.com/106 [Concept] Chapter 13 배시 쉘 프로그래밍 목차 1. 쉘 스크립트 2. 쉘 변수 사용하기 3. 입력 받기 4. 연산자 5. 제어문 6. 함수 7. 디버깅 1. 쉘 스크립트 (1) 스크립트란? 인터프리터라 불리는 다른 프로그램에 의해 실행되는 프로그램 ex) 자바스크립트,.. jin1ib.tistory.com
[item for item in x if item not in y] https://stackoverflow.com/questions/3428536/python-list-subtraction-operation Python list subtraction operation I want to do something similar to this: >>> x = [1,2,3,4,5,6,7,8,9,0] >>> x [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] >>> y = [1,3,5,7,9] >>> y [1, 3, 5, 7, 9] ... stackoverflow.com
SHOW CREATE TABLE myTable; https://stackoverflow.com/questions/18134131/how-to-get-generate-the-create-statement-for-an-existing-hive-table How to get/generate the create statement for an existing hive table? Assuming you have "table" already in Hive, is there a quick way like other databases to be able to get the "CREATE" statement for that table? stackoverflow.com
navigator.clipboard.readText().then( clipText => document.getElementById("outbox").innerText = clipText); https://developer.mozilla.org/en-US/docs/Web/API/Clipboard/readText Clipboard.readText() The Clipboard interface's readText() method returns a Promise which resolves with a copy of the textual contents of the system clipboard. developer.mozilla.org
{ ... "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } https://stackoverflow.com/questions/46459939/chrome-extension-icon-manifest Chrome Extension Icon Manifest How to change Chrome Extension icon in this page? Here's my manifest code : { "manifest_version": 2, "name": "Demo", "description": "This is demo.", "version": "1.0", "browser_action"... stackoverflow.com
- Total
- Today
- Yesterday
- 테슬라 크레딧 사용
- Kluge
- 어떻게 능력을 보여줄 것인가?
- wlw
- 인스타그램
- Bot
- 테슬라
- 개리마커스
- 모델 Y 레퍼럴
- follower
- 연애학개론
- 메디파크 내과 전문의 의학박사 김영수
- 책그림
- 테슬라 리퍼럴 코드 혜택
- 클루지
- 테슬라 리퍼럴 코드 생성
- 테슬라 레퍼럴
- 김달
- 유투브
- 팔로워 수 세기
- 레퍼럴
- 테슬라 리퍼럴 코드
- 테슬라 레퍼럴 코드 확인
- 테슬라 레퍼럴 적용 확인
- COUNT
- 모델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 |