Skip to content

Instantly share code, notes, and snippets.

View Lunchbox4K's full-sized avatar

Mitchell Pell Lunchbox4K

View GitHub Profile
@Lunchbox4K
Lunchbox4K / GameHandlerSpriteSheetRenderer.cs
Last active August 10, 2019 21:00
Unity Component Based Instanced Sprite Sheet Renderer (2019.1) Test
/**********************************************************************
* Unity ECS - Test/Sample Code
* Mitchell Pell
* 2019.07.26
* v0.1
*********************************************************************/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Unity.Entities;
@Lunchbox4K
Lunchbox4K / SetupEngine.sh
Created March 25, 2018 01:00
UE4.19 Steamworks 1.42 Ubuntu 16.04 Setup Script
#!/bin/sh
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# The MIT License
#
# Copyright (c) 2018 Mitchell Pell. https://mpworks.net
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
@Lunchbox4K
Lunchbox4K / firestoretest.py
Created January 19, 2018 23:08
FireStore Python Assert Test
# GameProjectsSync FireBase Admin - FireBase Test Script
# Mitchell Pell - 2018/01/18
#
# todo
# + Create constant for collection and document.
#--------------------------------------------------------------------------------
import google.auth
#from google.auth import crypt
#from google.auth import exceptions
@Lunchbox4K
Lunchbox4K / phys222-project-notes.tex
Created February 22, 2017 03:59
Physics 222 Research Project Notes & LaTeX Learning Experience
\documentclass{article}
\usepackage{amsmath}
\title{Damped Oscillations Research}
\author{ Mitchell Pell\\ pell.mitchell@gmail.com }
\date{02/21/2017}
\begin{document}
@Lunchbox4K
Lunchbox4K / phys222-project-notes.tex
Created February 22, 2017 03:59
Physics 222 Research Project Notes & LaTeX Learning Experience
\documentclass{article}
\usepackage{amsmath}
\title{Damped Oscillations Research}
\author{ Mitchell Pell\\ pell.mitchell@gmail.com }
\date{02/21/2017}
\begin{document}
@Lunchbox4K
Lunchbox4K / NWGameInstance.h
Last active February 3, 2017 07:15
NWGameInstance (Steam, 4.13.4, Test)
// Copyright 2017 Mitchell Pell
#pragma once
#include "Engine/GameInstance.h"
#include "NWGameInstance.generated.h"
/**
* Network Game Instance
*/
@Lunchbox4K
Lunchbox4K / gnuplot.php
Last active November 29, 2016 01:46
PHP Gnuplot Grapher
<?php
/**
* MP-Works PHP Gnuplot Tool
*
* @author Mitchell Pell <pell.mitchell@gmail.com>
* @copyright (c) 2016 Mitchell Pell - https://www.mp-works.us
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*/
//# Variables
@Lunchbox4K
Lunchbox4K / KeyboardHook.cs
Last active December 11, 2023 07:13
C# Global Keyboard Hooks
// MP Hooks © 2016 Mitchell Pell
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;
namespace mp.hooks{
@Lunchbox4K
Lunchbox4K / buttonPressShiftBrite.ino
Last active January 27, 2016 17:09
Arduino Button Press ShiftBrite
/**
* @struct ColorRGB
* @desc Structure for holding RGB color intensities.
*/
#define CLOCK_PIN 13 // CI
#define ENABLE_PIN 10 // EI
#define LATCH_PIN 9 // LI
#define DATA_PIN 11 // DI
@Lunchbox4K
Lunchbox4K / BlogPost.cs
Last active August 29, 2015 14:27
ASP MVC Blog
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MitchellsWebBlog.Models
{
public class BlogPost