Really barebone .tmux.conf that's useful for everyone.
Copy paste into your ~ directory
// ==UserScript== | |
// @name Oracle Docs Styler | |
// @version 2024-04-03 | |
// @description Styles Oracle Docs | |
// @author Louis Hong | |
// @icon https://docs.oracle.com/favicon.ico | |
// @match *://docs.oracle.com/* | |
// @match *://google.github.io/*/api-docs/*/javadoc/* |
Supplier () -> x | |
Consumer x -> () | |
BiConsumer x, y -> () | |
Callable () -> x throws ex | |
Runnable () -> () | |
Function x -> y | |
BiFunction x,y -> z | |
Predicate x -> boolean | |
UnaryOperator x1 -> x2 | |
BinaryOperator x1,x2 -> x3 |
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. ❤️