I tried using Twitter api and Line api

### Introduction I wanted to study api, so I made it as a test. Get the trend of Twitter (1st-5th) and make a bot to notify by Line. ### Environment ``` pip install line-bot-sdk //Library using L

[Memo] Substitute unnecessary variables for "_" (underscore)

* Articles sent by data scientists from the manufacturing industry * This time, I will leave it in the article as my memo. ## Introduction I'm reading Python code and seeing the code that returns

Getting Started with Golang 2

Hello world on localhost! Set the display for each path. <a href="https://bizzare.me/post/golang2"> Click here for the text </a>

I had Spotify analyze the difference between the Beatles song and my own song and plotted it

# Previous theory The Beatles are still popular after 50 years (Assuming high quality) I think it's a career length that is easy to understand. About 200 songs in about 10 years, a huge number

We will implement an optimization algorithm (differential evolution)

# Introduction A series of optimization algorithm implementations. First, look at [Overview](https://qiita.com/pocokhc/items/07b698cc426cadb3a64e). The code is on [github](https://github.com/

Machine learning and statistical prediction, a paradigm of modern statistics that you should know before that

> ** Warnings and Disclaimers **: The content provided here is a notebook summarizing what you have studied while reading references on statistics, and many of them leave the content of the copyright

[Django3] Display a web page in Django3 + WSL + Python virtual environment

At Udemy [[Thorough commentary! ] Master the basics of Django and create 3 apps! ](https://www.udemy.com/course/django-3app/learn/lecture/23383980#overview) was attended. Focusing on the contents, we

How to add arbitrary headers to response with FastAPI

In FastAPI, it was necessary to add a response header as a countermeasure against vulnerabilities. I wanted to add the same header to every response, but the ~~ FastAPI docs didn't mention it ~~ (

I tried to make an image classification BOT by combining TensorFlow Lite and LINE Messaging API

As you study how to use machine learning libraries such as TensorFlow, you will think "I want to make something that works!". This time, I would like to create an image classification BOT by combin

Algorithm learned with Python 18th: Sorting (stack and queue)

# #Algorithms learned in Python <Stacks and Queues> ## Introduction Implement the basic algorithm in Python to deepen your understanding of the algorithm. The 18th bullet deals with stacks and queu

How to create your own Transform

Reference page: [Transform summary that can be used with Pytorch – torchvision](https://pystyle.info/pytorch-list-of-transforms/#outline__7) In <code> transforms </code> used for preprocessing of i

[Python] Use string data with scikit-learn SVM

# Introduction In the above-mentioned "[[R]" Need numeric dependent variable for regression. "Cause and response](https://qiita.com/yaju/items/6ac66b6a246e4f16c367)", the classification problem using

[pyqtgraph] Created a class to display the crosshairs that follow the cursor and their coordinates

# What you want to do Creating a class that does this --Creating a crosshair that follows the cursor --Display x, y coordinates on the label --Label color will be the same as the plot line --Non

[Shell] Various patterns of string decomposition

## Introduction --Although it has few uses, it may be processed by decomposing a character string character by character. ――At that time, it is necessary to deal with the options and Japanese proble

A record of the time it took to deploy mysql on Cloud9 + Rails

-Try to create a Rails application with Cloud9 + Rails + MySQL. ・ It takes time to install MySQL. -Since rails new was already executed, when mysql is described in Gemfile and bundle install is exe

"No handler was ready to authenticate" error in django-ses

# Event ```sh No handler was ready to authenticate. 1 handlers were checked. ['HmacAuthV3Handler'] Check your credentials ``` --Work on EC2 --The above error in ECS (Fargate) --IAM Role is set

[Blender x Python] Particle Animation (Part 1)

# table of contents 0. Draw a straight line 1. Draw a spiral (Part 1) 2. Draw a spiral (Part 2) 3. Draw a tornado 4. Change instance 5. Random walk # 0. Draw a straight line ![ezgif.com-gif-

[Pyhton] I want to solve the problem that tkinter does not work on MacOS11

I recently made a major update to Big Sur on my Mac and fixed it because Python's GUI modules stopped working. Python of brew could not be 3.9.1, so install it from the official. [Python Release

Easy image classification with TensorFlow

# Introduction When I touched TensorFlow (Keras) for the first time in a long time, I often forgot it, so I will leave it as a memo. ## Learning flow In TensorFlow (TF) ① Data set preparation

Mount and format Disk on Ubuntu on GCP.

## Check the current Filesystem df only displays mounted file systems. ``` $ df -h Filesystem Size Used Avail Use% Mounted on /dev/root 16G 4.0G 12G 26% / devtmpfs 2.0G

Install and configure KVM

I bought a new PC and installed KVM, so I summarized the procedure. # [1. Linux installation](#1-Linux のインストール) First, install Linux. This time I installed Ubuntu 20.04. See also: [Ubuntu 20.04

[For beginners] How to register a library created in Python in PyPI

# Introduction I was interested in automatic blog posting, but I made it myself because Python didn't have an easy-to-use library. I want to do `pip install hogehoge`, so I summarized the method. #

Portable SSD expansion swap setting for Raspberry Pi OS 64bit β version

![000.jpg](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/960318/455f328c-125a-6ccf-c197-4570a1fc5c9d.jpeg) The photo above is the added SSD. It is unstable because it has a little heat

Notes on using OpenCL on Linux on the RX6800

I want to mine GPGPU calculation and machine learning with OpenCL with RDNA2. OS: Ubuntu 20.04 GPU: RX6800 (RDNA2) Driver: amdgpu(-pro) 20.45 https://math.dartmouth.edu/~sarunas/amdgpu.html Refer

Enable zfs on the Springdale Linux 8.3 installation ISO image

CentOS Linux Owakon Memorial (wrong) or RIKEN Mirror Memorial, so I tried Springadale Linux. Well, it's a rehash of [CentOS version](https://qiita.com/toriiken1/items/2d92940c910d8a3ecb87), so the s

Use Majoca Iris elongated LCD with Raspberry Pi

# About this article Apply the mod driver to fbtft that uses the mechanism of Raspberry Pi's Linux framebuffer, and send the image to the elongated LCD. <blockquote class = "twitter-tweet"> <p lang

I compared the performance of Vaex, Dask, and Pandas in CSV, Parquet, and HDF5 formats (for single files).

This article is for performance comparison of Vaex, Dask, Pandas, etc. in data formats such as CSV, Parquet, HDF5. It's a loose and rough response with a light feeling that I hope it will be useful

Getting Started with Golang 3

Display html in Golang. <a href="https://bizzare.me/post/golang3"> Click here for the text </a>

Installation and easy usage of pytest

# Since I used pytest to implement the test code in python, I will summarize the introduction method and the minimum usage. environment Mac OSX Python 3.7.7, pytest-6.1.2, py-1.9.0, pluggy-0.13.1

How to use PyMC3 (Bayesian inference)

I will forget it when I try to use it for the first time in a long time, so make a note of it. ## What is PyMC3? --Probabilistic programming library for Python --Can be used for Bayesian inferenc