Argument implementation (with code) in your own language
# It's time for your own language. Hi, this is dangomushi who wants to try M1 on a new Mac. This time, I implemented "scope" in my own language. Also, like machine language, if you read it yourself
Set the range of active strips to the preview range
In Blender, specify the range of actions in units called strips There is a function called ** Non-Linear Animation (NLA) ** that superimposes or loops multiple motions. You can also export the stri
[Slack api + Python] I tried to summarize the methods such as status confirmation and message sending
The requests to be handled are as follows. -[chat.postMessage](#chatpostmessage) ([Official Document](https://api.slack.com/methods/chat.postMessage)) -[users.profile.set](#usersprofileset) ([Offi
Codeforces Round # 694 (Div. 1) B. Strange Definition: Relationship between unsquared numbers and LCM and GCD
https://codeforces.com/contest/1470/problem/B I couldn't write an easy-to-understand sentence, so it's my thought dump memo. I want to be able to use this kind of commentary well. # Subject --Whe
Creating an authentication function
<div align="center"> <img src="https://flask.palletsprojects.com/en/1.1.x/_images/flask-logo.png " /> </div> # Introduction We use Flask to create an application from scratch and organize it so tha
[Golang] Notes on frequently used functions
# About this article Since I wrote it completely for myself, most of the explanations are small and easy processing, but I will update it as needed because it is used as a memorandum. ## Cast from s
Go Language-Functions
# function I'm going to write the understanding of Go from the basics of programming! ### What is a function ```go var input string fmt.Println("Please enter the following words:go") fmt.Scan(&input
Go language-pointer
# Pointer I'm going to write the understanding of Go from the basics of programming! ### What is a pointer? Address is a value Can be manipulated like an integer or string or assigned to a variabl
We will implement an optimization algorithm (artificial bee colony algorithm)
# Introduction A series of optimization algorithm implementations. First, look at [Overview](https://qiita.com/pocokhc/items/07b698cc426cadb3a64e). The code can be found on [github](https://git
Convert PDF of Sagamihara City presentation materials (occurrence status, etc.) regarding new coronavirus infection to CSV
```python import datetime import pathlib import re from urllib.parse import urljoin import pandas as pd import pdfplumber import requests from bs4 import BeautifulSoup def fetch_file(url, dir="."):
[Refactoring Catalog] Change from reference to value
## Book [Refactoring-Safely Improve Existing Code, 2nd Edition](https://www.yodobashi.com/product/100000009003204206/) Or [Web version](https://martinfowler.com/articles/access-refactoring-web-editio
Initialize Softether VPN server with GUI
# Introduction This article is for those who have completed the server side construction in [Previous article](https://qiita.com/honahuku/items/1fdc8c6b6ad49816f1a0). If you haven't done so, please
AtCoder ABC187 Python
#### **`A.py`** ```py A, B = map(str, input().split()) a = list(map(int, A)) b = list(map(int, B)) suma = sum(a) sumb = sum(b) if suma >= sumb: print(suma) else: print(sumb) ``` #### **
selenium case study summary python pyCharm
## Summary of problems with Selenium Recently, I think that I will summarize in this article the problems that I had in creating a mechanism to automate the input work of selenium. If you write what
Try face recognition with Generated Photos
This article is a relay article of "2021 New Year Advent Calendar TechConnect" of [Link Information Systems](https://www.lis.co.jp/). Relayed by a group member of engineer.hanzomon. (For Facebook o
Linux [directory command]
# Introduction This will be a memo for learning. A directory is a folder. A folder that stores files. The directories are nested. # The role of the main directory `/bin` * Stores command execu
Create an Excel file with Python3
# Motivation I couldn't find an entry that suits my purpose # Overview Create an Excel file with Python3. Set a value in the cell. Decorate a little. Make it in the form of a file # environment
Post Test 3 (Working with PosgreSQL in Python)
## Reference page https://qiita.com/kumazo/items/483f47360f8b61a9fbb9 ## How to use JSONB Reference page https://blog.serverworks.co.jp/postgres_jsonb_search ## In the middle of sample code ```pyth
AssertionError in Poetry may be fixed by modifying pyproject.toml
It is written at https://github.com/python-poetry/poetry/issues/1051. You cannot install a module with the same name as the `name` field in` [tool.poetry] `of` pyproject.toml`. I'm convinced that P
How to call when using double underscore (Private attribute) for class function
I specified a double underscore for the function in the class and tried it as a Private attribute, but it was recorded when calling the function. <Addition (see pep8): In general, the method of addi
Try creating a CRUD function
<div align="center"> <img src="https://flask.palletsprojects.com/en/1.1.x/_images/flask-logo.png " /> </div> # Introduction We use Flask to create an application from scratch and organize it so tha
Output cell to file with Colaboratory
Even if I googled with `Colaboratory cell file output`, it did not come out. Original story: [Cell magics @ ipython](https://ipython.readthedocs.io/en/stable/interactive/magics.html#cell-magics) #
Scraping and tabulating weather warnings and warnings nationwide from the Japan Meteorological Agency
From the [Weather Warning / Warning](https://www.jma.go.jp/jp/warn/) page of the Japan Meteorological Agency Scraping and tabulating weather warnings and warnings nationwide ```python import pathli
Summarize the knowledge of reading Go's HTTP implementation ~ Slice ~
# Introduction I've been reading Go's [HTTP Implementation](https://github.com/golang/go/tree/master/src/net/http) recently after a business survey, and finally I can understand the flow of http impl
AtCoder ABC188 Python
#### **`A.py`** ```py X, Y = map(int, input().split()) if max(X, Y) - min(X, Y) < 3: print("Yes") else: print("No") ``` #### **`B.py`** ```py N = int(input()) A = list(map(int, input().
Test & Debug Tips: Create a file of the specified size in Python
## Introduction This is a trick that can be used for testing and debugging. Want to create a large file with random content for testing? .. Moreover, it is instant. ## Create a huge file "instantly
Connection between flask and sqlite3
<div align="center"> <img src="https://flask.palletsprojects.com/en/1.1.x/_images/flask-logo.png " /> </div> # Introduction We use Flask to create an application from scratch and organize it so tha
Creating a simple app with flask
<div align="center"> <img src="https://flask.palletsprojects.com/en/1.1.x/_images/flask-logo.png " /> </div> # Introduction We use Flask to create an application from scratch and organize it so tha
sympy and Decimal seem to be on bad terms
`Decimal` object ```python from sympy import * from decimal import * getcontext().prec = 100 #Decimal precision 100 digits Disciple Maru= Decimal(1)/ Decimal(3) x = Symbol("x") print("decimal:",D
Install GoLand IDE on Ubuntu
Although it is a free version, I downloaded the GoLand editor to my Ubuntu environment. I referred to the following sites. [Install Jetbrains GoLand Go IDE on Ubuntu](https://linuxhint.com/install_j