Really barebone .tmux.conf that's useful for everyone.
Copy paste into your ~ directory
using System; | |
/// <summary> | |
/// Reference Class. | |
/// </summary> | |
[Serializable] | |
public abstract class Reference | |
{ | |
} |
using UnityEngine; | |
using UnityEngine.EventSystems; | |
public static class SimpleMessage | |
{ | |
public delegate void EventFunction<T1,T2>(T1 handler, T2 eventData); | |
public static bool Send<T,T2>(GameObject target, object eventData, EventFunction<T, T2> functor) | |
where T : IEventSystemHandler | |
{ |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
#if UNITY_5_4_OR_NEWER | |
[ImageEffectAllowedInSceneView] | |
#endif | |
[RequireComponent(typeof(Camera)), DisallowMultipleComponent, ExecuteInEditMode] | |
[AddComponentMenu("Effects/GameboyFX", -1)] | |
public class GameboyFX : MonoBehaviour { |
@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; | |
} |
I spent some time to optimize Meads website for readability. This CSS provides more readable fonts, eye strain reducing layout and makes sections of texts easier to distinguish.
Nothing revolutionary, it just something makes my day slightly better. ❤️
// Anonymous "self-invoking" function | |
alert("Thank you for using this script created by Louis Hong (/u/loolo78)\n\nThe download will now begin."); | |
(function() { | |
// Load the script | |
var script = document.createElement("SCRIPT"); | |
script.src = 'https://code.jquery.com/jquery-latest.min.js'; | |
script.type = 'text/javascript'; | |
document.getElementsByTagName("head")[0].appendChild(script); |
Shader "Custom/Circle" { | |
Properties | |
{ | |
_Scale("Scale", Float) = 1 | |
} | |
SubShader{ | |
Blend SrcAlpha OneMinusSrcAlpha | |
Pass{ | |
CGPROGRAM | |
#pragma vertex vert |