Skip to content

Instantly share code, notes, and snippets.

View Patitotective's full-sized avatar
🏫

Patitotective Patitotective

🏫
View GitHub Profile
https://developer-old.gnome.org/gtk4/
download file
gtk4-html-3.90.0.tar.gz
$ cp -r gtk4-html-3.90.0/ /usr/share/gtk-doc/html/gtk4
devhelp -> preferences
disable "Gtk+3 Reference Manual"
@dougbinks
dougbinks / ImGuiUtils.h
Created November 18, 2017 13:53
ImGuiUtils.h with TextURL
#pragma once
#include "RuntimeImGui.h"
#include "RuntimeInclude.h"
RUNTIME_MODIFIABLE_INCLUDE;
#include "IconsFontAwesome.h" // from https://github.com/juliettef/IconFontCppHeaders
#include "PlatformUtils.h"
namespace ImGui
@iverasp
iverasp / example.py
Created May 25, 2017 17:52
PyQtGraph datetime axis in PyQt5
from PyQt5.QtWidgets import QWidget, QGridLayout
import pyqtgraph as pg
from utils import TimeAxisItem, timestamp
class ExampleWidget(QWidget):
def __init__(self, parent=None):
QWidget.__init__(self, parent)
self.plot = pg.PlotWidget(
title="Example plot",