Skip to content

Instantly share code, notes, and snippets.

View Nate2018's full-sized avatar

Nathan Nate2018

View GitHub Profile
@Nate2018
Nate2018 / OpenGL_and_OpenCL.md
Created October 18, 2025 17:18 — forked from Kichura/OpenGL_and_OpenCL.md
OpenGL 3.3 and OpenCL 1.2 Compatibility Workaround

Windows:

  1. Verify your system is on Build 19041 or higher, (Can be checked upon by running winver from search)
  2. Get the Compatibility Pack from the Microsoft Store,
  3. Restart your system and attempt to run the application again.

(If this fails then check the alternative and read it's documentation, Environment variables from Linux are required in Windows' system variables list using sysdm.cpl)

Linux:

@Nate2018
Nate2018 / Windows Guide.md
Created June 13, 2025 20:54
Windows Guide

Windows Guide Windows LogoMassgrave Logo

Note

GAC (General Availability Channel) are non-LTSC (Long Term Service channel) editions.

Recommended Editions

  • Windows 11 Enterprise - If you like Windows 11 features and its UI.

Win 11 GAC Download

@Nate2018
Nate2018 / calculator.html
Created February 5, 2025 03:09 — forked from d6u/calculator.html
Basic calculator in HTML
<html>
<head>
<meta charset="UTF-8">
<title>Calculator</title>
<style>
* {
box-sizing: border-box;
}
.calculator {
width: 400px;