Scraping the schedule of Hinatazaka46 and reflecting it in Google Calendar

# Conclusion If you are not interested in code and just want to add a calendar [here](https://calendar.google.com/calendar/u/0?cid=dnExNGh0OW5pZWUydTIwMGc0cmtkc3VoN3NAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLm

I made a LINE Bot that sends recommended images every day on time

# Introduction I, a fan of Mayu Matsuoka (commonly known as Mayura), I made a LINE Bot just for me, just for me. After about 5 years as a fan → Search for tweets related to Mayu Matsuoka on the

Scraping the Excel file of the list of stores handling regional coupons

Scraping the Excel file of [List of stores handling common coupons](https://biz.goto.jata-net.or.jp/couponlist.html#coupon) # Scraping ```python import datetime import re from urllib.parse import

I'm having trouble getting "ERROR: cannot execute ALTER TABLE in a read-only transaction" on heroku

# problem When I try to add a row with heroku's "Heroku Postgres --Add-ons", I get angry with "ERROR: cannot execute ALTER TABLE in a read-only transaction". ![sql_test2.png](https://qiita-image-s

Julia quick note [05] if statement

### if statement (example of writing) #### **`note05`** ```ruby if x > y println("x is greater than y.") elseif x == y println("x is equal to y.") else println("x is less than y.") end

How to count the number of elements in Django and output to a template

## Introduction I want to count all the elements in a Django template and display them like "how many" # Conclusion Django's built-in template tags and filters Use {{value | length}} #### **`Exa

[Continued] Due to the specifications of tcp, it is not known until the packet is actually sent whether the connection destination is closing the connection.

# Introduction Previously, there was an article [https://qiita.com/behiron/items/3719430e12cb770980f3] that [due to the tcp specifications, it is not possible to know whether the connection destinati

django tutorial memo

Official tutorial for Django, the python web framework "Creating your first Django app" Notes 1-5. It's really just a memo. Click here for the original website https://docs.djangoproject.com/ja

What to do when Unalignable boolean Series provided as indexer

# Event: I was angry when I tried to extract data with a non-NaN index with `notna` --Environment --macOS Catalina version 10.15.7 - Python 3.8.5 - pandas 1.1.3 ```py import pandas if __na

[Python] How to use import sys sys.argv

# environment linux python # python code The code is as follows as an example. #### **`practice.py`** ```python3 import sys a = sys.argv print(a) ``` # command prompt Execute the following co

Use dHash to locate on the course from a scene in a racing game

# 1.First of all One of the similar image search algorithms is [dHash](http://www.hackerfactor.com/blog/index.php?/archives/529-Kind-of-Like-That.html). For the contents of the algorithm, see ["Calc

golang profiling

Just make a note of the reference material ---- - https://github.com/adjust/go-wrk - https://golang.org/pkg/net/http/pprof/ --https://github.com/uber-archive/go-torch (already included from Go1.11)

Stop sign detection Development of visualization part part2 Notify another system by socket communication when an object is detected

## Record up to the last time I have created a program to detect a stop sign from the last time. Last time, as a program to visualize when the stop sign was detected, record when the chair in the hou

[Introduction to Udemy Python3 + Application] 65. Exception handling

** * This article is from Udemy "[Introduction to Python3 taught by active Silicon Valley engineers + application + American Silicon Valley style code style](https://www.udemy.com/course/python-begi

How to build a Django (python) environment on docker

# How to build a Django (python) environment on docker A summary of the procedure for creating a project and application using Django on docker and displaying it on the browser using the development

[Django] Carefully explain the escape route if you really want to use the table of another application

# Introduction It took me a while to find out how to use the table of another application, so I will write it as an article. # Solution There are two main ways to do it. ### 1. 1. Import and use th

PySpark life starting with Docker

# Introduction Under the anxiety of "Spark? It's cool with lightning attributes!", I tried a simple machine learning with Docker + Spark + Jupyter Notebook. Using the familiar Titanic data, we made

How to extract non-missing value nan data with pandas

--Environment --macOS Catalina version 10.15.7 - Python 3.8.5 - pandas 1.1.3 # The data of the extraction source looks like this ```py df = pandas.read_csv('CSV.csv') print(df) ``` ####

gqlgen command does not work with go gqlgen

# Event --I was using gqlgen to implement GraphQL with go - https://github.com/99designs/gqlgen --The command `go run github.com/99designs/gqlgen [args]` written in the README could or could not be

Automatically generate model relationships with Django

# Overview A personal summary of how to automatically generate model relationships using graph_models in Django extensions. The procedure is to run inside the docker container, not env. # Preparati

[Golang] Specify an array in the value of map

## Overview I wanted Go to put an array in value in the map, so my memo ## Implementation ```go package main import "fmt" type Hoge struct { Say string } func main() { a := map[string][]Hog

Import your own functions on AWS Glue

## Stumble by importing your own function Simple import is not possible when writing common processing or complicated functions in a separate file on AWS Glue. That said, I just added the file path

Build a virtual environment with pyenv and venv

Since I sometimes built a Python environment, I will summarize it as a memorandum. # usage environment Mac Catalina 10.15.6 # What to use for building a virtual environment What is often used to bu

Python learning memo for machine learning by Chainer Chapter 7 Regression analysis

What This is an article that summarizes what I noticed and researched when learning machine learning using Chainer. This time, we will study the regression analysis required for machine learning.

Mathematics for ML

Linear Models Let y hat be the predicted value, vector w (= w1, w2 ..., wp) be the coefficient (_coef), and w0 be the intercept (intercept_). ```math \hat{y}(w, x) = w_0 + w_1 x_1 + ... + w_p x_p ``

Conditional element extraction from data frame: R is% in%, Python is .isin ()

As an R user, make a note of the operations that I often forget when writing python. Even if I searched for "R% in% in python" each time, I couldn't find the information I wanted immediately. ## Ex

Command line collection for using virtual environment in Anaconda

# Introduction This is SEIYA (@ SeiyaSunapro7th). I have summarized the command lines that are useful when using a virtual environment (conda environment) using Anaconda. ### Environment where exec

Install Python development environment on Windows 10

How to install on Windows [here](https://qiita.com/suke_masa/items/3e593f7576e58a02a216) # important point As of October 13, 2020, the Python 3.9 version of Miniconda has not yet been released. So

[Outlook] I tried to automatically create a daily report email with Python

# Overview You can make a daily report template from this [site](https://www.crie.co.jp/chokotech/detail/282/), I can't put today's date in the subject line ** automatically **! I want you to auto

I want to make an SFC physical education reservation system monitoring system (β version)

## Introduction This article was written for Keio University SFC students. We will try to explain the technology in an easy-to-understand manner, but please note that the explanation of the physica