I hereby claim:
- I am kaisugi on github.
- I am hellorusk (https://keybase.io/hellorusk) on keybase.
- I have a public key ASCtl8nvItifvpcaYqvDZYu_h83nQgdS-ao-aO-4-bHINwo
To claim this, I am signing this object:
#installing vscode on Debian | |
You can install vscode using following commands: | |
1- Start by updating the packages index and installing the dependencies by typing: | |
sudo apt update | |
2- sudo apt install software-properties-common apt-transport-https curl | |
3- Import the Microsoft GPG key using the following curl command: | |
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - | |
4- Add the Visual Studio Code repository to your system: | |
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" |
I hereby claim:
To claim this, I am signing this object:
固定残業代(以下が明示されているか?)
年棒制(以下が明示されているか?)
裁量労働制
残業代は支払われないため、長時間労働につながりやすい
手引き
# Tri-Diagonal Matrix Algorithm | |
def tdma(A, b): | |
n = b.size | |
p = [] | |
q = [] | |
p.append(A[0][1] / A[0][0]) | |
q.append(b[0] / A[0][0]) | |
for i in range(1, n): |
CC = g++ | |
CFLAGS = -Wall -std=c++17 | |
pro: problem.cpp | |
$(CC) $(CFLAGS) -o pro -g problem.cpp | |
test: | |
./pro < test_input | |
comp: |
div#notebook { | |
font-family: sans-serif; | |
font-size: 11.5pt; | |
line-height: 120%; | |
color: #b5c2d9; | |
-webkit-font-smoothing: antialiased !important; | |
padding-top: 25px !important; | |
} | |
body, | |
div.body { |
pipenv install jupyter jupyter_contrib_nbextensions | |
pipenv install matplotlib numpy scipy | |
pipenv run jupyter notebook --ip=127.0.0.1 --allow-root | |
# pdf にする | |
jupyter nbconvert hoge.ipynb --to pdf |
from typing import Dict, Set | |
def incrementDate(date: Dict[str, int]) -> None: | |
if date["month"] == 12 and date["day"] == 31: | |
date["year"] += 1 | |
date["month"] = 1 | |
date["day"] = 1 | |
elif date["day"] == 31: | |
date["month"] += 1 | |
date["day"] = 1 |