[Linux] Basic command summary
### Move the cursor, etc. ``` Ctrl + f //One character forward Ctrl + b //One character back Ctrl + a //Move to the beginning of the line Ctrl + e //Move to the end of line esc + f
Go did not have a logical operator for short-circuit evaluation
I didn't pay much attention to it, but I stumbled, so I made a note. Since the package and import statements are omitted, please check the link for the complete code. The Go version of the code be
How to create a Dockerfile (basic)
# Introduction Docker is a technology that makes it easy to build an environment that has been introduced by many IT development companies. A Dockerfile is like a blueprint for a Docker Image. You
Call bash with golang
## Wait until execution is completed without receiving command result - Run ```golang package main import ( "fmt" "os/exec" ) func main() { err := exec.Command("pwd").Run() if err
GraphQL (gqlgen) error handling
# theme Consider error handling on the GraphQL Server side using [gqlgen](https://github.com/99designs/gqlgen), a GraphQL library made by Golang that claims `Type-safe GraphQL for Go`. # Assumed rea
Implementation of clustering k-shape method for time series data [Unsupervised learning with python Chapter 13]
## What to do in this article **-Implemented classification of time series data by k-shape --Use electrocardiogram data for data ** ## Introduction The k-shape method is often used as a classifi
Notes on how to use StatsModels that can use linear regression and GLM in python
StatsModels It is a package that can use various statistical models such as linear regression, logistic regression, generalized linear model, ARIMA model, and calculation of autocorrelation functio
Python is instance
isinstance(object, classinfo) Returns whether the type of object matches classinfo ```python >>> print(isinstance(1, int)) True >>> print(isinstance(1, str)) False ```
I can't search with # google-map. ..
#### Process to set up address search on google map ↓ I used this as a reference. Thank you very much. https://qiita.com/nagaseToya/items/e49977efb686ed05eadb ## The name of the error that occurred
Hack GraphConvModel implemented in DeepChem with summary
# Introduction I wanted to start Deep Learning with compounds, so I decided to hack DeepChem's GraphConvModel and implement it in Keras. So, first of all, I decided to output what is implemented in K
Time series analysis 3 Preprocessing of time series data
[Aidemy](https://aidemy.net/) 2020/10/29 # 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
Django Tutorial (Blog App Creation) ④ --Unit Test
Last time, in [Django Tutorial (Blog App Creation) ③ --Article List Display](https://qiita.com/tmasuyama/items/9f33168feebba5281f3b), a class-based general-purpose view was used to display a list of
python external file reading
(Sample file name: urls.py) from django.contrib import admin from django.urls import path, include urlpatterns = [ path('polls/', include('polls.urls')), path('admin
Automatically select BGM according to the content of the conversation
# 1. 1. Introduction Re-challenge the second AI development contest "[Neural Network Console Challenge](https://nnc-challenge.com/)" planned by Sony and Ledge. By analyzing Audiostock's audio (BGM) d
What I learned by launching a photo site using administrative data and multiple APIs
Using the photos of the Ministry of Economy, Trade and Industry project "FIND / 47" (secondary use OK), we created a site that randomly displays domestic landscape photos using NTT's Cotoha and Googl
python launch
python manage.py runserver 8000
Emulate GCP Cloud functions locally
When building a backend on Google Cloud Platform, it takes about a minute to deploy, so it is smooth to build an environment that emulates locally during development. Here's how to emulate Cloud Func
Rubik's Cube Robot Software Updated 5. Machine Operation (Python)
# 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.  ① --Preparation, Top Page Creation
This time, we'll use Django to create a blog app that allows you to post articles. I will introduce it in series, but first I will create it locally and then configure it with Docker, deploy it on
Various ways to execute .py files on Windows
# How to run a normal .py file Write how to create a wrapper file in a Windows environment. Normally, this should be done when executing from a command prompt or the like. (Assuming that the PATH of
Use gitlabApi to add members to multiple groups in gitlab at once
## Task It's hard to manually add a gitlab group every time a new person comes in ## solution I created a program using the GitLab API. Based on the following, it is set in Lambda and made into AP
Binary transmission / reception with Pyserial
### Introduction I will describe Binary transmission and reception using pyserial as a reminder. ### How to send Binary with Pyserial Reference: [Binary data using pyserial (python serial port)](h
How to deal with "fatal: destination path''already exists and is not an empty directory." When trying to clone on Git hub
``` % git clone [email protected]:ochun0116/saku202010.git ``` When I tried to clone with `fatal: destination path 'saku202010' already exists and is not an empty directory. ` Has come out. "When clon
Make a video player with PySimpleGUI + OpenCV
# Introduction OpenCV (Open Source Computer Vision Library) is a collection of BSD-licensed open source video / image processing libraries. Various libraries such as various filtering, template match
Julia Quick Note [07] try, catch, finally
### try, catch, finally (writing example) #### **`note07`** ```ruby try (Main processing) catch (Exception handling) end ◆ Example using finally try (Exception handling) catch (Exception
Seaborn, matplotlib garbled characters resolved in Windows10, Anaconda virtual environment
# Garbled Japanese characters when drawing graphs When I tried to display Japanese in the graph, the characters became garbled and I was quite addicted to it, so as a memorandum. When using a virtu
Set up a local server with Go-File upload-
at first === Set up a Web Server with Go and upload files from the Android application environment === PC Windows10 Android Studio 4.0 Kotlin 1.3.72 Android device Emulator (API Level 29) Go 1.11
AtCoder Beginner Contest 180 Note
# Preface I tried Atcoder, so it's a memo for myself. I plan to add and correct it later. # problem https://atcoder.jp/contests/abc180 A #### **`Q_A.go`** ```go package main import ( "f