Skip to content

Instantly share code, notes, and snippets.

@fastrizwaan
fastrizwaan / RH342.md
Created February 7, 2023 04:55 — forked from luckylittle/RH342.md
Red Hat RH342 Notes

Red Hat Enterprise Linux Diagnostics & Troubleshooting (RH342)

Last update: Fri Jul 26 08:23:20 UTC 2019 by @luckylittle


1. Troubleshooting principles

2. Generic issues

@fastrizwaan
fastrizwaan / HtmlEditor.py
Created February 12, 2021 06:23 — forked from namannik/HtmlEditor.py
PyGTK HTML WYSIWYG Editor
import os
import gi
gi.require_version("Gtk", "3.0")
gi.require_version('WebKit2', '4.0')
from gi.repository import Gtk, Gdk, WebKit2
class HtmlEditor(Gtk.Window):
def __init__(self):
super().__init__()