Implementation of the treatise of "Parameter estimation method for human flow simulation" (unofficial)
# Introduction The paper ["Parameter estimation method for human flow simulation"](https://db-event.jpn.org/deim2017/papers/146.pdf) was implemented in Python. The implemented code is posted on [git
linux with termux app
If you use the android application termux, you can type linux commands, so I tried using it. It will be easier to use if you hit this first. termux-setup-storage □ What I was able to do ・ Apt get
Keyence Programming Contest 2021 Notes
# Preface I tried Atcoder, so it's a memo for myself. I plan to add and correct it later. # problem https://atcoder.jp/contests/keyence2021 A #### **`Q_A.go`** ```go package main import (
About type comparison by PHP
## Overview According to the following description, PHP seems to be TRUE even if the type to be compared is different. https://www.php.net/manual/ja/migration80.incompatible.php Since 0 == "0" is TR
PGM (python version) that plays videos while moving
If it is moving previously made with JavaScript, move the video on youtube frame by frame I made a python version of things. This will play the already downloaded video frame by frame only while it
Draw a graph with matplotlib from a csv file
# at first Recently I worked on outputting a graph from a csv file with python. I'm new to pandas and matplotlib and it took me a while, so I'll summarize them briefly for future speedups. # code
Get the value from the [Django] Form
# Execution environment The execution environment is as follows. Python3 -- Python 3.9.0 Django -- 3.1.3 # About getting values from Form in Django This time, when I was creating a web applicatio
Load a photo and make a handwritten sketch. With zoom function. Tried to make it.
# Introduction You can find several tools for drawing handwritten sketches on your photos. However, I couldn't find a tool with a zoom function. Standard photos and markup were difficult to use due
I tried to reuse the SSL certificate issued by Let's Encrypt due to the server transfer
## Premise This time I had the opportunity to move from Server A (hereafter, old server) to Server B (hereafter, new server). I wanted to take the SSL certificate used on the old server to the new s
Story of trying competitive programming 2
Why? This is a sequel to [here](https://qiita.com/shitikakei/items/a98d208cbdf80ecbf372). I will update it from time to time, and when I reach a certain level, I will move on to the next article.
After installing Anaconda3, I get the error "zsh: no such file or directory:/opt/anaconda3/bin/conda" in the command line preferences.
When I tried to install Anaconda3 on my home Mac, I stumbled on it for the first time. It went well until the package installation, and in the command line environment settings, >/opt/anaconda3/bi
To get the path of the currently running python.exe
To get the path of python.exe that is currently running this script .py file: `sys.base_prefix` #### **`Console`** ```python import sys sys.base_prefix ``` #### **`result`** ```python 'C:\\pyth
Delete all Docker Volumes
``` docker volume ls | awk '{print $2}' | xargs docker volume rm ```
Python web scraping selenium
I am aiming to change jobs as an engineer this year. Many people also aim to change jobs to engineers. I will do my best so that I can change jobs too! I'm going to outlet what I learned today.
A brief description of pandas (Cheat Sheet)
I'm not good at English, but it's useful because I can understand it by looking at the picture. [Link to original](https://pandas.pydata.org/Pandas_Cheat_Sheet.pdf) [![image.png](https://qiita-ima
How to build Java environment on Ubuntu (Linux)
TL;DR It is recommended to use [SDKMAN](https://sdkman.io/) when building a Java environment on Ubuntu. It is possible to install Java via apt, but it is difficult to select and switch versions by
Creating a temperature / humidity monitor with Raspberry Pi (pigpio version)
Change GPIO control to pigpio and get temperature and humidity value from DHT22. I felt that it would be better to move to pigpio to control other sensors in the future, so I remade the one created
[Python] Iterative processing_Personal memorandum
# Iterative processing (while instruction) """ 【syntax】 while conditional expression --Repeat while the conditional expression is True """ i = 1 while i < 5: print (i,'th loop') i += 1 """ Watc
[Dockerfile] About tzdata settings
# Purpose I tried to create a docker image to install jupyterlab on ubuntu on Docker. # Clogged problem In order to create a docker image from a Dockerfile, try to execute the following file (docker
ABC188 C problem with python3
# [ABC188 C Problem ABC Tournament](https://atcoder.jp/contests/abc188/tasks/abc188_c) ### one thing I got an incorrect answer with tle because I used remove () in the list. From the C problem, I wa
[Blender x Python] Blender Python tips (11/100)
This article replaces the operations in CG Boost's [100+ Tips to Boost Modeling in Blender](https://www.youtube.com/watch?v=JMBMHSca_j0) with Python. # table of contents 0.BlenderPython tips 1. Mod
How to avoid import errors when running python in Synology DSM Task Scheduler
# The error that occurred When I tried to run a Python script in Synology's DS118 from DSM's Task Scheduler, I got a module import error. #### **`Error in the email received from DSM`** ```python
DataFrame of pandas From creating a DataFrame from two lists to writing a file
# at first DataFrame is difficult. I'm worried about the next problem. --Store list1 and list2 in index 0 and index 1? --A pair where the indexes of list1 and list2 are aligned? My idea is "I w
How to test the current time with Go (I made a very thin library)
# What kind of article? I wondered what to do with Golang for tests involving the current time. I didn't get it right, so I made a library with only the functions I wanted. # What I checked @ tom
Post an article with an image to WordPress with Python
# Introduction When writing a blog article with WordPress, it is a memorandum that I checked if I could post an article with an image from Python as it is by inserting a graph aggregated with Python
I made my goimports
# What you want to do, what you made ## `goimports` best `goimports` is Go's CLI tool that does a ↓ on a` * .go` file. --It will `import` external packages that have not been` imported`. --Unuse
We will implement the optimization algorithm (harmony search)
# 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
Workaround for the problem that? Is displayed when checking the version when using non-standard perl | python with pkg version
# background The [_pkg version_](http://koganemaru.co.jp/cgi-bin/mroff.cgi?subdir=man&lc=1&cmd=&man=pkg-version&dir=jpman-12.2.2%2Fman§=0) command will be used as the difference confirmation comm
I tried to predict Covid-19 using Darts
Prophet developed by Facebook is easy to understand and I have been using it for a long time for forecasting time series data, but recently I have been able to use Prophet for sklearn-like and wrap o
[Blender] Modeling tips Summary User Interface
This article summarizes the operations in CG Boost's [100+ Tips to Boost Modeling in Blender](https://www.youtube.com/watch?v=JMBMHSca_j0). # table of contents 0. Customize shortcuts 1. Display th