This file contains 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
// ==UserScript== | |
// @name ImproveGitHubDashboard | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Re-adds issue, comment, and pull request notifications to the dashboard. Messy code warning. | |
// @author Nukem9 | |
// @match https://github.com/ | |
// @grant none | |
// ==/UserScript== |
This file contains 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
int main(int, char**) | |
{ | |
// Create application window | |
WNDCLASSEX wc = { sizeof(WNDCLASSEX), CS_CLASSDC, WndProc, 0L, 0L, GetModuleHandle(NULL), NULL, LoadCursor(NULL, IDC_ARROW), NULL, NULL, _T("ImGui Example"), NULL }; | |
RegisterClassEx(&wc); | |
HWND hwnd = CreateWindow(_T("ImGui Example"), _T("ImGui DirectX11 Example"), WS_POPUP, 100, 100, 1280, 800, NULL, NULL, wc.hInstance, NULL); | |
// Initialize Direct3D | |
if (CreateDeviceD3D(hwnd) < 0) | |
{ |
This file contains 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
i> 00002AD0 Successfully created OpenGL context: | |
i> 00002AD0 GL_VENDOR: NVIDIA Corporation | |
i> 00002AD0 GL_VERSION: 4.5.0 NVIDIA 358.91 | |
i> 00002AD0 GL_RENDERER: GeForce GTX 880M/PCIe/SSE2 | |
i> 00002AD0 GL_SHADING_LANGUAGE_VERSION: 4.50 NVIDIA | |
i> 00000E58 XThread00000004 (1) Stack: 40010000-40030000 | |
i> 00000E58 XThread00000008 (2) Stack: 40040000-40060000 | |
K> 00000004 XThread::Execute thid 1 (handle=00000004, 'GraphicsSystem Command Processor', native=000023B8, <host>) | |
K> 00000008 XThread::Execute thid 2 (handle=00000008, 'GraphicsSystem Vsync', native=00002E74, <host>) | |
i> 00000E58 XThread0000000C (3) Stack: 40070000-40090000 |
This file contains 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
i> 0000257C Successfully created OpenGL context: | |
i> 0000257C GL_VENDOR: NVIDIA Corporation | |
i> 0000257C GL_VERSION: 4.5.0 NVIDIA 358.91 | |
i> 0000257C GL_RENDERER: GeForce GTX 880M/PCIe/SSE2 | |
i> 0000257C GL_SHADING_LANGUAGE_VERSION: 4.50 NVIDIA | |
i> 00002160 XThread00000004 (1) Stack: 40010000-40030000 | |
i> 00002160 XThread00000008 (2) Stack: 40040000-40060000 | |
K> 00000004 XThread::Execute thid 1 (handle=00000004, 'GraphicsSystem Command Processor', native=000028C4, <host>) | |
K> 00000008 XThread::Execute thid 2 (handle=00000008, 'GraphicsSystem Vsync', native=00001ADC, <host>) | |
i> 00002160 XThread0000000C (3) Stack: 40070000-40090000 |
NewerOlder