Data wrangling PDF file of My Number card issuance status
# reference + [My Number Card Spread Status Dashboard](https://mynumbercard.code4japan.org/) # Installation ```shell apt install ghostscript pip install camelot-py[cv] pip install pandas pip instal
Understand the probabilities and statistics that can be used for progress management with a python program
# Question 1 What is the total number of rolls when you roll the dice 100 times?  Part 3. I don't want to look it up again, so make a note of it (aggregate)
# About this article This article is a continuation of the article I posted the other day. 1. [Work memorandum (pymongo) Part 1. Basic operation](https://qiita.com/rsm223_rip/items/141eb146ad610215
AOJ Introduction to Programming Topic # 5, Topic # 6
# Topic # 5 [ITP1_5_A](https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/5/ITP1_5_A) ### Rectangle drawing #### **`Python`** ```python def Square(H, W): for i in range(0, H): for j
Relearn Python (Algorithm I)
A memorandum to relearn Python from the ground up. I would like to produce results that are tackling basic problems. # FizzBuzz problem fizz_buzz_problem The most basic problem that programmers ca
Screenshots of Megalodon in selenium and Chrome.
*** I took a screenshot of Megalodon with selenium and Chrome ***. *** It's a story *** ... 1. The method of taking screenshots in Python is on the net, so I will omit it. 2. The general public d
Output search results of posts to a file using Mattermost API
# Output search results of posts to a file using Mattermost API ## Introduction In my project, instead of a daily report, I post YWT (what I did, what I learned, what I do next) to Mattermost as a
Double quote csv elements in Golang
## Thing you want to do From [General format of CSV file (RFC4180 Japanese translation)](http://www.kasai.fm/wiki/rfc4180jp) > Each field (in the record) may or may not be enclosed in double quote
Blender Python API in Houdini (Python 3)
# Python 3 becomes Production Builds in Houdini 18.5 Houdini 18.5 --Python 3 has been added to [Production Builds Items](https://www.sidefx.com/download/daily-builds/old-installer/#category-gold). N
Create a video player with PySimpleGUI + OpenCV 3 Addition of mask function
# Introduction In addition to the previous article, we will add a region of interest (ROI) to be selected as the operation target and a process (mask) that targets only a specific part. [Make a vid
Search pythondict dictionary key by regular expression
# I want to search the dict key with a regular expression The dict dictionary is fast and very easy to use. If you want to search for a key with a regular expression, you would normally do this, but
docker-compose --help Japanese translation
`` docker-compose --help`` A Japanese translation of the help documentation that appears when you run it. Use Docker to define and run a multi-container application. # how to use: ```bash docker-
NetworkX graph generator list
A list of graphs that can be created with NetworkX. ## Previous information The version of NetworkX is 2.4. This is a Japanese translation of the [Official Documentation](https://networkx.org/do
Getting Started with Heroku, Deploying Flask App
# Introduction ## What is heroku? PaaS (Platform as a Service) provided by heroku, which was founded in the United States in 2007. PaaS is a service that allows you to publish an application with
A story about modifying Python and adding functions
* This blog was written as a report of eeic's experiment "Exploring large-scale software". There is "Exploring large-scale software" as an experiment that can be selected by the Department of Elect
I added a function to CPython (build & structure grasp)
# 1.First of all This section describes the CPython build and CPython file structure required to add functionality to CPython. This article uses Python 3.10. * This article was written as a report
Rotate sprites with OpenCV # 3 ~ Calculate by yourself without leaving it to others ~
# Introduction This time, I am modifying the previous program, but at that time I am also changing the variable names etc. in detail. 1. [Functionalize drawing Japanese fonts with OpenCV](https://q
Try creating a web application with Vue.js and Django (Mac)-(1) Environment construction, application creation
# Introduction Let's build the server side with Python Django and the client site with Vue.js. Django applications are created with cookiecutter. # Environment Python ### pyenv installation -
Install Python environment on local PC (pyenv, venv on Mac)
# Introduction Here's how to install pyenv as a Python environment on your Mac. Here, I will show you how to git clone from pyenv's github ([https://github.com/pyenv/pyenv](https://github.com/pyenv
Study Note 9_Install Jenkins on CentOS7
★ 1 Switch the user to root and start, first check the Java version (It seems that it will not work unless Java 1.7 or higher is installed) ```shell [root@localhost ~]# java -version openjdk version
Django Changed to save lots of data in one go
Since I saved nearly 30 daily tasks from TODO Plan, I had to access the database hundreds of times by creating regular tasks, and I wanted to reduce instability and load on the database. Even so, I
"The Cathedral and the Bazaar" that only those who work in a solid company want to read
## About "The Cathedral and the Bazaar" <a href="https://www.amazon.co.jp/%E4%BC%BD%E8%97%8D%E3%81%A8%E3%83%90%E3%82%B6%E3%83%BC%E3%83%AB-S-Raymond/dp/4904807022/ref=as_li_ss_il?__mk_ja_JP=%E3%82%AB%
Python learning plan for AI learning Progress management
# Background and purpose Because learning Python by Chainer seems to be a paragraph I will review the plan # Conclusion Learn the specialized books introduced below and output applications using
Machine learning rabbit challenge
# Machine learning It is said that a computer program measures task T (what the application wants to do) with performance index P, and if its performance is improved by experience E (data), it learns
ModuleNotFoundError in poetry: No module named'setuptools'
# 0. Introduction I haven't investigated the cause in detail, but a memo of the solution. # 1. Environment - python 3.7.7 - poetry 1.0.3 # 2. Phenomenon I got the following error when installing
[Internal_math version (2)] Decoding the AtCoder Library ~ Implementation in Python ~
# 0. Introduction [AtCoder](https://atcoder.jp/) Official Algorithm Collection [AtCoder Library](https://atcoder.jp/posts/517) (** ACL **) released on September 7, 2020 it was done. I thought it wa
I studied four libraries of Python 3 engineer certified data analysis exams
# The main library of exam questions ** 67.5% ** will be given from the exam questions in the four libraries NumPy, pandas, Matplotlib, and scitit-learn. I think that if you suppress this, you will
CD when using Golang's os / exec package
--For example, when you want to execute Makefile in a directory two levels higher ```golang os.Chdir("./../../") cmd := exec.Command("make", "ENV_FILE=.env", "DOMAIN_NAME=vamdemic") ```
Docker mysql quick reference Japanese translation
Japanese translation of [Docker Hub mysql Quick Reference](https://hub.docker.com/_/mysql). # What is MySQL? MySQL is the most popular open source database in the world. With proven performance,
[Understanding in 3 minutes] The beginning of Linux
## Introduction Terminals come out when you start learning programming. Have you often seen the description of Linux or UNIX in the job change conditions? I wondered what Linux is. ## What is Linux?