Skip to content

Instantly share code, notes, and snippets.

View stungeye's full-sized avatar

Kyle Geske stungeye

View GitHub Profile
@stungeye
stungeye / ViveOpenXRGame_2.log
Created April 17, 2023 17:31
ViveOpenXRGame UE5.1 Crash Log with Vive Cosmos Elite (OpenXR)
Log file open, 04/17/23 12:22:26
LogWindows: Failed to load 'aqProf.dll' (GetLastError=0)
LogWindows: File 'aqProf.dll' does not exist
LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=0)
LogWindows: File 'VtuneApi.dll' does not exist
LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=0)
LogWindows: File 'VtuneApi32e.dll' does not exist
LogWindows: Started CrashReportClient (pid=24412)
LogWindows: Custom abort handler registered for crash reporting.
@stungeye
stungeye / FirstVR_2.log
Created April 17, 2023 17:27
Unreal Engine UE5.1 VR Template Crash Log with Vive Cosmos Elite (OpenXR)
Log file open, 04/17/23 11:52:31
LogWindows: Failed to load 'aqProf.dll' (GetLastError=0)
LogWindows: File 'aqProf.dll' does not exist
LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=0)
LogWindows: File 'VtuneApi.dll' does not exist
LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=0)
LogWindows: File 'VtuneApi32e.dll' does not exist
LogWindows: Started CrashReportClient (pid=27956)
LogWindows: Custom abort handler registered for crash reporting.
@stungeye
stungeye / .gitignore
Created March 6, 2023 23:06
My Latest .gitignore file for Unreal Engine
# Visual Studio 2015 user specific files
.vs/
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
@stungeye
stungeye / main.cpp
Last active February 28, 2023 15:55
Base and Derived Types in C++ with Polymorphic Functions and Collections using Pointers
#include <iostream> // std::cout
#include <string> // std::string
#include <vector> // std::vector
#include <memory> // std::unique_ptr, std::make_unique
class Animal {
// Base Class - Eventually Abstract
std::string name;
protected:
@stungeye
stungeye / main.cpp
Last active February 13, 2023 17:40
Base and Derived CPP Classes
#include <iostream>
class Base {
protected:
int value; // Derived class will have access.
public:
Base(int value) : value{value} {
std::cout << "Base Constructor\n";
}
@stungeye
stungeye / ofApp.cpp
Created February 2, 2023 21:30
Detecting Keys and Keycodes in Openframeworks
#include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup() {
ofAddListener(ofGetWindowPtr()->events().keyPressed, this,
&ofApp::keycodePressed);
}
//--------------------------------------------------------------
void ofApp::update(){
@stungeye
stungeye / blackAndWhiteP1File.ppm
Last active January 7, 2024 18:01
PPM Image File Examples
P1
# PBM Black & White Example
24 7
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0
0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0
0 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 1 0
0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0
0 1 0 0 0 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
@stungeye
stungeye / words.h
Last active January 23, 2023 15:29
A Words - Word List
#pragma once
#include <string>
#include <vector>
const std::vector<std::string> words{
"abominates", "abominating", "abomination", "abominations", "abominator", "abominators", "abomine", "abondance",
"abongo", "abonne", "abonnement", "aboon", "aborad", "aboral", "aborally", "abord", "aboriginal", "aboriginality",
"aboriginally", "aboriginals", "aboriginary", "aborigine", "aborigines", "aborning", "aborsement", "aborsive",
"abort", "aborted", "aborter", "aborters", "aborticide", "abortient", "abortifacient", "abortin", "aborting",
"abortion", "abortional", "abortionist", "abortionists", "abortions", "abortive", "abortively", "abortiveness",
@stungeye
stungeye / .gitignore
Created November 15, 2022 16:29
A .gitignore File for openFrameworks Projects Which Correctly Allows Required Files in the bin and bin/data Folders
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
@stungeye
stungeye / ofApp.cpp
Created October 27, 2022 22:00
Collision Detection Using openFrameworks and ofRectangle
#include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup() {
}
//--------------------------------------------------------------
void ofApp::update() {
a2.update({static_cast<float>(ofGetMouseX()), static_cast<float>(ofGetMouseY())});
}