Skip to content

Instantly share code, notes, and snippets.

View kyudorimj's full-sized avatar
🎶
Googling

kyudorimj

🎶
Googling
View GitHub Profile
@kyudorimj
kyudorimj / kivy-python3.10.md
Last active January 29, 2022 07:53
Kivy with Python 3.10

KIVY WITH PYTHON 3.10

As of now only the Kivy nightly wheels are compatible with the latest version of Python.

To install the nightly wheels run each of these commands:

python -m pip install kivy --pre --no-deps --index-url  https://kivy.org/downloads/simple/
python -m pip install kivy[base] --pre --extra-index-url https://kivy.org/downloads/simple/
@kyudorimj
kyudorimj / generate-ssh-key.md
Last active February 10, 2022 04:40
GENERATE SSH KEY

HOW TO GENERATE SSH KEY

Listed here are the commands to generate and register ssh key on your computer.

Generate the SSH Key

ssh-keygen -t rsa -b 4096 -C <your email address here>

You can specify the path where you want to save the ssh key by typing the path when it is asked. Not typing anything will generate the key inside .ssh folder in the home directory.

@kyudorimj
kyudorimj / install-lamp-and-phpmyadmin.md
Last active October 28, 2021 00:32
10 Steps to Install LAMP and phpMyAdmin in Fedora Linux

How To Install LAMP [ Linux, Apache, MariaDB, PHP ] and phpMyAdmin in Fedora 34

A straight-forward guide in installing LAMP and phpMyAdmin in Linux Fedora 34.
This guide is dedicated for personal use only, but if others find it useful then it is more than better.

Prerequisites

  • You have access to the Terminal
  • You have access to the root from Terminal using the root password.
    If you haven't configure your root password yet, follow this link

Steps

@kyudorimj
kyudorimj / Android-App-ADB.md
Last active October 21, 2021 14:00
ADB IN GIT BASH TERMINAL | WINDOWS

APK ANDROID DEBUG BRIDGE (ADB) IN GIT BASH TERMINAL

This guide only covers the install, uninstall, and debug in adb.

What you need:

  • USB Lightning Cable
  • Android Phone

Prerequisites:

@kyudorimj
kyudorimj / Kivy-To-Android.md
Last active April 5, 2022 07:49
Kivy-To-Android: Build your Kivy Application to Android Package APK

KIVY TO ANDROID USING BUILDOZER IN WINDOWS 7/8/10

A straight forward step by step guide in building Kivy application into android package (.apk file) using buildozer in Windows

Steps

  • Open your browser and navigate to Google Colab
  • Create new notebook by clicking File > New Notebook
  • Click the +Code in the upper part of the screen to add new cell
  • Add the following to a cell