$ git config credential.helper store
$ git pull
#provide user-name and password and those details will be remembered later. The credentials are stored in the disk, with the disk permissions.
$ git config credential.helper store
/** | |
Create pagebreaks in exported Obsidian PDFs. | |
Example: | |
# Heading 1 | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. | |
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, | |
when an unknown printer took a galley of type and scrambled it to make a type |
import sys | |
from PyQt5 import QtCore, QtWidgets, QtWebEngineWidgets | |
def main(): | |
print( | |
f"PyQt5 version: {QtCore.PYQT_VERSION_STR}, Qt version: {QtCore.QT_VERSION_STR}" | |
) |