Skip to content

Instantly share code, notes, and snippets.

@viettranx
viettranx / vnpay_payment_url.go
Created August 15, 2021 08:31
VNPay Payment URL
package payment
import (
"crypto/sha256"
"encoding/hex"
"net/http"
"sort"
"strings"
"time"
)
@viettranx
viettranx / Vagrantfile
Created August 27, 2022 13:00
Simple Vagrant File - Create a VM with Ubuntu OS
# -*- mode: ruby -*-
# vi: set ft=ruby :
$install_docker_script = <<SCRIPT
echo "Installing dependencies ..."
sudo apt-get update
echo Installing Docker...
curl -sSL https://get.docker.com/ | sh
sudo usermod -aG docker vagrant
SCRIPT