https://nagjang.tistory.com/28 bash: /bin/find: Argument list too long find ./*.aud -ctime +180 -exec rm -rf {} \; 실행 시 아래와 같은 메시지가 나오는 경우가 있다. bash: /bin/find: Argument list too long 나의 경우에는 특정 디렉토리에 파일 수가 너무 많아서 나오는 메시지 였지만 nagjang.tistory.com https://iambeginnerdeveloper.tistory.com/197 Ubuntu | rm -rf * 시 -bash: /bin/rm: Argument list too long 오류, 많은 양의 데이터 한번에 삭제하기 한 폴더 내에 10만장 정도의 파일이 있었는데..
import subprocess output = subprocess.check_output("cat syscall_list.txt | grep f89e7000 | awk '{print $2}'", shell=True) https://stackoverflow.com/questions/8659275/how-to-store-the-result-of-an-executed-shell-command-in-a-variable-in-python
https://igotit.tistory.com/entry/bybit-%ED%8C%8C%EC%9D%B4%EC%8D%AC-%EC%9B%B9%EC%86%8C%EC%BC%93-%EC%A2%85%EB%A3%8C-%EC%98%A4%EB%A5%98-%EB%B0%8F-%ED%95%B4%EA%B2%B0%EC%B1%85 bybit. 파이썬 웹소켓 종료 오류 및 해결책. websockets.exceptions.ConnectionClosedError: code = 1006 오류 요점. 파이썬에서 바이빗 과 통신하는 WebSocket 프로그램 실행 중에 1주일에 1회 혹은 재수없는 경우엔 수시간 만에 파이썬 프로그램이 종료되는 경우 있다. 아래 화면은 종료된 시점에 보이 igotit.tistory.com try -> except
curl -s -L -I "https://code.jquery.com/jquery-3.5.0.min.js" | grep content-length content-length: 89493 https://code2care.org/q/get-size-of-http-response-curl-command-content-length Get the Size of HTTP Response using cURL Command (Content Length) | Code2care How to get the size of the HTTP Response using cURL Command (Content-Length) - Code2care code2care.org https://unix.stackexchange.com/ques..
def safe_divide(x, y): return x / y if y else 0 https://github.com/seunggabi/core_python/blob/main/seunggabi_core_python/util/math_util.py https://stackoverflow.com/questions/27317517/make-division-by-zero-equal-to-zero Make division by zero equal to zero How can I ignore ZeroDivisionError and make n / 0 == 0? stackoverflow.com
$ screen -X -S kill 위에 스크린 목록에서 떴던 22879.myscreen을 삭제하려면 screen -X -S 22879 kill https://sssunho.tistory.com/72 [LINUX] screen 삭제하기 스크린 목록 확인 $ user ~ 0 screen -list There is a screen on: 22879.myscreen(2017년 12월 01일 11시 41분 24초)(Detached) 1 Socket in /var/run/screen/S-user. 스크린 연결 해제 $ screen -d myscreen 스크린 삭제 $ pkill screen 스크린 sssunho.tistory.com
https://github.com/tiangolo/fastapi GitHub - tiangolo/fastapi: FastAPI framework, high performance, easy to learn, fast to code, ready for production FastAPI framework, high performance, easy to learn, fast to code, ready for production - GitHub - tiangolo/fastapi: FastAPI framework, high performance, easy to learn, fast to code, ready for produ... github.com https://fastapi.tiangolo.com/ko/tuto..
https://stackoverflow.com/questions/10903497/python-mysqldb-where-sql-like Python MySQLdb WHERE SQL LIKE I have recently started to learn Python and MySQL for web purposes and I have run into a following problem : I want to pull out from a mysql database one record that contains any text that I enter... stackoverflow.com
MySQL 은 Oracle 과는 달리 UPDATE 나 DELETE 시 자기 테이블의 데이타를 바로 사용 못하므로 아래와 같은 SQL 을 실행시 1093 에러가 발생함. DELETE FROM cwd_group WHERE id IN (SELECT ext_id FROM (SELECT DISTINCT a.id ext_id FROM cwd_group a JOIN cwd_group b ON a.group_name=b.group_name JOIN cwd_directory d ON d.id=a.directory_id WHERE a.directory_id != b.directory_id AND directory_name = 'My JIRA Server') tmp) ; https://www.lesstif.com/dbms/..
https://aws.amazon.com/ko/blogs/korea/new-amazon-emr-instance-fleets/ Amazon EMR 인스턴스 집합(Instance Fleets) 기능 출시! | Amazon Web Services 인스턴스 집합(instance fleets) 기능이 Amazon EMR 클러스터에서도 사용할 수 있습니다. 이는 인스턴스 프로비저닝과 관련된 다양한 옵션과 스마트한 기능을 제공합니다. 5개 인스턴트 타입에 대해 가 aws.amazon.com
https://yongku.tistory.com/entry/SQL-MySQL-%EC%BB%AC%EB%9F%BC-%EC%9D%B4%EB%A6%84-%EB%B0%94%EA%BE%B8%EA%B8%B0-RENAME-COLUMN [SQL] MySQL 컬럼 이름 바꾸기 RENAME COLUMN 츄르사려고 코딩하는 코집사입니다. 1. [SQL] MySQL 컬럼 이름 바꾸기 RENAME COLUMN - 컬럼 이름을 바꾸는 문법은 아래와 같다. - RENAME COLUMN 컬럼명을 입력하고 to 를 사용하여 바꾸고 싶은 컬럼명을 입 yongku.tistory.com
https://superuser.com/questions/955935/how-can-i-replace-a-newline-with-its-escape-sequence How can I replace a newline with its escape sequence? Using sed to make text that contains certain characters suitable for use in string literals is straightforward: sed "s/\\\\/\\\\\\\\/g" sed "s/\\\"/\\\\\\\"/g" But how can I do something similar ... superuser.com
https://airflow.apache.org/docs/apache-airflow/stable/configurations-ref.html#delete-worker-pods-on-failure Configuration Reference — Airflow Documentation airflow.apache.org https://github.com/apache/airflow/issues/28751 KubernetesExecutor leaves failed pods due to deepcopy issue with Google providers · Issue #28751 · apache/airflow Apache Airflow version Other Airflow 2 version (please specify..
config: AIRFLOW__CORE__DEFAULT_TIMEZONE: Asia/Seoul AIRFLOW__CORE__DEFAULT_TASK_EXECUTION_TIMEOUT: 10800 AIRFLOW__CORE__LOAD_EXAMPLES: false AIRFLOW__CORE__PARALLELISM: 128 AIRFLOW__CORE__MAX_ACTIVE_RUNS_PER_DAG: 64 AIRFLOW__LOGGING__REMOTE_LOGGING: true AIRFLOW__LOGGING__REMOTE_BASE_LOG_FOLDER: s3://asdf AIRFLOW__LOGGING__REMOTE_LOG_CONN_ID: aws_default AIRFLOW__WEBSERVER__EXPOSE_CONFIG: false ..

