Get Cloud Logging available in Python in 10 minutes

# For such people ・ I'm looking for a cloud logging tool ・ I have multiple remote PCs running and want to aggregate logs. ・ I want to use it for free (as of the posting date, up to 50GiB every mon

Attempting to build opencv-python with Dockerfile on jetson nano but error (/tmp/nano_build_opencv/build_opencv.sh 3.4.10' returned a non-zero code: 1)

Attempting to build opencv-python with Dockerfile on jetson nano but error Dockerfile #### **`Dockerfile (excerpt of relevant part)`** ```dockerfile RUN git clone https://github.com/mdegans/nano_

Remote debug Django environment created with docker-compose with VS Code

## Prepare django environment with docker-compose ### Create the required files Create Dockerfile, docker-compose.yaml, requirements.txt by referring to [Quick Start: Compose and Django](https://do

Let's use Python to represent the frequency of binary data contained in a data frame in a single bar graph.

In checking the contents of the data There are times when you want to represent how much binary data is included in a single bar graph. Was it a bad way to find it? I haven't come up with a conci

Visualize the number of complaints from life insurance companies

# Introduction [[Python] Representing the number of complaints from life insurance companies in a bar graph](https://qiita.com/kuro_take/items/ad0a696fb680a07882b2) Created with reference to # Co

yaml

```py import yaml with open('config.yml', 'w') as yaml_file: yaml.dump({ 'web_server': { 'host': '127.0.0.1', 'port': 80 }, 'db_server': {

File upload to Azure Storage (Python)

## Procedure for uploading files to Azure Storage The method of uploading a file to Azure Storage is described below. # Prerequisites We are building in the following environment. OS: Windows10 L

Visualize details of life insurance company complaints

# Introduction [Visualization of the number of complaints from life insurance companies](https://qiita.com/barobaro/items/efb927581e2e6a53cc28) continued ```python import pathlib from urllib.parse

Call the C function with dart: ffi and call the Dart function callback

# Introduction How to use [dart: ffi](https://dart.dev/guides/libraries/c-interop) that calls C function from Dart is documented on the following page. - [C interop using dart:ffi | Dart](https://d

Run Linux on ARM architecture with QEMU

## Introduction * We have summarized how to use QEMU to run Linux on ARM architecture. ## Overview * QEMU is a Linux emulator. Here, the Linux kernel is cross-compiled for ARM and the root filesyst

Error when installing opencv-python on jetson nano (ModuleNotFoundError: No module named'skbuild')

Error when installing opencv-python on jetson nano ``` # python3 -m pip install opencv-python Collecting opencv-python Downloading https://files.pythonhosted.org/packages/30/46/821920986c7ce5bae5

Financial engineering verified the claim that "leveraged mutual funds are disadvantageous in a volatile market"

Recently, I saw a title-like claim on Twitter. Basically, such a claim is doubtful, but also in the article of Japan Exchange Group (https://www.jpx.co.jp/equities/products/etfs/etf-outline/04-04.ht

Use MLflow with Databricks ④ --Call model -

# Introduction In the following article, I used Databricks' managed MLflow to train my model and manage my lifecycle. [Using MLflow with Databricks ① --Experiment tracking on notebook-](https://qi

Red Hat Enterprise Linux 8.3 Various confirmations

# Introduction Since RHEL8.2 came out, various confirmations Reference: [8 \ .3 Release Notes Red Hat Enterprise Linux 8 \ | Red Hat Customer Portal](https://access.redhat.com/documentation/ja-jp/r

Error-free calculation with big.Float of golang

## Introduction When performing the four arithmetic operations of ETH with golang, a floating point calculation with 18 digits after the decimal point is required. If you are not aware of overflow,

What to do if you get an error like dyld: mach-o, but built for simulator or dyld: attempt to run simulator program outside simulator (DYLD_ROOT_PATH not set) in golang

CGO_ENABLED=0 I added it as an option and it worked It is unknown why this problem occurred and why it could be resolved.

Updated "Introduction to Python Web Application Homebrew for Slow 3rd Year Web Engineers"

# Updated the book Online book being written by Zenn ["Introduction to self-made Python web applications for a sluggish third year web engineer"](https://zenn.dev/bigen1925/books/introduction-to-web

How to package and distribute Python scripts

# Introduction I made a script to operate Trello from the command line in Python, but I wanted to execute the same command not only on the local Mac but also on EC2 dedicated to work, so [this articl

Run Radeon GPU on Windows on QEMU / KVM

## GPU passthrough with QEMU / KVM Recently, due to improvements in GPU performance and software, it has become possible to demonstrate sufficient performance even in Windows under a virtual environ

RAID type memorandum

# Introduction When I am studying LPIC, I sometimes get questions about RAID, but I want to keep it as a memorandum because my understanding is vague. # What is RAID? RAID is a technology that trea

I want you to introduce Flask's teaching materials at once so far ~ Let's implement Yubaba with Flask ~

# Introduction Yubaba is not the main. # One day I wanted to make a web app and decided to study Flask. I googled properly and arrived at a certain site. Um, what? #### **`Sample code`** ```pyth

Try StyleGAN on Google Colaboratory

## Overview When I tried StyleGAN on Google Colaboratory, I had some stumbling points, so I will summarize it as a memorandum. The reference Web pages are as follows. Once StyleGAN works properly

Open Chrome version of LINE from the command line [Linux]

# Conclusion ``` google-chrome --app=chrome-extension://ophjlpahpchlmihnnnihgmmeilfjmjjc/index.html ``` # Miscellaneous notes When opening LINE in a Linux environment 1. Open Chrome 2. Click LINE

Make a table of multiplication of each element in a spreadsheet (Python)

## Prerequisites You want to write the following Python dictionary values in a spreadsheet in the form of a table. ```python pattern = { 'area': ['Japan', 'America', 'England'],

Convert from PDF to CSV with pdfplumber

[pdfplumber](https://github.com/jsvine/pdfplumber) Process the dotted line as a solid line with camelot (Hough transform) https://qiita.com/barobaro/items/af850ac29dbc983eb39b Again, camelot is no

[Google Colab] How to interrupt learning and then resume it

# 1.First of all Here are some useful tips for using Google Colab. # 2. Challenges When using Google Colab Pro, there is a limit of up to 24 hours of execution time. Therefore, if the amount of cal

[Linux] Install Python 3 without administrator privileges

When I tried to install the Python module on the school server, I couldn't, so I installed the entire Python locally. 1. 1. Create and move a directory (here src) to your home directory. [cd / hom

Bulk update of pip packages

--Update ```bash python3 -m pip list -o | tail -n +3 | awk '{ print $1 }' | xargs python3 -m pip install -U ``` --Repairing dependencies broken by update ```bash python3 -m pip check | tail -n +1

A program that automatically resizes the iOS app icon to the required image size in Python

When developing an iOS app, I think you have to create an app icon that matches the size of your iPhone, iPad, etc. It was very troublesome to resize, so I wrote a program in Python. ## Prerequisit

GO Chokisomemo 1

<h1>println</h1> If you write a character in () of println (), the contents of () will be displayed on the console. println is one of the "instructions" provided by Go. In short, it means to output