Skip to content

Instantly share code, notes, and snippets.

View kentlouisetonino's full-sized avatar

Kent Tonino kentlouisetonino

View GitHub Profile
@kentlouisetonino
kentlouisetonino / ANSI-color-codes.h
Created June 22, 2024 20:57 — forked from RabaDabaDoba/ANSI-color-codes.h
The entire table of ANSI color codes working in C!
/*
* This is free and unencumbered software released into the public domain.
*
* For more information, please refer to <https://unlicense.org>
*/
//Regular text
#define BLK "\e[0;30m"
#define RED "\e[0;31m"
#define GRN "\e[0;32m"
@kentlouisetonino
kentlouisetonino / dependabot-create-issue.yml
Created May 24, 2024 01:05 — forked from larryclaman/dependabot-create-issue.yml
Create Issue when Dependabot opens PR
name: CreateDependabotIssue
on:
workflow_dispatch:
pull_request:
branches:
- master
types: [ opened, reopened]
jobs:
issue: