Skip to content

Instantly share code, notes, and snippets.

View expose's full-sized avatar
📱
Focusing

Miłosz Milewski expose

📱
Focusing
View GitHub Profile
@expose
expose / global_rules.md
Created March 11, 2025 05:50
Windsurf global rules template

Global Rules

These guidelines ensure consistency, quality, and maintainability across all projects. They provide foundational principles that apply regardless of specific architecture patterns or methodologies.

Code Style and Readability

  1. Clarity is Paramount:
    • Write code that clearly communicates intent.
    • Favor understandable code over clever tricks or excessive brevity.
  • Use descriptive, consistent naming following language conventions.
@expose
expose / gist:9fe7022b96351ba81765
Created June 11, 2014 08:12
norwegian strings
array (
"weekday"=>array("Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"),
"weekday_initial"=>array("S","M","T","O","T","F","L"),
"weekday_abbrev"=>array("Søn","Man","Tir","Ons","Tor","Fre","Lør"),
"month"=>array("januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"),
"month_abbrev"=>array("jan","feb","mar","apr","mai","jun","jul","ago","sep","okt","nov","des")
);