Skip to content

Instantly share code, notes, and snippets.

View Skylarity's full-sized avatar
🏳️‍⚧️

Skye Ash Skylarity

🏳️‍⚧️
View GitHub Profile
@ompuco
ompuco / ompucoLineRaster.shader
Created March 8, 2026 03:40
A shader for better pixel-perfect line mesh rasterization in Unity, since the default behavior on most graphics platforms make for some real garbage lines, especially if you wanted to use it for a project with low-resolution graphics.
Shader "ompuco/LineRaster"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
}
SubShader
{
Tags { "RenderType"="Opaque" }
LOD 100
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active March 11, 2026 12:06
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@salamander2
salamander2 / hexgame.java
Created December 18, 2012 17:03
Hexagonal Grid in Java
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
/**********************************
This is the main class of a Java program to play a game based on hexagonal tiles.
The mechanism of handling hexes is in the file hexmech.java.
Written by: M.H.
Date: December 2012