Skip to content

Instantly share code, notes, and snippets.

@jadeye
jadeye / upgrade_python_3.10_to_3.11.md
Created February 25, 2025 08:34 — forked from bewithdhanu/upgrade_python_3.10_to_3.11.md
Upgrade Python 3.10 to 3.11 on Ubuntu 22.04

Check python version use python and python3

The first comman will Not show version info.

The second one show 3.10 as version as it is provided by ubuntu as default

python --version
python3 --version

Add additional repository to download python 3.11

@jadeye
jadeye / Elementor Price Table Align Height
Created March 8, 2022 19:46 — forked from diggeddy/Elementor Price Table Align Height
Force same height on all pricing tables in a row and push footer to bottom
.elementor-widget-price-table, .elementor-widget-price-table>div, .elementor-price-table {
height: 100%;
}
.elementor-price-table {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;