[Note] Installing vmware ESXi on Arm Fling on Raspberry Pi 4B
# Overview --Use vmware ESXi on Arm Fling with Raspberry Pi 4B. --Since onboard Wifi cannot be used, use a wired LAN. --Since Raspberry Pi UEFI related files are also put in SATA-USB conversion +
How to change Django's SQLite3 uploaded to python anywhere with GUI only
How to change Django data uploaded to python anywhere. A memorandum of how to change intuitively without using the command line. What I wanted to do ・ I wanted to update the link and image of the
Image cropping tool creation with OpenCV, precautions for projective conversion (only a little)
# Introduction I created an image cropping tool using OpenCV. Cut out the object, project it, shape it, and save each one. The object is assumed to be a film with the following image. Even if thi
Python learning memo for machine learning by Chainer Chapter 10 Introduction to Cupy
What This is an article that summarizes what I noticed and researched when learning machine learning using Chainer. This time, I will study scikit-learn. It is written based on my understanding, s
Django beginners tried building an environment
# How to get started with Django * This article is for Mac users, so please refer to it for Windows users. ① First, install Django ``` $ pip3 install django ``` ② Install the Djnago framework `
Bit full search with Go
Donuts Procon Challenge B --Tokyo 7th Sisters https://atcoder.jp/contests/donuts-2015/tasks/donuts_2015_2 ``` package main import( "fmt" "bufio" "os" "strconv" "strings" "go/types" "g
sed memo
--Confirmation environment: sed (GNU sed) 4.2.2 --There are parts that behave differently from regular expressions in PHP, JavaScript, and VSCode. ――In conclusion, I think you can't do anything tha
Try to draw a life curve with python
As the title says. The life curve is a time-series review of your own experiences. It is plotted with the x-axis as age and the y-axis as motivation (happiness, fulfillment). Next, pay attention
Binary method
# Binary method When $ x = a ^ k $, the square calculation is performed $ k $ times. The binary method is a method to reduce the amount of calculation to $ log (k) $ by sequentially finding $ a ^ {2
[Python] Create a date and time list for a specified period
# Thing you want to do I want to create a list with 6-hour intervals from 05:00 on October 29, 2020 to 00:00 on November 1, 2020. # python code ```python from datetime import datetime, timedelta de
Try to reproduce NumPy's add.at in Julia
The title as it is. # NumPy code you want to reproduce It's an in-place change in NumPy. #### **`Python(NumPy)`** ```python >>> A = np.ones((3,3)) >>> A array([[1., 1., 1.], [1., 1., 1.],
Install Pytorch on Blender 2.90 python on Windows
Basically, it's not much different from installing on Blender 2.8x. I thought that it would not be possible to install it in 2.90, but it was easier than I expected. I don't have much information, bu
[Python] Appears when using iterdir () etc. [Errno 20] Not a directory:'*** / .DS_Store'
When I use iterdir () etc. in Python, I get an error like the title. It comes out when a function cannot be executed due to a hidden file called .DS_Store, which is unique to the Mac. The workaroun
Visualize the range of interpolation and extrapolation with python
Code created to understand the scope of interpolation and extrapolation. It is necessary to be careful about overfitting, but in the range of extrapolation, It is necessary to thoroughly examine w
[For beginners] How to display maps and search boxes using the GoogleMap Javascript API
How to add a map on your app using the googlemap API. Basically, it can be realized by writing [Official document] [1] ~~ along copy and paste ~~, but I am a Javascript beginner and it took a long
no CUDA-capable device is detected
When using __GPU with ray and performing parallel processing, the following error appears. ``` RuntimeError: cuda runtime error (100) : no CUDA-capable device is detected at /opt/conda/conda-bld/pyt
[Linux] DNS settings
## Introduction Note on how to set DNS in Redhat environment ### Environmental information * OS:Redhat 7.7 ## DNS settings ### Enter the domain name and DNS server IP address in the configuration f
[Linux] SMTP setting method in Linux environment (host) when sending notification mail with Docker
## Introduction Memo about how to set SMTP in Linux environment (host) when sending notification mail with Docker ### Environmental information * OS:Redhat 7.7 ## SMTP settings ### Postfix configur
Machine Learning: Supervised --Random Forest
# Target Understand the Random Forest algorithm and try it with scikit-learn. # theory Random forest is a type of ensemble learning called bagging that combines multiple decision trees. ## No fre
Get Amazon data using Keep API # 1 Get data
## Get Amazon data As a memorandum because I needed to get Amazon (US) data at work. I think you can get the product outline and reviews by scraping. Since you cannot get past listing status, price
Added firewalld to Amazon Linux 2 (IP address restrictions)
# Related URL -[CentOS 7 firewalld Frequently used commands --Qiita](https://qiita.com/kenjjiijjii/items/1057af2dddc34022b09e) ← Great! -[Three ways to limit IP addresses on AWS](https://bsblog.cas
[Linux] Docker environment construction on Redhat
## Introduction Note how to build a Docker environment with Redhat ### Environmental information * OS:Redhat 7.7 ## Docker environment construction ### update yum ```bash yum update ``` ### Upgrad
[Python] A notebook that translates and downloads the ipynb file on GitHub into Japanese.
# Introduction [Last time](https://qiita.com/Cartelet/items/215d509d5d00fb04c08c), I wrote a script to translate program comments into Japanese, but I think I can translate each ipynb file (Jupyter f
Use AWS lambda to scrape the news and notify LINE of updates on a regular basis [python]
# Introduction This is my first post. I'm a college student who has been studying programming on his own for more than half a year, but I'd like to output what I've learned little by little, so I'll
I couldn't input Japanese on Ubuntu 20.04
# Introduction With Ubuntu20.04 Even if you press the "half-width / full-width key" when you want to type Japanese, the alphabetical notation does not change! I encountered the problem and solved
Binary search tree is a relative of Hash chain !?
Good evening (* ´ω `) As an amateur, At first glance, what is "tree"? .. (Sorry for all the experts m (_ _) m) The tree structure seems to be a data structure that expresses the hierarchical re
Dockerfile reference Japanese translation
Japanese translation of [Dockerfile reference](https://docs.docker.com/engine/reference/builder/). Docker can build the image automatically by reading the instructions from the Dockerfile. Dockerf
[Bash] Redirection of multiple lines to multiple files
--When using Bash, you may want to write a character string with multiple lines of content in a shell script to multiple files. ――At that time, multiple ʻecho` or multiple `>` are written one after
It's time to install DB with Docker! DB installation for beginners on Docker
# About this article ** Database **, I think it will almost certainly be used in enterprise and other application development even in 2020. However, as in the past, there are still many people who
Quantum-inspired machine learning with tensor networks
# Introduction This time, I will introduce quantum-inspired machine learning, which has become a little hot in recent years. To be more precise, "quantum inspire" here is "inspired by the method us