Skip to content

Instantly share code, notes, and snippets.

@il3ven
il3ven / Readme.md
Last active June 22, 2022 11:08
How to convert GitHub issues into an Excel file?

How to convert GitHub issues into an Excel file?

Prerequisite

How to run?

  • Change the constants defined in upper case (for eg: GITHUB_API_URL, GITHUB_API_TOKEN).
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@il3ven
il3ven / menu.c
Last active December 26, 2019 13:51
This how I am implementing screens. menu.c creates main menu on the screen. In other words a circular list.
#include "../include/menu.h"
static lv_indev_t * keyboard;
typedef struct Data {
char *option_list[12];
int number_of_options;
int current_index;
char heading[36];
};