Skip to content

Instantly share code, notes, and snippets.

View Nate2018's full-sized avatar

Nathan Nate2018

View GitHub Profile
@Kichura
Kichura / OpenGL_and_OpenCL.md
Last active October 18, 2025 17:18
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:

@d6u
d6u / calculator.html
Last active February 13, 2026 03:07
Basic calculator in HTML
<html>
<head>
<meta charset="UTF-8">
<title>Calculator</title>
<style>
* {
box-sizing: border-box;
}
.calculator {
width: 400px;