Skip to content

Instantly share code, notes, and snippets.

View vankessel's full-sized avatar
👨‍💻
Arranging 1s and 0s

Kara van Kessel vankessel

👨‍💻
Arranging 1s and 0s
View GitHub Profile
@inikitin
inikitin / .gitattributes
Last active June 14, 2024 10:06
.gitattributes for Unity with case-insensitive Git LFS extension filters
# Unity specific .gitattributes
* text=auto
*.cs diff=csharp text
*.cginc text
*.shader text
# Unity YAML
*.anim -text merge=unityyamlmerge diff
@josegonzalez
josegonzalez / category.rb
Created August 14, 2010 21:41
Category plugin for Jekyll
module Jekyll
class CategoryIndex < Page
def initialize(site, base, dir, category)
@site = site
@base = base
@dir = dir
@name = 'index.html'
self.process(@name)
self.read_yaml(File.join(base, '_layouts'), 'category_index.html')