Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View romatthe's full-sized avatar
🍔
There is a hamburger inside!

Robin Mattheussen romatthe

🍔
There is a hamburger inside!
  • Belgium
  • 15:49 (UTC +02:00)
View GitHub Profile
@romatthe
romatthe / kernel.log
Created February 1, 2023 21:54
Journalctl amdgpu issues
Jan 23 10:12:48 yokohama kernel: snd_hda_intel 0000:0a:00.1: Unable to change power state from D3hot to D0, device inaccessible
Jan 23 10:12:48 yokohama kernel: i2c-designware-pci 0000:0a:00.3: Unable to change power state from D3hot to D0, device inaccessible
Jan 23 10:12:48 yokohama kernel: i2c-designware-pci 0000:0a:00.3: timeout in disabling adapter
Jan 23 10:12:48 yokohama kernel: snd_hda_intel 0000:0a:00.1: CORB reset timeout#2, CORBRP = 65535
Jan 23 10:12:49 yokohama kernel: i2c-designware-pci 0000:0a:00.3: timeout in disabling adapter
Jan 23 10:12:58 yokohama kernel: [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx_0.0.0 timeout, signaled seq=180325, emitted seq=180327
Jan 23 10:12:58 yokohama kernel: [drm:amdgpu_job_timedout [amdgpu]] *ERROR* Process information: process .firefox-wrappe pid 3436 thread .firefox-w:cs0 pid 3488
Jan 23 10:12:58 yokohama kernel: amdgpu 0000:0a:00.0: amdgpu: GPU reset begin!
Jan 23 10:12:58 yokohama kernel: amdgpu 0000:0a:00.0: amdgpu: SMU: response:0xFFFFFFFF for inde
{ lib
, clangStdenv
, fetchFromGitHub
, cmake
, ninja
, nasm
, pkg-config
, boost
, curl
, freeglut
diff --git a/Cargo.toml b/Cargo.toml
index a8a17b9..9c8bb9b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,7 @@
[package]
name = "powerglove"
version = "0.1.0"
+authors = ["Robin Mattheussen <me@romatthe.dev>"]
edition = "2021"

Keybase proof

I hereby claim:

  • I am romatthe on github.
  • I am romatthe (https://keybase.io/romatthe) on keybase.
  • I have a public key ASBJN-M5u9YDjLrG-ueMEGrsH8yo1-2FCXtzriESR7SZIgo

To claim this, I am signing this object:

@romatthe
romatthe / NES.md
Created January 4, 2018 19:05
NES

NES Emulation

Structure

struct nes {
 Memory cpuMemory;
 Memory ppuMemory;
 Memory objectAttributeMemory;
 
@romatthe
romatthe / ips.rs
Created July 16, 2017 01:22
Failing IPS file parser using Nom
#[macro_use]
extern crate nom;
extern crate byteorder;
use std::str;
use std::fs::File;
use std::io::Cursor;
use std::io::Read;
use byteorder::{BigEndian, ReadBytesExt};
@romatthe
romatthe / WPMGMGT.BigFixData.cs
Created July 28, 2015 09:35
BigFix - Quick Computer scrape!
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Net;
using System.Xml.Linq;
using RestSharp;
using RestSharp.Deserializers;
namespace WPMGMGT.BigFixData
@romatthe
romatthe / ScanLogs
Created July 11, 2015 21:57
ScanLogs
package viciffy
import scala.collection.JavaConverters._
import scala.concurrent.ExecutionContext.Implicits.global
import scala.concurrent.{Await, Future}
import scala.concurrent.duration._
import java.io.{InputStream, File}
import java.util.Calendar
import java.util.zip.{ZipEntry, ZipFile}
import java.text.SimpleDateFormat
@romatthe
romatthe / .gitignore
Last active August 29, 2015 14:16
My standard VS .gitignore
# All credits go to Ethan Lee for providing this one :)
# https://github.com/flibitijibibo
#OS junk files
[Tt]humbs.db
*.DS_Store
#Visual Studio files
*.pidb
*.userprefs