programming

programming

Create an API to publish users as administrators with Cognito

Cognito implements the case of "allowing only administrators to create users". Use AdminCreateUser in the Amazon Cognito user pool API. Use Serverless Flamework to implement the API.
programming

【JS】 Difference between parseInt() and Number()

I've only used parseInt() until now, but I had a chance to see pull-request using Number(), so I checked it, so I made a...
programming

【Vue.js】 ESLint and Prettier’s settings

Requiredeslint (reports code that doesn't follow the rules you set)prettier (code formater)eslint-config-prettier (turns...
programming

Run functions that return Promise "synchronously" and "repeatedly"

If you are implementing in js, a little heavy processing will be performed automatically "asynchronously".There are many...
programming

Migrate the code you are editing to another branch when you accidentally start implementing it on master.

The one I do quite a bit. There are people who start implementing the one that has been clone as it is and realize that ...
programming

【JS】Determine that the object is empty

There are several ways to determine that an object is empty (={}) in javaScript, so make a note of it.Object.keys(obj).l...
programming

DynamoDB: Copy an existing table

As the title is.Clone an existing table and use it in a test. The one who uses it in such a time.Script#!/bin/bash# Crea...
programming

I want to change Git's commit message later

I check every time I commit without hitting a message by mistake, so I output it to remember it soon.Change the previous...
programming

Get the number of members using variables for Object Key in JS

Write down this object-related in JS. My notes.Node.js the result of various investigations by wanting to use Object whe...
programming

【Devil's Command】Accident prevention measures of "rm -rf /" [trash-cli]

The famous devil command rm -rf / in the engineer neighborhoodI often hear of failure stories that I've been doing with ...
Copied title and URL