Skip to content

Instantly share code, notes, and snippets.

View reski-rukmantiyo's full-sized avatar

Reski Rukmantiyo reski-rukmantiyo

View GitHub Profile
@dataclouder
dataclouder / release-3.2-sample.tf
Last active March 10, 2021 16:06
Release 3.2 sample
# Note: all resources are created inside a NSX-T VDC
data "vcd_nsxt_edgegateway" "existing" {
org = "datacloud"
vdc = "nsxt-vdc-datacloud"
name = "nsxt-gw-datacloud"
}
resource "vcd_network_routed_v2" "net_r_v2" {
name = "net_r_v2"
@oofnikj
oofnikj / answerfile
Last active May 4, 2024 12:20
Install Docker on Termux
KEYMAPOPTS="us us"
HOSTNAMEOPTS="-n alpine"
INTERFACESOPTS="auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
hostname alpine
"
TIMEZONEOPTS="-z UTC"
@mattetti
mattetti / gist:3798173
Last active April 16, 2023 03:09
async fetching of urls using goroutines and channels
package main
import (
"fmt"
"net/http"
"time"
)
var urls = []string{
"https://splice.com/",