Send a message from Python to Slack
At the end of the time-consuming Python program, notify slack that the job is over. Use [slack-python-webhook](https://github.com/satoshi03/slack-python-webhook). #### **`my_tool.py`** ```python
Games using IMU with SenseHat
For this sense hat game, I tried IMU (Inertial Measurement Unit). If you tilt the body, the red pixels will move. This clears when you take all the green pixels. The blue pixel in the rightmost col
SNS Flask (Ajax) made with Flask
TL;DL Udemy attendance record for the following courses Web application development course with Python + Flask! !! ~ Master Flask from 0 to create SNS ~ https://www.udemy.com/course/flaskpythonweb
Initial setting of environment using Docker-compose + Django + MySQL + Nginx + uwsgi
## Overview * I needed to create an environment that uses the title, so make a note of it. * In addition, Japanese localization etc. ## environment * Docker + Docker-compose must be available. * P
Try to make BOT by linking spreadsheet and Slack with python 1/2 (python + gspread + slackbot)
You don't have to bother to search, but there are things that interest you. I've started learning python lately, and anyway, let's make a BOT by linking with Slack that I usually use so that if I e
LightGBM (Automatic mounting and parameter adjustment (Optuna))
# Introduction This article summarizes LightGBM implementation and automatic parameter adjustment (Optuna). # What is LightGBM LightGBM is a machine learning of gradient boosting that combines deci
Construction of Ceph (Octopus) (Preparation hardware)
## __ Introduction __ As the title suggests, this article aims to build __ceph (octopus) __, which is the latest at the moment (2021.01). Also, since it also serves as a memorandum of the procedure
I tried moving DeepLabCut for biological tracking
# Introduction DeepLabCut is a markerless biological tracking tool that uses deep learning and image processing. It is mainly used for observing the behavior of animals. [DeepLab Cut Paper](https
AWS Lightsail Primer 4 Basic Settings (CentOS 7)
## Contents of this article --Set the basic OS settings for the Lightsail instance (CentOS 7). ## Prerequisites --Created a Lightsail instance (CentOS 7). * Commands may differ for other OS and v
VBA user tried using Python / R: Matrix
# Introduction I am a VBA user who started studying machine learning. As a memorandum, I would like to summarize the Python / R grammar while comparing it with VBA. **table of contents** -[Mat
Can I pass the first grade of math test by programming?
# Introduction This article deals with questions 1-5. (Out of 7 questions) # The difficulty level of Suken Level 1 is University level / general level. According to the Japan Mathematical Examinati
I tried to make a thumbnail image of the best avoidance flag-chan! With RGB values [Histogram] [Visualization]
# Introduction On the Hatena blog, [I tried to manually classify the thumbnail images of the video of [Full power avoidance flag-chan!] Based on the subjectivity](https://flag-analysis.hatenablog.co
Upload photos from LINE Bot to Dropbox
As the title suggests, I created a system for uploading photos from LINE Bot to Dropbox. Currently, there are a lot of issues, but I will post it because I have implemented the main functions. When
Making from scratch Deep Learning ❷ An amateur stumbled Note: Chapter 7
# Introduction It is a memo of what I stumbled upon in Chapter 7 of ["Deep Learning from scratch ❷ --- Natural language processing"](https://www.oreilly.co.jp/books/9784873118369/), which I suddenly
Solving higher-order equations with integer type (no multiple solution) Manager
# Manager edition Until the last time [Solving high equations with integer type](https://qiita.com/cluster_4b/items/906efb35d83944266c52), the parallel processing part used the pool of multiprocessin
Run azure ML on jupyter notebook
## Premise ・ Run azure machine learning experiment with jupyter notebook ・ Creation of azure workspace is omitted. -Operating environment is macOS ## procedure ### 1. Launch jupyter notebook 1-1.
[Effective Python study memo] Chapter 1: Python-style thinking (Pythonic Thinking)
## Introduction This is a memo of the items that I personally learned by reading Effective Python. The "Foreword" of the book says "You can freely browse between items", but I will read them in orde
I tried batch normalization with PyTorch (+ note)
# Introduction I didn't understand batch normalization well, so I tried it with PyTorch. As a result, I understood that the input data should be aligned with an average of 0 and a variance of 1 for
When doing sam build with AWS Lambda Layers, the file hierarchy changes and an import error occurs.
## Overview sam deploy I couldn't import from Lambda Function just by doing sam build before printing, so I investigated the cause. ## Target code **Lambda Layer Template** ```yaml Resources: S
To write a test in Go, first design the interface
## If you end up writing test code in Go When you are instructed by your superior to "write a test code" at work Is it designed to write tests? In this article, for the use case of ** getting a f
A note on handling variables in Python recursive functions
# Python recursive function value When I was building a recursive function, I verified it because I couldn't understand how the value outside the function was rewritten inside the function in python
[Reinforcement learning] Easy high-speed implementation of Ape-X!
I posted an article (https://zenn.dev/ymd_h/articles/03edcaa47a3b1c) on Zenn for the technical story of internal implementation. If you are interested, please read that. # 1.First of all I wrot
For Debian users who are having trouble with a bug in the Linux kernel 5.10
The 5.9.? Kernel package has disappeared from Debian testing (bullseye), but it doesn't work well on my Panasonic laptop and Raspberry Pi 4B 8GB model. I have put the .deb package for amd64 and arm64
How to create a SAS token for Azure IoT Hub
Reference page [az iot hub generate-sas-token](https://docs.microsoft.com/en-us/cli/azure/ext/azure-cli-iot-ext/iot/hub?view=azure-cli-latest#ext_azure_cli_iot_ext_az_iot_hub_generate_sas_token) ```
[Blender] Modeling tips Summary User Interface Part2
# table of contents 11. Display only the range you want to see 12.3D viewport split into 4 13. Show/hide the splash screen 14. Show/Hide Tooltips 15. Search function 16. Substitute the calculat
[Introduction to pytorch-lightning] How to use torchvision.transforms and how to freely create your own dataset ♬
Since I want to use various data, I tried various ways to create my own dataset, so I will summarize it. It is an indispensable technology for performing denoising, coloring, domain conversion, etc.
A magic word (?) That may save people who are addicted to building using the Intel compiler of Python + Numpy.
# What are you talking about? It's a reminder because I spent a little time building Python + Numpy from source code using the Intel compiler. It's a pretty silly story for those who know it. On the
Incorporate processing made with python into C # [python net preparation + confirmation edition January 2021 latest]
# Overview You may want to move the process created by python (mainly deep learning system such as tensorflow, pytorch) from GUI and display the result. It may be possible to use PyQt, but since th
I get a firewall warning when I start gqlgen's server.go on my Mac
When I start the development server (GraphQL Playground) of gqlgen, which is Go's GraphQL server library, on a Mac, a firewall warning appears, which is annoying. ![20210108160313.png](https://qiita
AtCoder Green tried to solve with Go
## Is Go suitable for AtCoder? I recently heard that Go's standard package doesn't have a max function, type binding is pretty tight, and there are a lot of strict aspects, so I tried to see how stri