Skip to content

Instantly share code, notes, and snippets.

View fakihariefnoto's full-sized avatar
😌
on fire

Fakih Arief Noto fakihariefnoto

😌
on fire
View GitHub Profile
@gwpantazes
gwpantazes / How to Install JDK MacOS Homebrew.md
Last active November 13, 2024 09:42
How to install different JDK versions on MacOS with Homebrew

How To Install Different JDK Versions on MacOS with Homebrew

Keywords: Java, JDK (Java Development Kit), MacOS, Homebrew, Specific Version

This how-to guide covers how to install different versions of the JDK on MacOS with Homebrew.

Table of Contents

@codemartial
codemartial / redis-worker.go
Created April 17, 2018 05:53
A worker pool for executing Redis commands using redigo
package main
import (
"fmt"
"github.com/gomodule/redigo/redis"
"sync"
"time"
)
var rconns *redis.Pool