Check "[Windows] How to tell if the exe is x64 or x86 Part2" on MacOS Go
Haruka Saho's blog post "[[Windows] How to tell if the exe is x64 or x86 Part2](http://h-sao.com/blog/2020/11/07/how-to-check" -x64-or-x86-windows-binary-part2 /) "was checked with Go. Go can be cr
VS Code settings for developing in Python with completion
# Introduction I'm using VSCode, but I didn't know which plugin (extension) to set to set up the Python development environment. When I put in my own package (module), I got angry with `" Can't Re
Why do you often come across code that plt.show () is missing? When do you need plt.show ()?
# Overview As the title says. In an article related to deep learning using Python, I sometimes feel lonely when I run the sample code at hand and the image is not displayed. From experience, I rem
I made a script to put a snippet in README.md
https://github.com/zakuro9715/md-embed-snippet Since it is in the public domain, please use it as you like ## motivation I want to write the file I put in examples / in the README, but GitHub Mar
I tried to make Kana's handwriting recognition Part 1/3 First from MNIST
# Overview I entered kana in the GUI and tried to detect characters by a model created by training in advance by machine learning. First, check the feel and accuracy of CNN with MNIST, then give t
Attempting to build opencv-python with Dockerfile on jetson nano but error ((CUDA_cufft_LIBRARY (ADVANCED) ...-- Configuring incomplete, errors occurred!)
Attempting to build opencv-python with Dockerfile on jetson nano but error Dockerfile #### **`Dockerfile (excerpt of relevant part)`** ```dockerfile # install opencv python3 (without CUDA option)
Features of programming languages [Memo]
# Motivation for writing this article I've just finished creating a portfolio for employment, and for the past few days I've been spending my time searching for companies to enter and studying interv
I want to automatically generate a modern metal band name
# Introduction Have you ever had the experience of "I can't decide on the name of our original band ..."? I think it's an experience that everyone has had trouble with once. I am currently suffering
Reflect the virtual environment created with Miniconda in Jupyter notebook
# 1. Background When my home PC broke down, I renewed my PC, and this time I installed a new Miniconda instead of the controversial Anaconda. Created a virtual environment for posting articles to Q
A timer (ticker) that can be used in the field (can be used anywhere)
How to use ticker when executing some processing regularly ``` func main() { ticker := time.NewTicker(time.Second) defer ticker.Stop() for { select { case t := <-ticker.C: fmt.Println("Cur
Break through Google "reCAPTCHA"! Challenge full automation of browser operation with "2Captcha"
# table of contents -[Introduction](#Introduction) -[What is 2Captcha](What is # 2captcha) -[Preparing to use 2Captcha](Preparing to use # 2captcha) -[Python + Selenium + 2Captcha breaks through
[Python] Specify the image area and apply OCR (monitor automatic recording device)
It can be a daunting task to keep the numbers appearing continuously on the monitor and writing them on paper by hand. For example, there are various monitors such as thermometers, hygrometers, and a
Difference between sort and sorted (memorial)
# Difference between sorted and sorted Nice to meet you. I am 19 years old aiming to become an engineer. This time, I suddenly wondered when I was solving the exercises, so as a memorandum <p> <b>
I tried to automate the 100 yen deposit of Rakuten horse racing (python / selenium)
# Purpose ** Easily raise the rank of Rakuten Happy Program ** ## table of contents + [What is a Happy Program](#What is a Happy Program) + [Easy way to raise the rank of Happy Program](#Pay 100 y
Try to get the contents of Word with Golang
# Introduction I usually develop a little in-house tool in Golang The other day, I received such a consultation from a junior "Every week, I just have to paste a document written in Word into Exce
Strongest Pokemon generation using LSTM
## Motivation In the paper I read earlier, there was an interesting paper with the title ** Reproduction of sound symbols by machine learning: Generation of the strongest Pokemon **. I arranged it m
A beginner who has been programming for 2 months tried to analyze the real GDP of Japan in time series with the SARIMA model.
# [at first] Thank you for taking the time to read the article! !! Let me start by introducing myself! I'm a member of society who enjoys learning Python in my spare time is. Far from programm
Goroutine that can be used in the field (errgroup.Group edition)
How to use errgroup to handle multiple asynchronous processes at the end ``` func main() { eg := errgroup.Group{} for i := 0; i < 5; i++ { i := i //← This is the point eg.Go(func() error {
Convenient shortcut keys for Linux commands! !! !!
I'm studying Linux, but there is something that the instructor who is a shortcut key has put together, so I wanted to share that. 
Attempting to install opencv-python3 on jetson nano but error ``` # python3 -m pip install opencv-python Collecting opencv-python Downloading https://files.pythonhosted.org/packages/30/46/82192098
Boot CentOS 8 from Windows 10 with Wake On LAN
<a href="https://ebios10.up.seesaa.net/image/800px-Centos-logo-light.svg.png " target="_blank"><img border="0" alt="800px-Centos-logo-light.svg.png " src="https://ebios10.up.seesaa.net/image/800px-Cen
Python Human Rust World Reincarnation Record-Sequence Parser Edition-
## Introduction Hello, My name is Mana binding. When a person learns a new programming language, it is natural that he / she absorbs it in the light of the knowledge he / she has learned so far. Is i
Python3 socket module and socket communication flow
### Socket classification This classification is a convenient division of sockets that are used differently, and sockets that are used in this way are referred to by these names. That is. However, i
Create a simple Python development environment with VSCode & Docker Desktop
The new Mac finally arrived! I want the guy I bought by hitting a lot to stay as beautiful as possible ... !! In that case, even if it is a personal development environment, the container is still g
I tried to implement the mail sending function in Python
## Introduction We have [implemented](#implemented) the function to send emails in Python! You can easily attach files! ## How to use I will explain how to use it using sending an email from gma
Try implementing Yubaba in Python 3
# Introduction Original author: [Implementing Yubaba in Java --Qiita](https://qiita.com/Nemesis/items/c7192a7c510788d2cba2) -[Try to implement Yubaba with JavaScript --Qiita](https://qiita.com/hat
Example of pytest environment to fix database with Docker
## Purpose I want to easily execute unit tests of Python applications using databases with pytest without being affected by the environment. (The one that starts up as a daemon instead of a file suc
[Python] I tried collecting data using the API of wikipedia
# Introduction I didn't need it because there is a lot of wikipedia data locally, but when I wanted a little data, I came across the wikipedia API, so it is a record at that time. # environment Oper
Import cv2 ModuleNotFoundError: No module named'cv2' in python3
## Overview I had a pyhton program using opencv that I wanted to run a little, so It was executed as follows. ``` python3 "The program you want to run.py" ``` Then I got the following error ``` T
VIM settings
# Try setting VIM to be easy to use I can't remember hjkl for key movement because it's sloppy, so I'll try to use the arrow keys and BackSpace key. ## Configuration #### **`command`** ```bash ec