Skip to content

Instantly share code, notes, and snippets.

@jplebre
jplebre / ConcourseTutorial_Output_01
Created January 9, 2019 08:45
Used as a source/output of a concourse pipeline
0
function sln {
Get-ChildItem *.sln | Select-Object -ExpandProperty Name | Invoke-Item
}
@jplebre
jplebre / MaterialToSoundMapper.cs
Last active June 6, 2016 08:29
How to have nested collections in Unity while picking them up in the inspector
using System;
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class MaterialToSoundMapper : MonoBehaviour
{
public MAudio[] MaterialFootsteps;
}
@jplebre
jplebre / ConsoleAnimations.cs
Created December 8, 2015 14:49
c# console line animation examples
using System;
namespace ConsoleAnimations
{
class MainClass
{
public static void Main(string[] args)
{
Animations spin = new Animations();
string loadingText = "Loading....";