Skip to content

Instantly share code, notes, and snippets.

View sethhorsley's full-sized avatar
🦾
who knows

Seth Horsley sethhorsley

🦾
who knows
View GitHub Profile
@sethhorsley
sethhorsley / parse_prism.c
Created February 10, 2025 04:34
Parse ruby from c using prism
#include <prism.h>
#include <stdlib.h>
void erbx_parse(const uint8_t *source, size_t length) {
pm_parser_t parser;
pm_parser_init(&parser, source, length, NULL);
pm_node_t *root = pm_parse(&parser);
const char *hh = pm_token_type_name(root->type);
@sethhorsley
sethhorsley / deployment.md
Created August 14, 2025 17:58
StateCert deployment guideline

Deployment Guide

Developer Responsibility

Every developer is responsible for their code and actions. Before deploying any feature or bug fix:

  • Ensure your code meets quality standards and follows best practices
  • Test your changes thoroughly in development and staging environments
  • Verify that your changes won't negatively impact other parts of the system
  • Be prepared to support and fix any issues that arise from your changes