Welcome to new things

[Technical] [Electronic work] [Gadget] [Game] memo writing

Entries from 2020-01-01 to 1 month

How to load multiple Cloud Storage files together with Google BigQuery's Node.js SDK

When loading Google Cloud Storage files into Google BigQuery, multiple files can be loaded at once. However, I got stuck trying to do that with Google BigQuery's Node.js SDK, so here are my notes on that. Overview and Issues Load using tab…

How to distinguish between files and directories in Google Cloud Storage

In Google Cloud Storage, I tried to get a list of files in a subdirectory and process those files. However, when I looked at the error message that the file was wrong, I found that the list of files retrieved included a subdirectory. Reaso…

How to get a subdirectory listing of Google Cloud Storage with Node.js

We previously used the GCP Pyhton library to get a list of Google Cloud Storage subdirectories, and this is the Node.js version of that. Python version is here www.ekwbtblog.com procedure The GCP Node.js SDK documentation is kind enough to…

I'm confused about how to use Twitter's Search API, so I'll try to summarize.

We had the opportunity to collect data using the Twitter API. The Twitter API has a Search API for searching tweets, just like Google search, which I used this time. I usually use Twitter mainly as a reader, so I was not really aware of it…

I can no longer type underbar in Linux.

PS I received an update notification for Chrome, and when I updated it, hoping for the best, it was cured so that I could type in the underscore! We will keep the original article. Below is the original article. I use Linux (Ubuntu) and Wi…

How to read CSV files with newlines and commas output by Excel in JavaScript

CSV files have been loaded using SheetJS. However, there was a CSV file that I just couldn't get to read properly because of garbled characters, so I decided to try another library. There was a library called "csv" that came up at the top …