Encrypt ACME on Alibaba Cloud: Create ACME endpoints, directories, ACME accounts
In this multi-part article, you'll learn how to use the Let's Encrypt ACME version 2 API with ** Python ** for ** SSL certificates **. * This blog is a translation from the English version. The ori
[Python] A program that finds the minimum and maximum values without using methods
# [Python] How to find the minimum value without using a method How to find the minimum value without using the min or max methods. ## Way of thinking Repeat the comparison of the two elements.
[Introduction to Udemy Python3 + Application] 67. Command line arguments
** * 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
I want to create a pipfile and reflect it in docker
# I want to create a pipfile and reflect it in docker ``` pipenv install django-localflavor ``` Do this locally. ``` # Dockerfile COPY Pipfile . COPY Pipfile.lock . RUN pip install pipenv RUN pipenv
Manabu NN with app: Understand tensor flow playground with Keras
This article was submitted on October 13, 2020, but it was deleted and slightly rewritten, and it was submitted again on October 14, 2020 at 15:12. TensorFlow Playground ([Neural Network Playground
Type after reading an excel file with pandas read_excel
The data type after reading Excel with `pandas.read_excel` seems to be affected by the formatting in Excel, so I was a little worried, so I experimented. Accumulate little by little. ![スクリーンショット 20
[Introduction to Udemy Python3 + Application] 68. Import statement and AS
** * 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
[Python] Try to make a sort program by yourself. (Selection sort, insertion sort, bubble sort)
# [Python] Try to make a sort program by yourself. (Selection sort, insertion sort, bubble sort) 1. [Selection sort](#selection sort) 2. [Insert Sort](# Insertion Sort) 3. [Bubble Sort](#Bubble S
A script that transfers tweets containing specific Twitter keywords to Slack in real time
Learn how to monitor Twitter and forward tweets containing specific keywords to Slack in real time. The script is python3, and the Twitter API `statuses / filter.json` is used to get tweets in real t
[Python] Find the transposed matrix in a comprehension
# About transpose matrix ``` A = [ [a1_1, a1_2, ..., a1_W], [a2_1, a2_2, ..., a2_W], : : : : [aH_1, aH_2, ..., aH_W] ] ``` Matrix A like the one above ``` At = [
Granting sudo privileges to general Linux users
## 1 Add the "abcde" user to the "wheel" group. ``` usermod -G wheel abcde ``` ## 2 Edit visudo ``` visudo ``` ## 3 Let's understand the meaning of the command ``` ## Allow root to run any comman
"Deep Learning from scratch" Self-study memo (No. 11) CNN
While reading "Deep Learning from scratch" (written by Yasuki Saito, published by O'Reilly Japan), I will make a note of the sites I referred to. [Part 10](https://qiita.com/slow_learner/items/cfca16
Python.org's glossary has a subtle tone (full writing). .. .. It is simply expressed. It adds some unconscious information.
# Overview ** Python.org glossary ** https://docs.python.org/ja/3/glossary.html The tone (full of writing) is subtle. .. .. It is simply expressed. ** A little unconscious information is attache
"Gazpacho", a scraping module that can be used more easily than Beautiful Soup
I'd like to introduce a Python module called `gazpacho` that I recently learned. ## What is gazpacho gazpacho is a "simple, fast, modern library for web scraping". > gazpacho is a simple, fast, a
Rubik's Cube Robot Software Updated 1. Basic Functions
# What is this article? I am currently developing a robot that solves a 2x2x2 Rubik's cube. This is a collection of commentary articles on the robot program. 
# Environment ``` > pip install nltk ``` WordNet [WordNet Interface](https://www.nltk.org/howto/wordnet.html) --Dictionary focusing on semantic relationships --A set of synonyms for 15,287 words
Python script written in PyTorch is converted to exe with PyInstaller
# environment ・ Windows 10 pro 64bit ・ Python 3.7.9 ・ Anaconda 4.8.5 ・ PyTorch 1.6.0 + cpu ・ Pyinstaller 4.0 # Introduction When converting a Python script to an exe, there is a Pyinstaller tha
[Python] Difference between sorted and sorted (Colaboratory)
# [Python] Difference between sorted and sorted About the difference between sorted and sorted in python. Both are algorithms that sort in ascending order. Is the difference destructive? sort:
How to extract non-missing value nan data with pandas
[How to extract data that is not missing value nan with pandas](https://qiita.com/ponsuke0531/items/7df79686a660e6b025cb) I was just thinking about how to extract the list of member stores of Go To
Anomaly detection by autoencoder using keras [Implementation example for beginners]
## What I did in this article **-Challenge to implement autoencoder with keras --Implemented anomaly detection by unsupervised learning --Evaluate the effect from the recall rate and precision ra
kabu Station® API --Updated Python wrapper for PUSH API
# Overview [python-kabusapi](https://github.com/shirasublue/python-kabusapi) [Created Python wrapper for kabu station API](https://qiita.com/shirasublue/items/16ff9d1fea54b0ef648e) is REST Only API
Posted as an attachment to Slack on AWS Lambda (Python)
I was making AWS Lambda that fetches a file from Amazon S3 and posts it to Slack as an attachment, but I struggled because AWS Lambda's Python environment did not include the requests module. ## Pre
Determine the date and time format in Python and convert to Unixtime
The source code is as follows. Judgment is based on whether the date and time can be converted. ```python import datetime def validate_datetime(date_str): try: date_obj = datetime.da
Stop sign detection Development of visualization part part3 Notify by voice using socket communication when an object is detected
## Until last time Last time, I wrote up to the part to record using socket communication. This time, I would like to make the part to notify by voice after socket communication. * Honestly, there i
How to create a clone from Github
This section describes the procedure for creating a clone. First, let's create a key. `% ssh-keygen` ``` +---[RSA 3072]----+ | .o | | .o o | | + o o | | . o
AtCoder Regular Contest 105 Review
# This time's results  # Impressions of this t
[Introduction to Udemy Python 3 + Application] 66. Creating your own exceptions
** * 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
I tried tensorflow for the first time
As the title says, I tried tensorflow for the first time and struggled to build an environment, so I wrote it. Qiita This is my first time writing, so the explanation may not be good, but thank you.
Can FIFO queues be realized by "Specifying message order" in Cloud Pub / Sub?
# theme Do you use [Cloud Pub / Sub](https://cloud.google.com/pubsub?hl=ja)? It is used when you want to handle a large number of messages. Is this the order in which messages are sent, when you wa
[Beginner] [Python / Django] A fledgling web engineer tried a Django tutorial-Part 7-
This time we will customize the admin form. ## customize admin form Let's check the current admin form. #### **`polls/admin.py`** ```python from django.contrib import admin # Register your mod