Skip to content

Instantly share code, notes, and snippets.

@devnoname120
devnoname120 / main.c
Created July 12, 2017 17:47
Yifan oled brightness
#define DEVICE_BASE (0xE0000000)
#define IFTU0_BASE (DEVICE_BASE + 0x5020000)
uint *iftu0_base = NULL;
static inline void turnon_oled(int a2, int a3)
{
if (a2 == 128)
{
*(iftu0_base + 0x2000 + 32) = 0;
#include <stdio.h>
#include <arpa/inet.h>
int main()
{
struct sockaddr_in sa;
char str[INET_ADDRSTRLEN];
inet_pton(AF_INET, "192.168.0.1", &(sa.sin_addr));
printf("0x%x\n", sa.sin_addr.s_addr);
@devnoname120
devnoname120 / psv.h
Last active November 26, 2024 08:24 — forked from yifanlu/psv.h
/**
* Motivation: One unified .psv format for archiving (preserving) Vita games.
* The goal is to preserve as much of the original game structure while ensuring
* the all the information needed to decrypt and extract data can be derived
* from just the file and a hacked Vita.
*
* We want something akin to .nds or .3ds/.cia or .iso but for Vita games. The
* unique challenge is that Vita cart games require a per-cart key to decrypt
* and digital games require a similar key from activation. With just the raw
* game image, it is not possible to extract the game data.
@devnoname120
devnoname120 / aReadme.md
Last active November 7, 2019 08:03
010 Hex Editor Template for .psv

.psv Structure viewer

This little specification allows to view the structure of .psv files in 010 Editor.

screenshot

This allows you to get a quick overview of the keys, the signature, and the sha256 hash.

In order to use this specification you need to:

@devnoname120
devnoname120 / psmbackup.py
Last active November 26, 2024 08:23
PSM PKG Backup tool
#!/usr/bin/env python3
import sys
from xml.dom import minidom
from functools import partial
import grequests
import hashlib
import hmac
@devnoname120
devnoname120 / src-openrct2-trace.cpp
Created January 26, 2018 22:49
OpenRCT2 Vita compilation log
#include <stdio.h>
#include <debugnet.h>
extern "C" {
static int nest = 0;
void __cyg_profile_func_enter(void *fn, void *callsite);
void __cyg_profile_func_enter(void *fn, void *callsite) {
for (int i = 0; i < nest; i++) {
debugNetPrintf(99, " ");
@devnoname120
devnoname120 / Tech interview links.md
Last active November 26, 2024 08:22
Coding interviews & advice
@devnoname120
devnoname120 / tiling_window_managers.md
Last active January 8, 2021 12:51
The quest for a decent tiling window manager on Windows and Mac OS

Windows:

  • workspacer: Fast (C#) and close to i3, but really clunky.
  • dwm win: Pretty decent! Feels snappy but top bar is lagging for some reason ¯\_(ツ)_/¯
  • HashTWM: ?

(considered but bad)

  • MaxTo: Rigid manually-defined layouts, bad shortcuts.
  • AquaSnap: No virtual workspaces, bad shortcuts.
  • FancyZones: Only mouse, rigid, no virtual workspaces.