Skip to content

Instantly share code, notes, and snippets.

View JordanViknar's full-sized avatar

JordanViknar

View GitHub Profile
@JordanViknar
JordanViknar / CONTRIBUTING.md
Created March 11, 2022 12:39
Valid conventional commit types (from sources)

Type

Must be one of the following:

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • docs: Documentation only changes
  • feat: A new feature
  • fix: A bug fix
  • perf: A code change that improves performance
  • refactor: A code change that neither fixes a bug nor adds a feature
@JordanViknar
JordanViknar / C_console_text_color.c
Last active March 8, 2022 16:07
C Text Color in Console
//Color Functions
void reset(){
printf("\033[0m");
}
void black(){
printf("\033[0;30m");
}
void red(){
printf("\033[0;31m");
}