Join Azure Using Go ~ For those who want to start and know Azure with Go ~

"[★ Celebration ★ Japan Azure User Group 10th Anniversary](https://jazug.connpass.com/event/186235/)" was held online on September 30, 2020 (Wednesday). I tried with LT at the 7th anniversary three y

Get Youtube data with python

# Introduction I often see the method of using google-api-python-client as a method to get Youtube data such as the number of views by specifying videoId in pyhton. Here, instead of that method, I

How to split machine learning training data into objective variables and others in Pandas

## Read data (assuming CSV file) ``` import numpy as np import pandas as pd train = pd.read_csv('train.csv') ``` ## Divide the training data into the objective variable (target) and others ``` #Dele

[Beginner] [Python / Django] A fledgling web engineer tried a Django tutorial-Part 0-

# Introduction Nice to meet you, everyone. From this time, I will publish the process of creating a voting (poll) application using Django as a memorandum. Since I am a beginner of Qiita, please u

Allow ssh only for specific IP addresses with firewalld

# Introduction There are articles that go bad, but trying to do this pinpointed was quite a hassle, so I will focus on this topic. # environment - CentOS8 # procedure Enable firewall service ```

I passed the python engineer certification exam, so I released the study method

# Overview The python3 engineer certification exam is an exam conducted by the Python Engineer Development Promotion Association. As for my information, I usually develop in java, and I have almost

[Django] Let's try to clarify the part of Django that was somehow through in the test

# Purpose (1) Put out the mysterious variables in settings.py on the console and it will be fun. ② Hide password # OS etc. Windows 10 Home # Environment Click "Create new project" in the PyCharm t

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

# This time's results ![スクリーンショット 2020-10-02 20.20.58.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/331393/885afe5f-5ba9-295a-1a11-d787b8947c19.png) # Impressions of this

Scraping PDF of the status of test positives in each prefecture of the Ministry of Health, Labor and Welfare

```shell apt install python3-tk ghostscript pip install camelot-py[cv] pip install requests pip install beautifulsoup4 ``` ```python import re from urllib.parse import urljoin import camelot import

Flask Primer Memo

[Aidemy](https://aidemy.net/) 2020/10/4 # Introduction Hello, it is Yope! I am a liberal arts student, but I was interested in the possibilities of AI, so I went to the AI-specialized school "Aidemy"

Maybe it works! Let's try scraping!

# Introduction I wanted to do scraping, but I didn't touch it, but I finally got up and touched it, and summarized what I investigated at that time. I hope it will be helpful for those who want to s

How to make a surveillance camera (Security Camera) with Opencv and Python

# 0. First If you want to see how the things you make this time work, please see [here](https://youtu.be/jzBMxd5ZTeI) (youtube video). # 1. Write the process #### **`security_cam.py`** ```py import

When I tried to create a virtual environment with Python, it didn't work

# environment - windows - VS Code # The error I got this time ``` virtualenv my_python_env ``` I was able to create a virtual environment directory by typing, ``` .\my_python_env\Scripts\activate.b

Try to profile with ONNX Runtime

This is a continuation of [Speeding up Deep Learning with CPU of Raspberry Pi 4](https://qiita.com/project_raizin/items/6d51173df31a08b7800d "the above thing"). In order to accelerate deep learning

Scraping with Selenium

I wanted to automate it, so I did a lot of research, but it seems that some people made it in advance, but honestly, I'm still a beginner in programming, so I don't know what I'm writing. So, this

Make the default value of the argument immutable (article explanation)

I will explain this article so that you can understand it. Please forgive me though I will write the same content. https://qiita.com/yuku_t/items/fd517a4c3d13f6f3de40 You can set default values fo

Gender recognition memo

[Aidemy](https://aidemy.net/) 2020/10/4 # Introduction Hello, it is Yope! I am a liberal arts student, but I was interested in the possibilities of AI, so I went to the AI-specialized school "Aidemy"

[Python] Memo about errors

``` TypeError: 'XXXX' object is not iterable ``` Error that an object that cannot be used repeatedly is used in iterative processing ``` SyntaxError: unexpected character after line continuation ch

A site called "Introduction to Tohoho's WWW" that is useful for starting to learn the second and third programming languages

# Introduction to Tohoho's WWW http://www.tohoho-web.com/www.htm This site is highly recommended when you want to learn the second and third languages quickly before you start studying in earnest.

Use collections.Counter

# Use `collections.Counter` There is no MultiSet (a set that allows the same elements) by default in Python, but you can use `collections.Counter` instead. It is not just a MultiSet but has a conven

A story that finally passed the Google Adsense examination by creating a website where you can freely put your own services and works on Flask

## Introduction Hello, this is paper off IT engineer of the second year coder. I usually work at an IT company doing WEB development and application development using PHP and Python. After that, I

Python immutable type int memo

The int type is an immutable type. Therefore, the value once stored in memory cannot be changed. If the values are the same, for example if there are multiple variables to which 1 is assigned, th

[Venv] Create a python virtual environment on Ubuntu

# Introduction I will explain how to create a ** python virtual environment ** using venv on Ubuntu. There are several commands to create a virtual environment, but this time I will talk about ** ve

[Must-see for beginners] Basics of Linux

# Contents of this article and target audience In this article, I will write the basic knowledge for those who are starting programming on Linux to see other articles on the net and proceed with self

I wrote an automatic installation script for Arch Linux

## Caution --Install using the entire hard disk. Therefore, it does not support dual boot. --The installation method of Arch Linux changes from time to time. Therefore, it may not be installed succe

HTML / CSS memo writing

[Aidemy](https://aidemy.net/) 2020/10/4 # Introduction Hello, it is Yope! I am a liberal arts student, but I was interested in the possibilities of AI, so I went to the AI-specialized school "Aidemy"

Environment construction of python3.8 on mac

Basically proceed according to this (hereinafter basic article) https://prog-8.com/docs/python-env 2. Install Homebrew The installation command is described in Make sure to install with the com

Solving the Lorenz 96 model with Julia and Python

# Introduction I'm studying a lot because I want to use data assimilation for research. Lorenz96 model often used in data assimilation benchmarks https://journals.ametsoc.org/jas/article/55/3/399/24

Solve with Ruby, Python and Java AtCoder ARC104 B Cumulative sum

# Introduction * [AtCoder Problems](https://kenkoooo.com/atcoder/#/) * Use Recommendations to solve past problems. Thanks to AtCoder and AtCoder Problems. # This theme *[AtCoder Regular Contest B -

I wrote the queue in Python

Good evening Continue to receive various advice from everyone Two weeks are about to pass. Thank you so much. m (_ _) m First, prepare a stack, modify it and bring it to the queue I will take