RequestError [HttpError]: Resource not accessible by integration at /home/runner/work/_actions/seunggabi/auto-close-milestone/v1.0.0/dist/index.js:[4](https://github.com/seunggabi/copy-money/actions/runs/5564921370/jobs/10164850823#step:3:5)23[5](https://github.com/seunggabi/copy-money/actions/runs/5564921370/jobs/10164850823#step:3:6):21
r5a.8xlargeConfiguration optionDefault value mapreduce.map.java.opts -Xmx6349m mapreduce.reduce.java.opts -Xmx12698m mapreduce.map.memory.mb 7936 mapreduce.reduce.memory.mb 15872 yarn.app.mapreduce.am.resource.mb 15872 yarn.scheduler.minimum-allocation-mb 32 yarn.scheduler.maximum-allocation-mb 253952 yarn.nodemanager.resource.memory-mb 253952 https://docs.aws.amazon.com/emr/latest/ReleaseGuide/..
DROP TABLE alembic_version https://github.com/apache/airflow/discussions/16104 FAILED: Can't locate revision identified by '03afc6b6f902' · apache/airflow · Discussion #16104 I have Airflow 1.10.10 with postgres backend 10.16. Both are running on separate pods in Kubernetes cluster (1.21). After upgrading Airflow to 1.10.15 with same postgres backend pod, upgrade is suc... github.com
tsm maintenance ziplogs -l -f logs__20230628_20230702.zip --startdate "01/01/2023 00:00" --enddate "01/02/2023 00:00" https://help.tableau.com/current/server-linux/ko-kr/cli_maintenance_tsm.htm?_gl=1*1e54siv*_ga*MTQ1OTczMDYzLjE2ODg2NDQwOTI.*_ga_8YLN0SNXVS*TmVlZHMgR1RNIENvbmZpZ3VyYXRpb24uNS4xLjE2ODkwNTgxNzkuMC4wLjA.#tsm4ziplogs tsm maintenance tsm maintenance 명령을 사용하여 백업을 만들거나 이전에 만든 백업에서 Tableau..
tsm licenses get-offline-activation-file -k -o tsm licenses activate -k tsm licenses activate -f tsm restart tsm licenses list https://help.tableau.com/current/server-linux/ko-kr/activate_off.htm 오프라인으로 Tableau Server 활성화 - 라이선스 추가 Tableau Server를 설치할 때 하나 이상의 제품 키를 활성화해야 하지만 Tableau 고객 포털에서 확인되는 모든 Tableau Server 라이선스를 활성화하는 것이 좋습니다 help.tableau.com https://help.tableau.com/current/server/ko-kr..
STATUS=$(curl -o /dev/null -w "%{http_code}" "https://blog.leocat.kr/") if [ $STATUS -eq 200 ]; then echo "OKOK" fi https://blog.leocat.kr/notes/2018/08/03/shell-fetch-http-status-code-from-curl-result [Shell] curl로 호출하고 HTTP status code 확인하기 curl로 URL을 호출한 뒤 HTTP status code를 확인하고 싶다면, -w 옵션으로 찍어보면 된다. curl man page를 보면 아래와 같이 curl의 stdout 출력 이후에 -w 옵션으로 적어준 내용이 출력된다고 적혀 있다. blog.leocat.kr
https://github.com/seunggabi/pr-ze2nb GitHub - seunggabi/pr-ze2nb: Zeppelin notebook to Jupyter notebook Zeppelin notebook to Jupyter notebook . Contribute to seunggabi/pr-ze2nb development by creating an account on GitHub. github.com https://github.com/runawayhorse001/ze2nb GitHub - runawayhorse001/ze2nb: Zeppelin notebook to Jupyter notebook Zeppelin notebook to Jupyter notebook . Contribute t..
https://www.reddit.com/r/apache_airflow/comments/14oji77/airflow_262_and_pydantic_warningserrors/ From the apache_airflow community on Reddit Explore this post and more from the apache_airflow community www.reddit.com https://stackoverflow.com/questions/76593816/airflow-db-initialization-on-wsl/76602571#76602571 Airflow DB initialization on WSL i'am trying to install Airflow on WSL by following ..
- Total
- Today
- Yesterday
- 할인
- 어떻게 능력을 보여줄 것인가?
- 모델y
- 연애학개론
- Kluge
- COUNT
- follower
- 테슬라 레퍼럴 적용 확인
- 메디파크 내과 전문의 의학박사 김영수
- 테슬라 크레딧 사용
- 테슬라 레퍼럴 코드 확인
- 개리마커스
- 테슬라 추천
- 김달
- 테슬라 리퍼럴 코드 생성
- 테슬라 리퍼럴 코드
- 인스타그램
- 레퍼럴
- 팔로워 수 세기
- 유투브
- 테슬라 레퍼럴
- 책그림
- Bot
- 클루지
- wlw
- 테슬라 리퍼럴 코드 혜택
- 테슬라
- 모델 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 |