Skip to content

Instantly share code, notes, and snippets.

View itsyosefali's full-sized avatar
🥱
Focusing

Yosef Ali itsyosefali

🥱
Focusing
View GitHub Profile
@vijaywm
vijaywm / frappe-reference-guide.md
Last active August 27, 2025 14:30
Frappe Reference Guide
@NanoDano
NanoDano / cpanel_create_email.py
Last active June 16, 2024 20:45
Create email account using cPanel API in Python
from requests import get # pip install requests
"""
Examples:
Docs:
- Create email (add_pop): https://documentation.cpanel.net/display/DD/UAPI+Functions+-+Email%3A%3Aadd_pop
- Delete email (delete_pop): https://documentation.cpanel.net/display/DD/UAPI+Functions+-+Email%3A%3Adelete_pop
- Change pass (passwd_pop): https://documentation.cpanel.net/display/DD/UAPI+Functions+-+Email%3A%3Apasswd_pop
@ascorbic-acid
ascorbic-acid / install-guide.md
Last active February 6, 2026 13:14
How to Install ERPNext v15 & Frappe Framework on Ubuntu 22.04 / 24.04

How to Install ERPNext v15 & Frappe Framework on Ubuntu 22.04 / 24.04

This tutorial provides a step-by-step walkthrough for installing the Frappe Framework and ERPNext v14/15. While it is best compatible with Ubuntu 22.04 LTS for Production or development usecase, these steps also support Ubuntu 24.04 for development which i dont recommend anyway but you can try also with help of uv/pipx.

Install Required Packages for Frappe Framework.

sudo apt-get update && sudo apt-get upgrade
sudo apt-get install software-properties-common \
nginx wget zip unzip git curl file certbot python3-pip \
@itsyosefali
itsyosefali / cpanel_create_email.py
Created April 11, 2024 23:26 — forked from NanoDano/cpanel_create_email.py
Create email account using cPanel API in Python
from requests import get # pip install requests
"""
Examples:
Docs:
- Create email (add_pop): https://documentation.cpanel.net/display/DD/UAPI+Functions+-+Email%3A%3Aadd_pop
- Delete email (delete_pop): https://documentation.cpanel.net/display/DD/UAPI+Functions+-+Email%3A%3Adelete_pop
- Change pass (passwd_pop): https://documentation.cpanel.net/display/DD/UAPI+Functions+-+Email%3A%3Apasswd_pop