New Linux commands! !! Part 2
# Study record --Let's learn Linux commands 2020/12/20 ## What you studied --Learn useful commands for Linux ## What are you studying based on -[Introduction to N Preparatory School Programming](
I tried using "Streamlit" which can do the Web only with Python
# Introduction This article is JSL (Japan System Giken) Advent Calendar 2020 --Qiita 20th day article. It is an annual anniversary commemoration. : tada: Even at this age, I'm still wondering.
NAT gateway idle timeout in ECS Fargate/Python (350 seconds) Workaround
This is the article on the 20th day of [iRidge Advent Calendar 2020](https://qiita.com/advent-calendar/2020/iridge). This is sent by @orfx, a server-side engineer. TL;DR AWS NAT gateways have a
Python basic grammar note (4)
# at first This is a memo while studying python I will add various things in the future # File operations and system ## File creation ~~~python # Open and close the file f = open('text.text', 'w')
I tried LeetCode every day 119. Pascal's Triangle II (Python, Go)
#### What is Leetcode [leetcode.com](https://leetcode.com/) This is the practice of coding interviews for software developers. A total of more than 1,500 coding questions have been posted, and it s
[Python] DI (Dependency Injection) container Which one should I use?
Python mock can be easily monkey patched. If you use it, you can unit test without a DI container. However, the body accustomed to DI containers wants IoC, so I decided to look for DI containers. #
Anomaly detection with Amazon Lookout for Vision Part 2 (Python3.6)
# Introduction This is the article on the 20th day of [Amazon AI by Narecom Advent Calendar 2020](https://qiita.com/advent-calendar/2020/knowcom-amazonai). In the previous [Amazon Lookout for Visio
3. Natural language processing with Python 3-4. A year of corona looking back on TF-IDF [Data creation]
* Qiita Advent Calendar 2020 This is a summary of the data creation procedure used in "A Year of Corona Looking Back at TF-IDF" on the 22nd day of "Natural Language Processing". * There are three st
I analyzed cowrie (honeypot) using python pandas
## Introduction This time, it is an article that I tried to analyze the honeypot log using pandas of python. It is a personal play. ## What is cowrie? A cowrie is a security vulnerability in SSH or
Python Mathematics Series ① Transpose
## Background I'm thinking of reading [Deep Learning Book](https://www.amazon.co.jp/%E6%B7%B1%E5%B1%A4%E5%AD%A6%E7%BF%92-Ian-Goodfellow/dp/4048930621), but I get sleepy when I just read the letters,
[Python] BFS (breadth-first search) ABC007C
[ABC1007C](https://atcoder.jp/contests/abc007/tasks/abc007_3) There is a very easy-to-understand explanation in the problem statement. reference [BFS (Breadth-first Search) Super Introduction! ~ Us
Non-recursive implementation of extended Euclidean algorithm (Python)
# 0. Introduction ## Purpose of this article I couldn't understand the non-recursive implementation of the extended Euclidean algorithm used in [ABC186-E](https://atcoder.jp/contests/abc186/tasks/abc
Two things I was happy about with Python 3.9
This article is the 23rd day of [MDC Advent Calendar 2020](https://qiita.com/advent-calendar/2020/mdc). December 23, 2020 is a weekday. e? Did you stop talking about prime numbers? Yes, I wonder if
[GCP] [Python] Deploy API serverless with Google Cloud Functions!
Hello. This is Satchie. Since it is neat, I misunderstood the day of the week to post last week. Excuse me. The day before, @ Rimo1129 (junior) wrote [Make something like a job hunting portfolio on
Explain Python's functools.partial (partial application)
## Motivation There is no explanation in the teaching materials used for [JDLA E qualification](https://www.jdla.org/certificate/engineer/) measures at our company, and `functools.partial` appears,
[Python] The movement of the decorator that can be understood this time ② The decorator that receives the argument
# Introduction This article is [[python] Movement of decorator that can be understood this time ① Decorator that does not receive arguments ](Https://qiita.com/namtok/items/4c53edf365d646209a27) is
2-2. Input for becoming a WEB engineer (Linux basics)
# Introduction This is a continuation of this article. [2-1. Input for becoming a WEB engineer (Linux basics)](https://qiita.com/Moriyoshi_05/items/fe46c8628166d0d596aa) An article on inputs and th
Competitive programming, coding test template: Python3
# Purpose ――I will post a template that can be used for coding tests and competitive programming. --Requirements - Python3 --When debugging before submission, you can test (you can test multipl
Have Alexa run Python to give you a sense of the future
# Introduction It's a strange title, but it's said that running a program written in Python in a conversation with Alexa gives a sense of the future. Isn't the point of this article interesting to
Build python virtual environment with virtualenv
### 1. Installation and confirmation ``` sudo pip3 install virtualenv virtualenv --version ``` ### 2. Building a virtual environment ``` virtualenv <Environment name> ``` ### 3. Start and end of
Tips for developing apps with Azure Cosmos DB in Python
# About this article This is [Request! Tips for developing on Azure using Python![PR] Microsoft Japan Advent Calendar 2020](https://qiita.com/advent-calendar/2020/azure-python) This is the article o
The story of making Python an exe
# The story of making Python an exe ## Introduction I made it before [Create a synthesizer in Python and play it. ](https://qiita.com/menow2525/items/7f743a68792c05189d78) is a story that made the sy
[AtCoder explanation] Control the A, B, C problems of ABC186 with Python!
** A, B, C problems ** of ** AtCoder Beginner Contest 186 ** will be explained as carefully as possible with ** Python3 **. I am aiming to explain a solution that satisfies the following three poin
Competitive programming diary python 20201213
https://atcoder.jp/contests/abc185/ - A - ABC Preparation Just output the smallest of the four numbers given ```py print(min(list(map(int, input().split())))) ``` - B - Smartphone Addiction Th
Let's create a program that automatically registers ID/PW from CSV to Bitwarden with Python + Selenium
<h2> Introduction </h2> Password management is difficult, isn't it? I've been using Trend Micro's Password Manager until now. Sometimes Chrome extensions are useless, and I was wondering if some
Solution if the module is installed in Python but you get an error in Jupyter notebook
Jupyter notebook Official site: https://jupyter.org/ To install without Anaconda, run the following command. ``` $ pip install jupyter ``` # Problems that occurred When I tried to use `jupyter n
I connected the thermo sensor to the Raspberry Pi and measured the temperature (Python)
## Use In a certain production, I decided to incorporate non-contact temperature measurement into the system, so I implemented it using Raspberry Pi + thermo sensor. It is not a handheld image, but
How to solve "attempted relative import beyond top-level package" when importing in Python
### Error summary With the following directory structure ``` root/ ├ core/ │ └ base.py │ ├ sub/ │ └ subA.py ``` Try to call base.py from subA.py. #### **`sub.py`** ```python from ..core.
python package dependencies and virtual environment management tool Poetry
# What is Poetry? --Manage python package dependencies --You can build a virtual environment dedicated to the project ( --You can specify the dependent python version --You can specify the depende
I studied about Linux, so I summarized it.
# Introduction I learned about Linux, so I will summarize it. I think most of them are images of server OS. There are many types such as Red Hat and CentOS, and it is difficult to grasp the whole p