Skip to content

Instantly share code, notes, and snippets.

View t04glovern's full-sized avatar
🎯
Watching Speed-runs while i code

Nathan Glover t04glovern

🎯
Watching Speed-runs while i code
View GitHub Profile
@t04glovern
t04glovern / animals.json
Created November 29, 2018 16:02
animals.json
[{
"adopted": true,
"id": "3063wmAH4UtML5RrF1sK",
"location": "St James, Western Australia",
"description": "I'm a Chatty Catty and I'd love to share my meows with someone special",
"name": "Paul",
"type": "cat",
"attributes": [
"desexed",
"vaccinated",
@t04glovern
t04glovern / alexa-random-quote.json
Created November 28, 2018 13:59
alexa-random-quote.json
{
"interactionModel": {
"languageModel": {
"invocationName": "random quote generator",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
@t04glovern
t04glovern / README.md
Created November 15, 2018 14:07
Elasticsearch / Kibana 6.5.0

Elasticsearch / Kibana 6.5.0

Up

docker-compose -f ./docker-compose.yml up -d

Down

docker-compose -f ./docker-compose.yml down -v

@t04glovern
t04glovern / GPSController.cs
Created April 30, 2017 12:55
Unity3D GPS Connector script
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GPSController : MonoBehaviour {
public LocationInfo currentGPSInfo;
public float updateRate = 3f;
public bool debugging = true;

Keybase proof

I hereby claim:

  • I am t04glovern on github.
  • I am nathanglover (https://keybase.io/nathanglover) on keybase.
  • I have a public key whose fingerprint is D64A 1F5A 05BD 8D11 DF51 AB91 0983 1DFD 1F77 86AE

To claim this, I am signing this object:

@t04glovern
t04glovern / snakes-and-ladders.py
Last active September 22, 2020 08:29
Python implementation of Snakes and Ladders
import random
# Snakes and Ladders dictionary
SaLdic = {6: 17,
14: 3,
20: 15,
24: 26,
30: 44,
39: 33,
49: 62,