Skip to content

Instantly share code, notes, and snippets.

View okhaimie-dev's full-sized avatar

okhai okhaimie-dev

View GitHub Profile
@viridia
viridia / feathers_design.md
Created April 23, 2026 18:29
Bevy Feathers Design Language

Bevy Feathers Design Language

A formal specification of the design language embodied by the Bevy Editor mockups and the bevy_feathers widget crate. This document exists to make the implicit rules of the design explicit, so that future contributors can add widgets, themes, and layouts that feel cohesive without needing to reverse-engineer the original designer's intuition.

Where the mockups and the existing code disagree, the mockups take precedence. Where both are silent, this document fills the gap and flags it as a new rule.


1. Philosophy

@b-j-roberts
b-j-roberts / coc-settings.json
Last active January 30, 2024 19:25
Cairo Language Server in CoC using Scarb
{
"languageserver": {
"cairo1": {
"enable": true,
"command": "scarb",
"args": ["cairo-language-server"],
"filetypes": ["cairo"],
"rootPatterns": ["Scarb.toml", ".git/"]
}
}
@cowboyd
cowboyd / README.md
Created November 11, 2015 22:41
Demonstrate Mocha not running `beforeEach` hooks on outer contexts when using grep.

Running lifecycle hooks with a mocha grep

given the following mocha code:

describe("the outer context", function () {
  beforeEach(function() {
    this.didRunBeforeEach = true;
  });
  describe("the inner context", function() {