Skip to content

Instantly share code, notes, and snippets.

View ZekeSnider's full-sized avatar

Zeke ZekeSnider

View GitHub Profile

初音ミク Project DIVA X Trophy List

This is a list of all PSN trophies in Hatsune Miku Project Diva X translated to english. I will be updating the descriptions beneath each trophy as I figure out what the unlock requirements are. Descriptions with “(?)”, are just my best guesses and are unconfirmed. 日本語のリストはこちらです。

Platinum

  • Trophy master
    Obtain all other trophies
@ZekeSnider
ZekeSnider / bind.cpp
Created February 5, 2018 17:42
Binding an SSL certificate to a port in Windows C++
/*
This is the C++ programatic version of the following cmd:
netsh http add sslcert ipport=0.0.0.0:443 certhash=... appid=...
*/
ULONG ret = NO_ERROR;
HTTP_SERVICE_CONFIG_SSL_SET scssl;
//Fill in these with actual certificate hash and GUID.
BYTE ServerCertHash[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0, 0x00, 0x00 };
GUID AppID = { 0x00000000, 0x0000, 0x0000,{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x0, 0x00, 0x00 } };
@ZekeSnider
ZekeSnider / ModelMonitor.swift
Created January 14, 2025 07:05
SwiftData Model Monitor
import Foundation
import SwiftData
import WidgetKit
import os
@ModelActor final actor DataMonitor {
private var logger: Logger {
Loggable.getLogger(Self.self)
}
@ZekeSnider
ZekeSnider / DraggleList.swift
Created March 1, 2025 07:52
Custom SwiftUI list that includes drag to select functionality.
import Foundation
import SwiftUI
// MARK: - Models
struct Lyric: Identifiable {
let id: Int
let text: String
}