cat * > merged https://unix.stackexchange.com/questions/3770/how-to-merge-all-text-files-in-a-directory-into-one How to merge all (text) files in a directory into one? I've got 14 files all being parts of one text. I'd like to merge them into one. How to do that? unix.stackexchange.com
if [ "$#" -eq 2 ] then echo "Its works!" else echo "need to two params" exit 1 fi https://stackoverflow.com/questions/4341630/checking-for-the-correct-number-of-arguments Checking for the correct number of arguments How do i check for the correct number of arguments (one argument). If somebody tries to invoke the script without passing in the correct number of arguments, and checking to make sur..
title ```java String test = "test"; ``` https://gist.github.com/pierrejoubert73/902cc94d79424356a8d20be2b382e1ab How to add a collapsible section in markdown. How to add a collapsible section in markdown. GitHub Gist: instantly share code, notes, and snippets. gist.github.com https://gist.github.com/ericclemmons/b146fe5da72ca1f706b2ef72a20ac39d HTML5 in GitHub HTML5 in GitHub. GitHub Gist: insta..
Environment VariableDescriptionEnvironment VariableDescription BUILD_NUMBER The current build number, such as "153" BUILD_ID The current build id, such as "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss, defunct since version 1.597) BUILD_URL The URL where the results of this build can be found (e.g. http://buildserver/jenkins/job/MyJobName/666/) NODE_NAME The name of the node the current build is ru..
Understanding StringUtils.join performance decisions Understanding StringUtils.join performance decisions I was looking at the implementation of Apache Commons' StringUtils.join method and stumbled upon a line I assume is thought for performance but I don't understand why they did it the way it is, with stackoverflow.com
import static java.nio.charset.StandardCharsets.*; byte[] ptext = subject.getBytes(ISO_8859_1); subject = new String(subject, UTF_8); mail.setSubject(subject); https://stackoverflow.com/questions/5729806/encode-string-to-utf-8 Encode String to UTF-8 I have a String with a "ñ" character and I have some problems with it. I need to encode this String to UTF-8 encoding. I have tried it by this way, ..
--conf "spark.executor.extraJavaOptions=-Dlog4j.configuration=log4j.xml -Dfile.encoding=utf-8" https://stackoverflow.com/questions/41203431/configuring-spark-logging-with-log4j-xml Configuring Spark logging with log4j.xml I guesss its a silly question, but I couldnt find answer anywhere. Can I configure logging in spark using log4j.xml? In spark documentation its mentioned you can configure logg..
[137,80,78,71,13,10,26,10,0,...] var imgsrc = "data:image/png;base64," + btoa(String.fromCharCode.apply(null, new Uint8Array([137,80,78,71,13,10,26,10,0,...]))); document.getElementById('image').src = imgsrc; https://stackoverflow.com/questions/4564119/how-to-convert-a-byte-array-into-an-image How to convert a byte array into an image? Using Javascript, I'm making an AJAX call to a WCF service, ..
const obj = {}; const arr = []; function isEmpty(param) { return Object.keys(param).length === 0; } console.log(isEmpty(obj)); // true console.log(isEmpty(arr)); // true const obj = {}; const arr = []; function isEmptyObject(param) { return Object.keys(param).length === 0 && param.constructor === Object; } console.log(isEmptyObject(obj)); // true console.log(isEmptyObject(arr)); // false https:/..
mvn spring-boot:run -Drun.jvmArguments="-Xms4048m -Xmx8096m" https://stackoverflow.com/questions/23072187/how-can-i-configure-the-heap-size-when-starting-a-spring-boot-application-with-e How can I configure the heap size when starting a Spring Boot application with embedded Tomcat? I am trying to deploy a Spring Boot powered web app to production. The app is built with Spring Boot 1.0.1 and has ..
_.uniqBy(data, function (e) { return e.id; }); _.uniqBy(data, 'id'); https://stackoverflow.com/questions/31740155/lodash-remove-duplicates-from-array Lodash remove duplicates from array This is my data: [ { url: 'www.example.com/hello', id: "22" }, { url: 'www.example.com/hello', id: "22" }, { url: 'www.example.com/ stackoverflow.com
HADOOP_USER_NAME=$user $SPARK_HOME/bin/spark-submit \ --master yarn-cluster \ --driver-memory 32g \ --driver-cores 4 \ --executor-memory 19g \ --executor-cores 5 \ --num-executors 17 \ --conf spark.shuffle.service.enabled=true \ --conf spark.dynamicAllocation.enabled=true \ --conf spark.dynamicAllocation.minExecutors=5 \ --conf spark.dynamicAllocation.maxExecutors=100 \ --conf spark.dynamicAlloc..
chrome.tabs.getSelected(null, function(tab) { var code = 'window.location.reload();'; chrome.tabs.executeScript(tab.id, {code: code}); }); https://stackoverflow.com/questions/8342756/chrome-extension-api-for-refreshing-the-page chrome extension API for refreshing the page Is there an API to programmatically refresh the current tab from inside a browser action button? I have background page confi..
window.scrollTo(0, document.body.scrollHeight); window.scrollTo(0, 0); https://stackoverflow.com/questions/11715646/scroll-automatically-to-the-bottom-of-the-page Scroll Automatically to the Bottom of the Page Consider I have a list of questions. When I click on the first question, it should automatically take me to the bottom of the page. For a matter of fact, I do know that this can be done us..
create 'tb', {'NAME' => 'cf','TTL' => 20} alter 'tb', {'NAME' => 'cf','TTL' => 20} # TTL 20s https://dwgeek.com/automatically-delete-hbase-row-time-live-settings.html/ Automatically Delete HBase row – Time to Live (TTL) Settings - DWgeek.com Automatically Delete HBase row – Time to Live Settings, automatically expire the HBase row, HBase Time to Live (TTL) Option, Automatically Delete HBase Row ..
SELECT current_timestamp() AS current_timestamp, (current_timestamp() - INTERVAL '6' HOUR) AS current_timestamp_minus_six_hours https://stackoverflow.com/questions/45242173/how-to-add-hours-to-datetime-in-zeppelin-spark-sql How to add hours to Datetime in Zeppelin Spark Sql I have a query with a column that converts the universal datetime field (not a timestamp) to a local time based on the the ..
import locale locale.setlocale(locale.LC_TIME,'ko_KR.UTF-8') http://gonigoni.kr/posts/python-datetime-string-formatting/ Python 날짜/시간을 문자열로 만들기 위한 규칙 정리 - GoniGoni! 파이썬을 쓰다 보면 문자열을 다루는 경우가 많은데, 문자열을 특정한 양식에 맞추어야 하는 경우가 종종 있었다. 이 경우 PyFormat과 같은 사이트를 참조한다. 하지만 날짜나 시간을 formatting 할 �� gonigoni.kr
mvn dependency:tree https://stackoverflow.com/questions/53309378/class-path-contains-multiple-slf4j-bindings-exclusion-not-working Class path contains multiple SLF4J bindings, exclusion not working, I get the following error: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/C:/Users/Vash/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-.....
${abc} ... https://stackoverflow.com/questions/36743386/accessing-the-application-properties-in-logback-xml Accessing the application properties in logback.xml Is it possible to access application properties of spring boot in log back xml. application.properties dummy.property=hello logback.xml ${dummy.property} This did not work. Does any one have ... stackoverflow.com
정보란, 우리가 아직 모르는 것을 알아낼 가능성 정보를 분석하려면, 의미를 버리고 확률적 분석을 해야한다. 1. 확률적으로 동등한 2가지 중 하나 --> bit 정보는 앞,뒤 문맥에 따라 영향을 받는다. 확률이 높다. 2. 경우의 수가 적다 == 정보의 양이 적다 (잉여성) (요약) 정보는 확률적이며, 잉여성이 있다. 압축하거나, 생략할 수 있다. 확률을 고려하여... 압축한다! A = 1/2 B = 1/4 C = 1/8 D = 1/8 2 bits A = 00 B = 01 C = 10 D = 11 1.75 bits A = 0 B = 10 C = 110 D = 111 클로드 섀넌 감사합니다. :)
GRIT: 열정있는 끈기 어떤 일을 제대로 끝내본적이 있는가? 완벽주의 때문에... [도전 30일 프로젝트] 1. 당신의 목표를 지금의 절반으로 낮추라. 계획의 오류 때문에... 계획을 맨처음 부터 정확하게 잡기는 어렵다. 새로운 계획 실패시, 기존 계획에도 영향을 준다. 2. 당신에게는 미루기 목록이 필요하다. 모든일을 다하기 위해서는, 물리적으로 시간이 부족하다. 전략적 무능 하나를 선택을 하면, 다른 것을 포기를 해야한다. 처음 시작하는 것은 재미있다. 미래는 끝까지 해내는 사람에게 달렸다.
역사적 배경과 상황 사회적 위치
아니요, 이윤은 리스크를 건 사람들에게 가는 겁니다. 그러니 그 리스크를 감당한 사람들이 돈을 가지는 겁니다. 그 공장의 주인은 리스크를 감당한 것입니다. 그리고 그 이익을 가져가는 것이지요. 당신이 말한 그 노동자 조합이 만약 파산을 하게 되었다면 이익과 동일하게 그 리스크도 감당해야 한다는 것입니다. 회사가 파산하게 된다면 그 주인이 모든 빚을 감당하게 되겠죠 노동자는 직장을 잃을 수는 있겠지만 파산을 통해 빚을 짊어질 사람은 아니라는 말입니다. 당신이 리스크를 건 사람이라면 사태가 악화되었을 때 책임을 지게 됩니다. 노동자는 그렇지 않아요. 투자자들이 그 위험을 지는 겁니다. 그 기꼐에 투자했던 사람들 말이죠. 수 없는 돈을 당신의 노동력을 위해 날려버린 사람들 말입니다. 그 기계 없이 당신의 노동..
- Total
- Today
- Yesterday
- 테슬라 레퍼럴
- 모델 Y 레퍼럴
- 테슬라 크레딧 사용
- 테슬라
- 김달
- 모델y
- 테슬라 리퍼럴 코드 생성
- follower
- 클루지
- COUNT
- 메디파크 내과 전문의 의학박사 김영수
- Kluge
- 개리마커스
- 레퍼럴
- 연애학개론
- 유투브
- 어떻게 능력을 보여줄 것인가?
- Bot
- 테슬라 추천
- wlw
- 인스타그램
- 책그림
- 할인
- 테슬라 레퍼럴 적용 확인
- 테슬라 리퍼럴 코드
- 팔로워 수 세기
- 테슬라 레퍼럴 코드 확인
- 테슬라 리퍼럴 코드 혜택
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |