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
#include <Windows.h> | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
// #include "cpu.h" | |
#include <vulkan/vulkan.h> | |
#include <vulkan/vulkan_win32.h> |
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
from PySide6.QtWidgets import QApplication, QMainWindow, QWidget, QFileDialog | |
from PySide6.QtGui import QAction | |
from PySide6.QtCore import Signal, Slot, QTimer, QObject, QFile, QByteArray | |
import numpy as np | |
import copy | |
import sys | |
from pyvk import pyvk as vk |
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
import inspect | |
import numpy as np | |
import ast | |
import copy | |
class Variable: | |
def __init__(self, name: str = '', value: float = 0.0): | |
self.name = name | |
self.value = value |
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
const fs = require('fs'); | |
var memo = [] | |
var stack = [] | |
opCodes = { | |
// Integers | |
INT: 0x49, | |
BININT: 0x4a, | |
BININT1: 0x4b, |
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
using UnityEngine; | |
using UnityEngine.EventSystems; | |
namespace UnityEngine.EventSystems | |
{ | |
public class MultiTouchInputModule : PointerInputModule | |
{ | |
private PinchEventData _pinchData; | |
private RotateEventData _rotateData; | |