A big list of everything I have installed / set up on my laptop when getting started to use Pop OS.
Forks/ports of applications which are not originally supported on Linux.
# pyright: reportDeprecated=none, reportUnknownVariableType=none, reportUnknownParameterType=none, reportAny=none, reportUnknownMemberType=none, reportMissingParameterType=none, reportUnknownArgumentType=none, reportImplicitOverride=none, reportUnusedCallResult=none | |
from cmd import Cmd | |
from dataclasses import dataclass, asdict | |
from enum import Enum | |
from http.client import HTTPResponse | |
from io import BytesIO | |
from time import sleep | |
from typing import Dict, List, Optional, Union, cast | |
from urllib.error import HTTPError |
A big list of everything I have installed / set up on my laptop when getting started to use Pop OS.
Forks/ports of applications which are not originally supported on Linux.
@echo off | |
setlocal | |
rem # | |
rem # peyexe | |
rem # | |
rem # Super simple batch file to pack a Python project into a single-executable exe using 7z SFX. | |
rem # | |
rem # ysfchn (https://ysfchn.com) | |
rem # | |
rem # Before getting started, make sure you have: |
/** ~~~~~ | |
* Created with the AppyBuilder Code Editor. | |
* This is a template for basic Extension. | |
* Modify this template to customize your extension. | |
* | |
* **** NOTE: DO NOT use a package name. | |
* **** The package name will be created for you automatically. | |
* **** Adding a package name will cause a compile error | |
*/ | |
import android.content.Context; |