Skip to content

Instantly share code, notes, and snippets.

View yokawasa's full-sized avatar
:octocat:
debugging

Yoichi Kawasaki yokawasa

:octocat:
debugging
View GitHub Profile
@yokawasa
yokawasa / README.md
Last active December 12, 2023 07:27
Efficient API development using Postman, VS Code, and Generative AI

Developing TODO API using Postman, VS Code, and Generative AI

Todo appのためのAPIを開発する

Procedure

  1. GitHub Copilot / ChatGPTにpromptで要件をインプットしTodo app用のOpen API Spec(以下OAS)を作ってもらう
@yokawasa
yokawasa / nodejs-pack-manager.md
Last active March 14, 2024 06:25
Node.js package manager cheat sheet

Node.js package managers cheat sheet

Yarn and npm

Overview

features npm yarn
lock file package-lock.json yarn.lock
using workspaces supported supported
@yokawasa
yokawasa / ghq-tips.md
Last active January 28, 2023 07:25
ghq tips

ghq tips

setup

# install 
brew install ghq

# set ghq root dir
git config --global ghq.root '~/dev/ghq'
@yokawasa
yokawasa / notion-tips.md
Created January 2, 2023 14:47
Notion Tips

Notion Tips

Commands

Open New Windows

  • MacOS: shift + cmd + n
  • Windows: shift + ctrl + n

Switch Between Windows

@yokawasa
yokawasa / running-postgres-client.md
Created September 7, 2022 11:03
Running Postgres Client in Kubernetes

First, create postgresql-client pod

cat << EOF | kubectl apply -f - 
---
apiVersion: v1
kind: Namespace
metadata:
  name: postgresql-client

---
@yokawasa
yokawasa / sysbench-mysql.md
Last active August 23, 2022 01:02
Benchmarking MySQL using Sysbench

Benchmarking MySQL using Sysbench

Setup and Start MySQL on MacOS

brew update
brew install mysql

# start mysql
mysql.server start
@yokawasa
yokawasa / java-jps.md
Last active August 15, 2022 05:06
Java Virtual Machine Process Status Tool (jps)
@yokawasa
yokawasa / iterm2.md
Created July 2, 2022 09:44
iTerm2 Configuration

Configure Transparency in Window Apperance

Preference > Profile > Window > Window Apperance Screen Shot 2022-07-02 at 18 39 55

Disable Beep sound

Preference > Profile > Terminal > Silence Bell Screen Shot 2022-07-02 at 18 40 09

@yokawasa
yokawasa / jfrog-setup.md
Created May 27, 2022 04:13
Scanning and detecting vulnerabilities with JFrog

Scanning and detecting vulnerabilities with JFrog

Here is how to start JFrog scanning with JFrog VS Code extension

  1. Install JFrog extension for VSCode - JFrog extension for VS Code IDE

  2. Setup FREE JFrog environment in the cloud and connect VS Code to it

For MacOS and Linux