Skip to content

Instantly share code, notes, and snippets.

@TheLouisHong
TheLouisHong / Reference.cs
Created May 20, 2018 14:14 — forked from Lazersquid/Reference.cs
Unity generic scriptable object variable reference pattern
using System;
/// <summary>
/// Reference Class.
/// </summary>
[Serializable]
public abstract class Reference
{
}
@TheLouisHong
TheLouisHong / chrome-ssh-custom-css.css
Last active September 4, 2017 02:25 — forked from jake284773/chrome-ssh-custom-css.css
Chrome Secure Shell Powerline Font
@font-face {
font-family: 'DejaVu Sans Mono Powerline';
font-style: normal;
font-weight: normal;
src: local('DejaVu Sans Mono Powerline'), url('https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/DejaVuSansMono/Regular/complete/DejaVu%20Sans%20Mono%20for%20Powerline%20Nerd%20Font%20Complete%20Mono.ttf') format('truetype');
}
body {
font-family: 'DejaVu Sans Mono Powerline' !important;
}