https://goodtogreate.tistory.com/entry/PyCharm%EC%97%90%EC%84%9C-PYTHONPATH-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0 PyCharm에서 PYTHONPATH 설정하기 PyCharm에서 PYTHONPATH 설정하기 bashrc 또는 zshrc에 설정한 환경변수 PYTHONPATH의 설정을 pycharm에서 하는 방법이다. You need to go to the Main PyCharm Preferences, which will open up a separate wi.. goodtogreate.tistory.com
class MyModel(models.Model): created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) https://stackoverflow.com/questions/3429878/automatic-creation-date-for-django-model-form-objects Automatic creation date for Django model form objects? What's the best way to set a creation date for an object automatically, and also a field that will record when the..
if [ -e $dir_name ]; then echo "$dir_name 파일을 찾았습니다." fi if [ ! -e $dir_name ]; then echo "$dir_name 파일을 못 찾았습니다." fi if [ -d $dir_name ]; then echo "$dir_name 디렉토리를 찾았습니다." fi if [ ! -d $dir_name ]; then echo "$dir_name 디렉토리를 못 찾았습니다." fi http://bahndal.egloos.com/517067 [bash: if, test] 파일 또는 디렉토리 존재 유무 확인 특정 파일 또는 디렉토리가 존재하는지 확인하는 방법이다. 스크립트의 인자(argument)로 파일이나 디렉토리를 입력받았을 경우 인자의 유효성을 확인할 때 요..
System.setProperty("hadoop.home.dir", "/"); https://stackoverflow.com/questions/19840056/failed-to-detect-a-valid-hadoop-home-directory Failed to detect a valid hadoop home directory I have set up Hadoop 2.2.0 single node and started it up. I am able to browse the FS on http://localhost:50070/ Then I tried to write a dummy file using the following code. public class Test { pub... stackoverflow.com
chr(ord('b') + 1) https://stackoverflow.com/questions/12797067/how-can-i-do-a-1-b-in-python How can I do 'a' + 1 #=> 'b' in python? I'm working on a project need this functionality very frequently 'b' + 1 #=> 'a' and 'b' - 1 #=> 'a' Now my solution is very tedious : str(unichr((ord('b')+ 1))) is there a more elegant ... stackoverflow.com
d = {} d['mynewkey'] = 'mynewvalue' https://stackoverflow.com/questions/1024847/how-can-i-add-new-keys-to-a-dictionary How can I add new keys to a dictionary? Is it possible to add a key to a Python dictionary after it has been created? It doesn't seem to have an .add() method. stackoverflow.com
import hashlib vale = "asdf" key = hashlib.md5(value.encode('utf-8')).hexdigest() https://leetcode.com/problems/encode-and-decode-tinyurl/ Encode and Decode TinyURL - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com https://cnpnote.tistory.com/entry/PYTHON-TypeError-%EC%88%98%EC%A0%..
chmod 755 /root chmod 755 /root/deploy chmod 755 /root/deploy/bot sudo pkill -f python3 sudo rm -rf /root/deploy sudo mkdir -p -m777 /root/deploy sudo mv * /root/deploy cd /root/deploy/bot sleep 3s sudo nohup python3 app.py > /dev/null 2>&1 & https://stackoverflow.com/questions/37930295/executing-pkill-in-a-shell-via-jenkins-fails-the-build Executing "pkill" in a shell via Jenkins - fails the bu..
# -*- coding: utf-8 -*- from __future__ import unicode_literals import werkzeug from flask import request from flask_restplus import Namespace, Resource, reqparse from modules.line import * from utils.common_utils import CommonUtils api = Namespace('line', description='line') parser = reqparse.RequestParser() parser.add_argument('message', type=str, help="message", default='test', required=True)..
https://stackoverflow.com/questions/33394884/spark-scala-list-folders-in-directory/41561019 Spark Scala list folders in directory I want to list all folders within a hdfs directory using Scala/Spark. In Hadoop I can do this by using the command: hadoop fs -ls hdfs://sandbox.hortonworks.com/demo/ I tried it with: val conf = ... stackoverflow.com
http://cloudsqale.com/2019/12/30/spark-slow-load-into-partitioned-hive-table-on-s3-direct-writes-output-committer-algorithms/ Spark – Slow Load Into Partitioned Hive Table on S3 – Direct Writes, Output Committer Algorithms – Large-Scale Data Engine I have a Spark job that transforms incoming data from compressed text files into Parquet format and loads them into a daily partition of a Hive table..
ln -s /Library/Java/Home/bin/javac javac https://github.com/processing/processing-android/issues/46 Unable to locate javac · Issue #46 · processing/processing-android Issue by smoothmango Monday Jan 27, 2014 at 19:55 GMT Originally opened as processing/processing-android-archive#60 I just downloaded Processing 2.1.1, and when I try to run my Android sketch, I ge... github.com
{"min_doc_count": 10} https://github.com/elastic/kibana/issues/9684 Filter Greater Than Count · Issue #9684 · elastic/kibana In Kibana, I created a Table visual. I want to count the number of records aggregated by a field (hostname). I want to be able to filter the results where the Count>X. However, typing Count>:... github.com
>>> int('11111111', 2) 255 https://stackoverflow.com/questions/8928240/convert-base-2-binary-number-string-to-int Convert base-2 binary number string to int I'd simply like to convert a base-2 binary number string into an int, something like this: >>> '11111111'.fromBinaryToInt() 255 Is there a way to do this in Python? stackoverflow.com
import sys sys.exit(-1) https://stackoverflow.com/questions/12036620/making-a-job-fail-in-jenkins Making a job fail in jenkins This question might sound weird, but how do I make a job fail? I have a python script that compiles few files using scons, and which is running as a jenkins job. The script tests if the compiler ... stackoverflow.com
sleep .5 # Waits 0.5 second. sleep 5 # Waits 5 seconds. sleep 5s # Waits 5 seconds. sleep 5m # Waits 5 minutes. sleep 5h # Waits 5 hours. sleep 5d # Waits 5 days. https://brocess.tistory.com/84 [ Linux ] 리눅스 shell script에서 특정 시간 동안 멈추기(sleep) 쉘 스크립트를 사용하다보면 스크립트 중간에 그 다음 로직으로 넘어가기전 특정 시간동안 멈추고 싶을 경우가 있다. 그럴 경우 다음과 같이 원하는 시간만큼 간편히 sleep 시킬 수 있다. [ shell sc brocess.tistory.com
l = re.compile("(? stackoverflow.com
>>> l = set() >>> l.add(1) >>> l.add(2) >>> 1 in l True >>> 34 in l False https://stackoverflow.com/questions/26724002/contains-of-hashsetinteger-in-python Contains of HashSet in Python In Java we have HashSet, I need similar structure in Python to use contains like below: A = [1, 2, 3] S = set() S.add(2) for x in A: if S.contains(x): print "Example" C... stackoverflow.com
https://stackoverflow.com/questions/44265670/how-to-change-read-only-status-of-files-in-intellij/51075702 How to Change Read-Only Status of Files in intellij I have a Java project and I want to modify it in intellij but I can't do it because of this " read-only file " or "file is not writable" , so how I can modify and execute it? stackoverflow.com
https://visualvm.github.io/download.html VisualVM: Download First Steps Unzip the downloaded archive. The archive already contains the top-level visualvm directory. Start VisualVM by invoking the binary appropriate for your OS:visualvm\bin\visualvm.exe or visualvm/bin/visualvm You may provide additional options to visualvm.github.io https://stackoverflow.com/questions/17394562/could-not-start-js..
나를 바꿀 것인가, 세계를 바꿀 것인가는 근원적인 대립이다. 집단으로서의 전체성, 개인으로서의 개체성 시민 == 구성원인 동시에 독립적이고 자유로운 개별자 세상의 구조에 대해서 이해하는 능력을 우리는 '교양'이라고 부른다. 해결 방안은 개별적인 특수성을 고려해서 마련되어야 한다. 개별적인 문제를 해결하기 위해서는 먼저 사회 전체의 일관된 방향성이 결정되어 있어야, 세금으로부터 모든 사회 문제가 비롯된다고도 할 수 있다. 자본주의 사회에서는 모든 곳이 시장이다. 개인과 기업은 사이가 좋다. 시장과 정부는 사이가 좋지 않다. 재정이 강화되면 복지 수준이 높아지고, 세금이 낮아져서 국가 재정이 약화되면 복지 수준이 낮아진다. 한국은 낮은 세금 징수와 이에 따른 낮은 복지 지출로 빈부격차가 심화되었다. 다른 국..
https://www.letmecompile.com/kafka-consumer-offset-reset/ 카프카(Kafka) Consumer offset reset 방법 카프카 Consumer를 사용하다 보면 offset을 reset해야하는 경우가 종종 있다. 개발 테스트를 진행하다가 필요에의해 offset을 리셋 실제 production에서 사용중에 예상치 못한 에러 등으로 데이터 누락이 � www.letmecompile.com https://coding-start.tistory.com/137 Kafka - Kafka Consumer(카프카 컨슈머) Java&CLI Kafka - Kafka Consumer(카프카 컨슈머) Java&CLI 이전 포스팅에서 kafka producer를 java 소스기반으로 ..
SELECT id, sum(Jan_Revenue) Jan_Revenue, sum(Feb_Revenue) Feb_Revenue, sum(Mar_Revenue) Mar_Revenue, sum(Apr_Revenue) Apr_Revenue, sum(May_Revenue) May_Revenue, sum(Jun_Revenue) Jun_Revenue, sum(Jul_Revenue) Jul_Revenue, sum(Aug_Revenue) Aug_Revenue, sum(Sep_Revenue) Sep_Revenue, sum(Oct_Revenue) Oct_Revenue, sum(Nov_Revenue) Nov_Revenue, sum(Dec_Revenue) Dec_Revenue FROM ( SELECT id, CASE WHEN ..
- Total
- Today
- Yesterday
- 김달
- 모델y
- 할인
- 유투브
- wlw
- follower
- 테슬라
- 테슬라 리퍼럴 코드 생성
- 모델 Y 레퍼럴
- 테슬라 레퍼럴 코드 확인
- 테슬라 추천
- 레퍼럴
- 테슬라 리퍼럴 코드 혜택
- 테슬라 크레딧 사용
- 테슬라 레퍼럴 적용 확인
- 클루지
- COUNT
- Kluge
- 팔로워 수 세기
- 책그림
- 어떻게 능력을 보여줄 것인가?
- Bot
- 연애학개론
- 테슬라 리퍼럴 코드
- 개리마커스
- 메디파크 내과 전문의 의학박사 김영수
- 테슬라 레퍼럴
- 인스타그램
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |