Skip to content

Instantly share code, notes, and snippets.

View kulothunganug's full-sized avatar
🤓

Kulothungan U.G kulothunganug

🤓
View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *next;
} *head = NULL;
void insert_beg(int val);
void create_node(int val);
@kulothunganug
kulothunganug / main.py
Created July 19, 2023 14:40
Asynchronous http request in kivy
import asyncio
import httpx
from kivy.animation import Animation
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.button import Button
from kivy.uix.label import Label
@kulothunganug
kulothunganug / README.md
Last active January 4, 2024 05:36
Guide to compile a kivy app into apk using github

Follow these steps to compile your kivy application to an APK on GitHub (No linux needed).

Note: This method is only recommended if you don't have access to a linux or mac system

  1. Create an github account if you don't have.

  2. Create a repository, you could also create it as private.

  3. Goto your project directory (where main.py exists) and create a file in .github/workflows/build.yml (Create the folders if not already existed).