Skip to content

Instantly share code, notes, and snippets.

View gdlmx's full-sized avatar

Mingxuan Lin gdlmx

View GitHub Profile
@cyberang3l
cyberang3l / How to setup VirtualGL and TurboVNC on Ubuntu.md
Last active April 6, 2025 04:07
Setup VirtualGL and TurboVNC on Ubuntu for OpenGL forwarding
@wd15
wd15 / README.md
Last active November 22, 2023 02:24
Implementation of benchmark 3

Implementation of Benchmark 3

Linting and testing

$ pylint *.py
$ flake8 *.py

TODO

  • generate upload files from view.py
@lukas-koschmieder
lukas-koschmieder / condor-8.6.11-py3.patch
Last active June 5, 2018 19:14
HTCondor 8.6.11 Python 3 patch
diff -r -u a/src/python-bindings/classad_python_user.cpp b/src/python-bindings/classad_python_user.cpp
--- a/src/python-bindings/classad_python_user.cpp
+++ b/src/python-bindings/classad_python_user.cpp
@@ -48,7 +48,7 @@
{
if (!Py_IsInitialized())
{
- char pname[] = "htcondor";
+ wchar_t pname[] = L"htcondor";
Py_SetProgramName(pname);
import { cx, css } from 'emotion';
const button = {
background: black,
color: white,
'& + &': {
marginLeft: '8px',
}
};
const buttonPrimary = {
background: red,