Skip to content

Instantly share code, notes, and snippets.

View Navknight's full-sized avatar

Abhinav Navknight

View GitHub Profile
@vortexavalanche
vortexavalanche / dual_secure_boot.md
Created December 9, 2022 19:51 — forked from fikri-izzuddin/dual_secure_boot.md
Arch Linux dual secure boot with Windows 11
@arslancharyev31
arslancharyev31 / C_v1.bnf
Created October 14, 2017 15:32
C .bnf grammar. Version 1.
{
tokens=[
space='regexp:\s+'
identifier='regexp:[a-zA-Z][a-zA-Z0-9_]*'
integer-constant='regexp:\d+'
character-constant='regexp:[a-zA-Z]'
floating-constant='regexp:[+-]?([0-9]*[.])?[0-9]+f'
enumeration-constant='regexp:[a-zA-Z][a-zA-Z0-9_]*' // Same as identifier
]