Django shift creation function Added basic work shift registration function for days of the week

① Shift table: Only the administrator can edit the time. ② Shift table I want you to copy the shift creation by day of the week ③ Desired shift: By the 5th of every month, we ask for a shift reques

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

# This time's results ![スクリーンショット 2020-10-09 19.29.01.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/331393/0671ca85-493b-9e5b-c7c3-311a3136c13a.png) # Impressions of this ti

Solving with Ruby and Python AtCoder ABC178 D Dynamic programming

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

Challenge LOTO 6 with Python without discipline

## Preface Well, I know that it has already been analyzed and I haven't come to a particularly remarkable conclusion. Still, if I'm studying Python, I'll give it a try. ## Development environment

[Python] Get the text of the law from the e-GOV Law API

We have summarized how to obtain and format Japanese legal data from [e-Gov Law API](https://www.e-gov.go.jp/elaws/pdf/houreiapi_shiyosyo.pdf). I refer to the following Qiita article. -[Access the

[Python] OpenCV environment construction with Docker (cv2.imshow () also works)

I wrote Qiita like this ([Ubuntu, Python, OpenCV environment created on Docker](https://qiita.com/RyuGotoo/items/8b3f48057ce61641b877)) before, but `cv2.imshow ()` Did not work and I was doing a lot

Deep Learning with Shogi AI on Mac and Google Colab Chapter 8

[TOP PAGE](https://qiita.com/kazunoriri/items/d7875d7f1121edcc807a) # strategy ## Greedy Strategy Greedy algorithm. A method of simply selecting the hand with the highest output value of the neural

Find the SHA256 value with R (with bonus)

It's a memo because I have too few opportunities to use it and I can't remember when I thought about using it. ## Execution environment - Ubuntu 16.04 - R 3.6.3 ## SHA256 in R #### **`SHA256 in

AtCoder HHKB Programming Contest 2020 Participation Report

# AtCoder HHKB Programming Contest 2020 Participation Report [HHKB2020A - Keyboard](https://atcoder.jp/contests/hhkb2020/tasks/hhkb2020_a) Break through in 2 minutes. Just write. ```python S = in

About MkDocs themes and their customs

## Introduction I was doing Django personally, but since the server fee is not stupid, I started to investigate static site generators. Gatsby seems to be popular in the streets, but I want to make i

Play youtube in python

# Introduction I wanted to make a beep so that I could see that the calculation was finished, but it was difficult on a Mac. It was troublesome to get the audio file, so I decided to play youtube.

Codeforces Round # 521 (Div. 3) Bacha Review (10/9)

# This time's results ![スクリーンショット 2020-10-10 13.09.33.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/331393/e6168d69-7cb8-def5-a431-da290369b733.png) # Impressions of this ti

Extract the product name and price from the product list in the Yodobashi.com purchase statement email.

As the title suggests, I wrote a program in Python to get the combination of product name and price from the purchase details email of Yodobashi.com. I hope you can think of how to use the clipboard

Let's print PDF with python using foxit reader and specify the printer silently!

## Development environment os:windows10 Language: python3.7 Software to use: foxit reader ## About installing foxit reader It is easy to download the free version from the window company. https://

Set up Docker on Oracle Linux (7.x) with Vagrant

# Purpose I want to start Oracle Linux (7.x) with Vagrant, and then install and start Docker. (Host is Windows 10 Home Edition. Vagrant and VirtualBox are already set up) # Find out informatio

ARC067 C --Factors of Factorial

# problem Find the remainder by dividing the number of positive divisors of $ N! $ By $ 10 ^ 9 + 7 $ when the integer $ N $ is given. # Way of thinking Let the prime factors of $ N! $ Be {$ p_0, p_

The most polite way to use the Google Maps SDK for iOS

** "Display Map !!" ** … And, as a starting line for creating somehow iOS apps in earnest, I first learned how to use the API. There are many tutorials for the Maps SDK for iOS, but I couldn't fi

[Linux] Command / Knowledge

Excerpts as memorandums of things that you think you can use after learning linux commands and things that you want to remember. We plan to update it each time. # index -[Command](#command) -[les

Linear search in Python

The code for the linear search is below. ```python def linear_search(src, target_value): result = False for i in range(len(src)): if src[i] == target_value: result = Tru

Note that the method of publishing modules to PyPI has changed in various ways.

The method of publishing modules to PyPI has changed a lot before I saw it for a while, so I will write it down as a memorandum. # What did you publish? it's here. * [tksugar · PyPI](https://pypi

[Python] How to set the (client) window size inside the browser with Selenium

# Thing you want to do I want to set the client window size with selenium (browser automation framework). (It's easy to set the "real" window size, including tabs, URLs, etc. However, it's a bit t

[Python] A rough understanding of the logging module

## Character ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/406130/9b097021-72ca-bfd0-9b0e-ab2911a15090.png) __Logger class __: This is the main body of logging. Manage

Create a web server in Go language (net / http) (1)

Obviously, you can set up a web server in golang (Go language), which allows web programming. I also have experience in creating simple web servers with golang and developing services. At that tim

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

# Introduction Nice to meet you, everyone. I'm going to publish a memorandum of the process of creating a voting (poll) application using Django. Since I am a beginner of Qiita, please understand

I swore that I would definitely change jobs, so I tried "hello word" with golang

I'm a man in his 20s working at an SES or contract development company who wants to change jobs to an in-house developed web company. I was dissatisfied with the environment and salary where my curr

[Memo] How to use BeautifulSoup4 (3) Display the article headline with class_

Last time I used find_all to display the headings, but this time I use class_ to display the headings. Also, Yahoo! I decided to scrape Japan. In [1] Import Beautiful Soup and Requests #### **`In

[PyTorch Tutorial ⑥] What is torch.nn really?

# Introduction This is the 6th installment of PyTorch [Official Tutorial](https://pytorch.org/tutorials/) following [Last time](https://qiita.com/sudominoru/items/c027f1fe9347f398c858). This time, w

[Golang] A program that determines the turn with random numbers

## Introduction There was a request from the list of lists to make ** x people **, so I wrote it in go language. ```go package main import ( "fmt" "math/rand" "time" ) func main() { list :=

Convert elements of numpy array from float to int

I want to cut out some numerical values with int from the float data set. ```php target = np.array(features[:,7], dtype=int) ```

Notes for HHKB Programming Contest 2020

# Preface I tried Atcoder, so it's a memo for myself. I plan to add and correct it later. # problem https://atcoder.jp/contests/hhkb2020 A #### **`Q_A.go`** ```go package main import (