This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <wait.h> | |
| #include <assert.h> | |
| #include <errno.h> | |
| #include <sys/signal.h> | |
| #include <sys/types.h> | |
| #include <sys/ptrace.h> |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| import threading | |
| import re | |
| import signal | |
| import os | |
| import curses | |
| import keyword | |
| import sys | |
| import time | |
| import ast |
This file contains hidden or 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
| import sys, ctypes, signal | |
| from OpenGL import GL, GLU | |
| from PyQt5 import QtCore, QtGui, QtWidgets | |
| position_data = (ctypes.c_float*12)( | |
| -1,-1, 1,-1, -1,1, 1,-1, 1,1, -1,1) | |
| vertex_shader = (GL.GL_VERTEX_SHADER, ''' | |
| #version 150 | |
NewerOlder