I want to make an automation program!

# start 彡 (゜) (゜) "I want to use Gaussian by a method other than accessing from off-campus." 彡 (゜) (゜) "Saya, if you throw a file into a specified folder on the calculator, you can call it automati

Anomaly detection introduction and method summary

I learned about anomaly detection, so I will summarize it. ## References I have greatly referred to the following documents: [1] [Lukas Ruff, et al.:A Unifying Review of Deep and Shallow Anomaly De

Create an English word app with python

# specification --Scraping the entered word from the translation site and displaying the translation result --Outputs audio files at the same time as translation --Save the audio file with the word

[Selenium] I want to display the browser by hitting the driver on the host OS from WSL

# Introduction WSL is very convenient in that you can use Linux commands while using Windows, but when it comes to Selenium, there is a drawback that it is difficult to check the behavior of the brow

Make ordinary tweets fleet-like with AWS Lambda and Python

# What is a fleet? > Fleet provides the ability to take advantage of Twitter and communicate on Twitter in an unprecedented way. The content shared on Fleet disappears after 24 hours, so you can shar

Initial setting of Mac ~ Python (pyenv) installation is the fastest

# table of contents 1. Purpose 2. Environment 3. Various settings / installation <br> 3.1 Trackpad settings <br> 3.2 Keyboard settings <br> 3.3 dock settings <br> 3.4 Display settings <br> 3.5

I want to extract only pods with the specified label using Label Selector in Client-go

## How to do --Define in metav1.ListOptions --There are many other than Label Selector ## Corresponding part ```golang pods, err := clientset.CoreV1().Pods(namespace).List(context.TODO(), metav

Go language server sample code with Clean Architecture-like configuration (using echo, wire)

# Introduction Let's implement Go's REST API Server with a focus on the Clean Architecture-like package structure. In addition, Go's web framework [echo](https://github.com/labstack/echo) and DI co

[Lambda] I tried to incorporate an external module of python via S3

# Overview When I made a disny monitoring bot using lambda, I wanted to execute it regularly using lambda, so I decided to use aws lambda. At this time, it was necessary to incorporate line-sdk-bot

Let's summarize Apache

Let's take a look at Apache for learning Linuc2. To be honest, I didn't really care about the detailed settings because it can be used by installing with yum. If you edit httpd.conf and check it wi

[AtCoder explanation] Control the A, B, C problems of ABC184 with Python!

** AtCoder Beginner Contest 184 **'s ** A, B, C problems ** will be explained as carefully as possible with ** Python3 **. I am aiming to explain a solution that satisfies the following three point

How to deal with old Python versions in Cloud9 made by others

--Environment: Cloud9 ――My colleague was using Cloud9 using EC2, so I wanted to use it too, so I asked Cloud9 to create an account and started using it immediately. # Event: Python version was old

[Python] Download original images from Google Image Search

# Introduction Earlier I wrote how to download thumbnail images from Google Image Search, This time, it turned out that if you display the image in detail (when you click the search result once), th

[Python] Shopping program

# Make a shopping program in Python #### **`python`** ```java items = {'apple': 100, 'banana': 200, 'orange': 400} money = 1000 for item_name in items: print('-----------------------------------

You can use assert and Enum (or) decorators to check compliance with type annotation constraints without the help of mypy.

## 0. Introduction For Python3 type checking, typing and mypy are known. ___ ・ [@ Mski_iksm's Qiita article "Python type checking using typehint and mypy"](https://qiita.com/mski_iksm/items/8565183

Convert Select query obtained from Postgre with Go to JSON

## Thing you want to do --I want to convert the entire query obtained by the SELECT statement to JSON --It seems that the scan of the sql package is processing line by line, so you need to create an

Medical insurance premium EDA and regression problems

# Overview Since there is an opportunity to educate staff who do not have knowledge of machine learning at the company, we decided to make teaching materials for EDA, clustering, and regression probl

[Note] ssh connection from terminal with AWS LightSail

# Introduction A memorandum of practice for building a data science environment with AWS LightSail # table of contents 1. Create an instance with LightSail 2. shh connection # 1. Create an instan

I tried to implement anomaly detection by sparse structure learning

* Articles sent by data scientists from the manufacturing industry * This time, we have implemented and organized anomaly detection methods that can be used in the manufacturing industry. ## Intro

A super introduction to Linux

# Overview Here, I will write down the basic knowledge and commands of Linux after reviewing it. ### What is a kernel? The only software that can communicate with hardware such as CPU, memory, ke

Updated "Introduction to Python Web Application Homebrew for Slow 3rd Year Web Engineers"

# Updated the book [Chapter "Create Request / Response / View class to improve visibility"](https://zenn.dev/bigen1925/books/introduction-to-web-application-with-python/viewer/response-request-view

Pass SuperCollider sound as microphone input for other apps on Linux

Setting method when you want to pass the output of SC as input of another application, such as when you want to pass the sound of SuperCollider (hereinafter SC) to the browser in a remote session Fi

[Python 3.8 ~] Rewrite arrays etc. at the same time as definition [tips]

# Introduction > **-I want to make array initialization compact-** That wish can be realized. Yes, it's 3.8 ~. # How to do ```python (Variable name:=Definition)[slice] =Change ``` Note) Even if

Browse an existing external database with Django

## Overview * I used to run a database, but I wanted to refer to it from a newly built Django application. * You can refer to other than Django's default DB. * I've only tried it with Mysql, but I

[Python] Calculate the average value of the pixel value RGB of the object

# 1. Overview This time, we will introduce the process of outputting the average pixel value RGB of the object to a csv file. ![apple_introduction.jpg](https://qiita-image-store.s3.ap-northeast-1.a

[Design study 1] Design study of PC operation automation system 1

# Overview Starting today, we will develop a PC automation system. Summarize the following Requirement definition screen image User operation # Requirement definition I want to automate click o

[Python] DP ABC184D

Let dp (X, Y, Z) be the answer when there are X gold coins, Y silver coins, and Z bronze coins. When any of X, Y, Z is 100, dp (X, Y, Z) = 0. If not, by considering the three cases of which coin was

Python's lru_cache was slow (I investigated it because I misunderstood it)

TL;DR It's not late Note that if you don't set `maxsize` for` lru_cache`, it will default to `128`. [Reference](https://docs.python.org/3/library/functools.html) # When I used `functools.lru_cach

Collectively implement statistical hypothesis testing in Python

# Introduction I summarized the statistical hypothesis test. Later, I would like to write an article that organizes "detection power" and "effect size", so I wrote this article as the first step. I

Convert MetaImageIO (* .mha, * .mhd) to tiff stack

# Use SimpleITK with python The core part is as follows. If you specify tiff in the output, it will automatically become a stack file. ```python import SimpleITK as sitk reader = sitk.ImageFileRe