This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
01/29/2024 9:16:00 PM 2024/01/29 21:16:00 ...es/charset/escape.go:41:EscapeControlReader() [E] Error whilst escaping: orgmode.Render failed: could not write output: interface conversion: org.Node is org.Text, not org.RegularLink | |
01/29/2024 9:16:00 PM 2024/01/29 21:16:00 ...ers/web/repo/view.go:324:renderReadmeFile() [E] Render failed for README.org in <Repository 152:reponame>: orgmode.Render failed: could not write output: interface conversion: org.Node is org.Text, not org.RegularLink Falling back to rendering source | |
01/29/2024 9:16:05 PM 2024/01/29 21:16:05 ...es/charset/escape.go:41:EscapeControlReader() [E] Error whilst escaping: orgmode.Render failed: could not write output: interface conversion: org.Node is org.Text, not org.RegularLink | |
01/29/2024 9:16:05 PM 2024/01/29 21:16:05 ...ers/web/repo/view.go:491:renderFile() [E] Render: orgmode.Render failed: could not write output: interface conversion: org.Node is org.Text, not org.RegularLink | |
01/29/2024 9:17:04 PM 2024/01/29 21:17:04 ...es/charset/escape.g |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# | |
# Description: | |
# A script to check for the latest Mullvad update an installs it after | |
# verifying its GPG signature. | |
# This script works only for Debian based Linux distributions using a bash | |
# shell and with at least Python 3.6 installed on it. | |
# | |
# | |
# Author: Arif Er 2021 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
readQSettings.py is a gist that reads a QSettings file and outputs a navigable dictionary in Python with the same hierachy. | |
The user may navigate through the dictionary and update the QSettings file much easier this way. This was built for editing | |
the configuration file for QBitTorrent but it should work for any QtApps that uses the QSettings structure. | |
''' | |
from PyQt5.QtCore import QSettings` | |
configSettings = QSettings(settingsDir, QSettings.IniFormat) # Change the format appropriately |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Something in lines of http://stackoverflow.com/questions/348630/how-can-i-download-all-emails-with-attachments-from-gmail | |
# Make sure you have IMAP enabled in your gmail settings. | |
# Right now it won't download same file name twice even if their contents are different. | |
import email | |
import getpass, imaplib | |
import os | |
import sys | |
detach_dir = '.' |