Skip to content

Instantly share code, notes, and snippets.

View muhammadisa's full-sized avatar
🚀
Keep grow

Muhammad Isa muhammadisa

🚀
Keep grow
View GitHub Profile
@AaronTrotter
AaronTrotter / TerrainSounds.cs
Last active March 9, 2023 02:09
Terrain Footsteps Unity
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Linq;
public class TerrainSounds : MonoBehaviour
{
public Terrain terrain;
public List<TerrainTexDef> terrainLayers = new List<TerrainTexDef>();
@jun06t
jun06t / vault-golang-login
Created July 13, 2018 15:56
Golang Vault Login Sample
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/hashicorp/vault/api"
"github.com/hashicorp/vault/builtin/credential/aws"