Skip to content

Instantly share code, notes, and snippets.

@bakkujp
bakkujp / Hadoop_install_osx.md
Created May 6, 2021 04:16 — forked from viecode09/Hadoop_install_osx.md
This is how to install hadoop on Mac OS

STEP 1: First Install HomeBrew, download it from http://brew.sh

$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

STEP 2: Install Hadoop

$ brew search hadoop
$ brew install hadoop
@bakkujp
bakkujp / setup-gh-cli-auth-2fa.md
Created March 17, 2020 14:17 — forked from ateucher/setup-gh-cli-auth-2fa.md
Setup git on the CLI to use 2FA with GitHub

These are instructions for setting up git to authenticate with GitHub when you have 2-factor authentication set up. This authentication should be inherited by any GUI client you are using. These are intentionally brief instructions, with links to more detail in the appropriate places.

  1. Download and install the git command-line client (if required).

  2. Open the git bash window and introduce yourself to git (if required):

    git config --global user.name 'Firstname Lastname'
    git config --global user.email 'firstname.lastname@gov.bc.ca'
    
@bakkujp
bakkujp / minishift.md
Last active November 9, 2019 07:19
Minishift - Installation and setting-up
@bakkujp
bakkujp / Install_OpenLDAP.md
Last active October 12, 2019 07:01
OpenLDAP Installation
@bakkujp
bakkujp / My_Gear.md
Last active August 8, 2019 01:37
My Gear

1. SSH

  • Git Bash
  • Putty

2. Development Editors

  • Eclipse
  • VSC
  • IntelliJ Idea

3. Media Tools

@bakkujp
bakkujp / Install_Docker_On_Alpine_Linux_3.10.md
Last active May 21, 2022 18:23
How to install Docker on Alpine Linux 3.10

Howto: Install Alpine Linux 3.3 on VirtualBox OSX

  • Latest Standard ISO version x86_64 is recommended (http://alpinelinux.org/downloads/)
  • Create new VM ("Linux 2.6 / 3.x / 4.x (64-bit)")
  • 1 CPU w/ 512BM RAM and 1 GB default (VDI) disk is more than sufficient
  • Default networking (NAT)
  • Boot and add Alpine ISO as attached virtual install media
  • Default root password is blank (though note - ssh PermitRootLogin defaults to disallow blank passwords and: prohibit-password; switch to yes for Host ssh)
  • Run setup-alpine
  • Defaults are fine, but you do want "sys" disk setup to sda, y to confirm
@bakkujp
bakkujp / Some_notes_in_installing_Docker_EE.md
Last active July 10, 2019 15:37
Some notes in installing Docker EE
@bakkujp
bakkujp / Nano Editor Shortcut Key
Last active July 7, 2019 09:32
Some useful shortcut key of Nano.
| Shoftcut Key | Description |
|--------------|---------------------------------------------------------------------------------|
| ^G | nano help |
| ^A | move to beginning of line in nano |
| ^E | move to end of line in nano |
| ^Y | move down a page - next page in nano |
| ^V | move up a page - previous page in nano |
| ^_ | move to a specific line (^_^V moves to the top of the file, ^_^Y to the bottom) |
| ^C | find out what line the cursor is currently on |
| ^W | search or find some text in nano |
@bakkujp
bakkujp / MySQL_5-7_macOS.md
Last active July 6, 2019 13:29 — forked from robhrt7/MySQL_5-7_macOS.md
Install MySQL 5.7 on macOS using Homebrew + Notes

This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).

Check MySQL Version

Just go to the formula site of brew https://formulae.brew.sh/formula/ and type mysql to check in detail.

Install MySQL 5.7 on macOS

This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :