A program that asks for a few kilograms to reach BMI and standard weight [Python]

In this article A program that asks for a few kilograms from height and weight to BMI and standard weight I will write. ## What is BMI / standard weight? The body mass index (body mass index) is

Try to decompose the daimyo procession into Tucker

# Introduction Linear algebra has an operation called singular value decomposition, which is used to approximate matrices. For details, refer to the above "[Singular value decomposition of daimyo ma

Hello world with full features of Go language

I will leave the Hello world, which is full of Go language features that I tweeted before, as a Qiita article. It just implements the simple goal of displaying "Hello # number world" from 0 to 99 i

Python memorandum (algorithm)

A memorandum to relearn Python from the ground up. I would like to achieve results that are tackling basic problems. # Fibonacci sequence Create a result display program for the Fibonacci sequence

Speaking Japanese with gTTS (reading a text file)

I did the same thing with gTTS. [Japanese utterance with OpenJtalk (reading out text file)](https://qiita.com/ekzemplaro/items/1d669ffa8915db110180) #### **`kusamakura02.py`** ```py #! /usr/bin/p

Get images of OpenStreetMap and Geographical Survey Institute maps with Python + py-staticmaps

## Overview --Get images of OpenStreetMap and Geographical Survey Institute maps using the Python library [py-staticmaps](https://github.com/flopp/py-staticmaps) ## This environment - macOS Catali

I learned how the infrared remote control works with Raspberry Pi

I had never been aware of the mechanism of remote controls for TVs and air conditioners that are familiar to me, but I learned how to use infrared remote controls for electronic work. I also tried t

Steps to machine learning and API server using Kaggle's House Sales in King County, USA dataset

## Introduction Using a dataset from Kaggle's House Sales in King County, USA, I used XGboost machine learning to generate a learning model and Flask to turn it into an API server. This machine learn

I want to visualize csv files using Vega-Lite!

# Trigger# I decided to use Vega-Lite in the laboratory, but I didn't know what to do after the tutorial, and it was quite difficult, so I hope it helps me with a memorandum + someone. # Purpose# ##

Easy to create API server using go-json-rest module

## Repository https://github.com/ant0ine/go-json-rest ## Program to display Hello world #### **`main.go`** ```go package main import ( "github.com/ant0ine/go-json-rest/rest" "log"

About Go functions

## Basic syntax of the function The basic form of the function definition is as follows. ``` func function name(argument)Return type{ Contents of processing... } ``` It is a flow to take an argume

Try collecting sites all over Japan compatible with Brave browser with Twitter API

__ I hit the Twitter API with Python to collect sites that support the Brave browser. [Click here for the original story. ](Https://qiita.com/NP_Systems/items/43213990274467d8f7e9) # If you tweet wi

GO Official Tutorial Note 1

## Purpose --Writing notes to catch up with GO language ――Since the formula is in English, proceed with Japanese localization + annotations (translation is Deepl) ## Introduction The site I'm refe

Add users with SSH access to your Amazon EC2 Linux instance

When you launch an instance on EC2, it launches with the default system user account, but if multiple users access it, it's a good idea to use a separate account for each user. # Preparation of key

I summarized one year of self-taught data science.

# 1 Introduction This is an article about university students who are interested in data science and look back on their studies for a year! Let's get down to the main topic! # 2 Purpose of this a

After attending school, I participated in SIGNATE's BEGINNER limited competition for the first time.

# At first I wrote this article because I thought that posting this unfinished code would catch the eye of many people and give me improvements and remedies such as what I did wrong and what I should

[For beginners] Install the package in the Anaconda environment (Janome)

<h1> Introduction </ h1> This time, I will talk about how to install the package in the Anaconda environment, using Janome, a package for morphological analysis, as an example. If you install a pa

Dealing with "error Looks like develop for this site is already running, can you visit http: // localhost: 8000? If it is not, try again in five seconds!" In Gatsby

# Case study ```gatsby develop```When I executed, the following was displayed ``` error Looks like develop for this site is already running, can you visit http://localhost:8000 ? If it is not, try a

Text analysis that can be done in 5 minutes [Word Cloud]

Let's do text mining very easily using Python 3.x series. ** This time, in addition to processing on the LINUX terminal as much as possible so that even people who have never used Python can unders

Anaconda3 × Pycharm environment construction memo

Python de amateur built the environment with Anaconda3 and Pycharm. I will leave it as a memorandum. ##### ◆ Environment - OS:Windows 10 Enterprise --OS version: 1809 --OS build: 17763.1518 --P

I vectorized the chord of the song with word2vec and visualized it with t-SNE

## Overview A song is made up of chords called chords. The order in which they are arranged is very important, and it changes the emotion of the song. A block of multiple chords is read as a chord pr

DeepL translate YouTube Live chat and display it in real time

# Operation image DeepL Translator and display in real time. (Right window) ![メディア1.gif](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/798027/13a2d23e-ec22-039a-05a1-f34cb9cb73c8.gif)

Stumble story with Python array

The story of an array that I personally became "Python, was that so?" While touching Python recently. (By the way, I have a past that I stumbled upon and melted for an hour or two) ## Array additio

Consider what you can do with Python from the Qiita article

# Introduction As I continue to learn programming, what can I do after finishing the tutorial (I have)? I understand the syntax of the language, but I don't know what to do next. I think there is

Measure indoor and outdoor temperature and humidity and display on dashboard

## Purpose I want to check the indoor and outdoor conditions on the dashboard using a thermo-hygrometer. Even when I bought the SwitchBot thermo-hygrometer, I felt that it wasn't used up, but I go

[Python] I tried to visualize tweets about Corona with WordCloud

# Introduction I collected tweets for use in machine learning, but I tried to visualize it because it was a big deal. I'll leave that method here. For some reason I ran it on windows and macOS, so

A complete understanding of Python's object-oriented programming

# Object-orientation ## 1. Object-oriented origin 2003 Turing Award Winner [Alan Kay](https://ja.wikipedia.org/wiki/%E3%82%A2%E3%83%A9%E3%83%B3%E3%83%BB% E3% 82% B1% E3% 82% A4) often says [Object Or

I wrote Gray Scale in Pytorch

<h1> Background </ h1> When I tried to Glay Scale with Pytorch, there was no Function, so I converted it to PIL once, Gray Scaled it, and then converted it back to Torch Tensor, so I thought it was

Codeforces Round # 676 (Div. 2) Bacha Review (10/31)

# This time's results ![スクリーンショット 2020-10-31 16.07.24.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/331393/f648a48e-382a-654d-331f-33e014dd7f5f.png) # Impressions of this tim

[Introduction] I want to make a Mastodon Bot with Python! 【Beginners】

## Target --Make a bot to return the parrot --Grasp the rough flow of Mastodon Bot created using mastodon.py ## Environment First of all, since you are programming in Python, you need to prepare *