Skip to content

Instantly share code, notes, and snippets.

View minazou67's full-sized avatar

minazou67 minazou67

View GitHub Profile
@minazou67
minazou67 / howto-migrate-vscode-extension.md
Created February 6, 2019 04:02
How to migrate VSCode extension

How to migrate VSCode extension

Visual Studio Code の拡張機能を移行する方法です。
同期用の拡張機能も存在しますが、GitHub へのアクセスが必要となるため、拡張機能なしで移行する方法をメモ。

Environment

  • Windows 10
  • VSCode 1.30.2
@minazou67
minazou67 / code_coverage_note.md
Last active January 27, 2022 05:40
Code coverage note

Code coverage note

White box test で使用するコードカバレッジのメモです。
但し、判定条件/条件網羅や複合条件網羅、経路網羅などについては記載していません。

Metric

コードカバレッジには、代表的な3種類の測定基準があります。

| Criteria | Detail |

@minazou67
minazou67 / howto-use-maven-release-plugin.md
Last active November 11, 2021 10:42
How to use Maven Release Plugin

How to use Maven Release Plugin

Environment

  • Apache Maven 3.3.3
  • Jenkins 2.7.3
    • Maven Project Plugin 2.17 (Maven Integration plugin)
    • M2 Release Plugin 0.14.0 (Maven Release Plug-in Plug-in)

The OAuth 2.0 Authorization Framework Overview

RFC 6749 で定義されている認可フレームワークの標準仕様です。

1 Roles(役割)

4 つの役割が定義されています。

1.1 Resource Owner(リソース所有者)

Debugging Java SSL / TLS connections

  • -Djavax.net.debug=all
  • -Djavax.net.debug=ssl:handshake
@minazou67
minazou67 / howto-expand-disk-size-of-linux-on-vmware.md
Last active October 11, 2020 03:44
How to expand disk size of Linux on VMware

How to expand disk size of Linux on VMware

VMware 上の Linux のディスクサイズを拡大する方法です。
仮想ディスクの縮小は面倒なため、不用意にサイズを拡大しすぎないこと。

Environment

  • VMware ESXi 6.0.0
  • VMware vSphere Client 6.0.0
@minazou67
minazou67 / howto-use-testing-debian-distribution.md
Last active September 21, 2020 14:43
How to use the testing distribution of Debian

How to use the testing distribution of Debian

Debian のテスト版 (testing) のディストリビューションを使用する方法です。

Environment

  • Debian wheezy

Why use

@minazou67
minazou67 / clone-collection-in-java.md
Last active October 25, 2019 10:57
Clone Collection in Java

Clone Collection in Java

Java のコレクションをクローンする場合のメモです。

Environment

  • Java 1.8
  • Apache Commons Lang 3.9

List

@minazou67
minazou67 / howto-upgrade-debian-jessie-kernel.md
Last active August 13, 2019 18:13
How to upgrade the Linux Kernel of debian 8 jessie

How to upgrade the Linux Kernel of debian 8 jessie

Debian 8 のカーネルをアップグレードする方法です。

Environment

  • Microsoft Windows Server 2012 R2
  • Hyper-V
  • Debian 8.2 jessie
@minazou67
minazou67 / random-number -generation-in- java.md
Last active May 31, 2019 07:25
Random Number Generation in Java

Random Number Generation in Java

Java での乱数生成についてのメモです。

Environment

  • Java 1.8
  • Apache Commons Math 3.6.1

真の乱数と擬似乱数