remote: Permission to <your_repo> denied to <other_user>.
다른 개발자 github credential을 등록해둔 것 때문에 github push시에 permission denied 에러가 발생할 때,
git credential-manager clear
Target Url:
https://github.com
| import winsound as ws | |
| from SRT import SRT | |
| import time | |
| import random | |
| def beepsound(): | |
| freq = 2000 # range : 37 ~ 32767 | |
| dur = 1000 # ms | |
| ws.Beep(freq, dur) # winsound.Beep(frequency, duration) |
| #-*- coding: utf-8 -*- | |
| # python 3.x | |
| '''run with chcp 65001 & python steal.py''' | |
| import subprocess as sp | |
| import re | |
| import sys | |
| base_cmd = ['netsh', 'wlan', 'show', 'profile'] |
| create table tbl (a int); | |
| create table tbl (b char(5)); | |
| create table tbl (c date); | |
| create table tbl (a int, b char(2), c date); | |
| create table tbl (a int not null); | |
| create table account ( | |
| account_number int not null, | |
| branch_name char(15), | |
| primary key(account_number) | |
| ); |
remote: Permission to <your_repo> denied to <other_user>.
다른 개발자 github credential을 등록해둔 것 때문에 github push시에 permission denied 에러가 발생할 때,
git credential-manager clear
Target Url:
https://github.com
python setup.py sdist
twine upload dist/*
| mkuser home=/home/testuser testuser | |
| passwd testuser | |
| chfs -a size=3G /home | |
| chfs -a size=3G /opt |
| // ([행복한 동행] 4대 폭력 예방) 학습하기 --> F12 --> Console --> 아래 코드 복붙 / | |
| // ([건강한 조직 만들기] 아동학대 예방교육)는 형식이 달라서 안 됨 | |
| var form = h_frame.document.form1; | |
| var s = form.action; | |
| var s2 = s.replace(/current_frame_count=([0-9]+)/, "current_frame_count=10"); | |
| form.action = s2; | |
| form.submit(); |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| def simulate(speed_1, load_ratio=0.4, num_attack_1=5, cooltime_2=1 / 6): | |
| cooltime_1 = 1.0 / speed_1 | |
| load_time = cooltime_1 * load_ratio | |
| attack_time = cooltime_1 - load_time | |
| sub_attack_period = attack_time / num_attack_1 |
| emcc side.c -s SIDE_MODULE=1 -o side.wasm -s EXPORT_ALL=1 | |
| emcc main.c side.wasm -s MAIN_MODULE=1 -s EXPORT_ALL=1 -o main.js | |
| # node main.js |
| #!/usr/bin/env python | |
| # pip install selenium playwright | |
| # playwright install | |
| import timeit | |
| import time | |
| import selenium | |
| from selenium.webdriver import Chrome | |
| from selenium.webdriver.chrome.options import Options as ChromeOptions |