Skip to content

Instantly share code, notes, and snippets.

Send PKG to PS4

This guide will show you how to setup a windows context menu to send pkg files directly to your PS4

Pre requirements

  • This guide is only intended for windows 10.
  • Download and "install" DirectPackageInstaller
    As in make sure the files are somewhere permanent on your computer, I just placed mine in
    C:\Program Files\DirectPackageInstaller
  • Your PS4 needs to be on the same network as your computer, preferably wired ethernet for the best speeds.
<?php
// vidTitle.php
// Title and time header for html5 video player
// Usage: video-poster.php?title=Your%20text%20here&time=12:34
// <video width="800" height="480" controls poster="vidTitle.php?title=Hello%20World&time=1:00&width=1280&height=720&bar=80">
// <source src="video.mp4" type="video/mp4">
// </video>
// If you need more customization then this, then its recommended to just edit the code directly.
// If you do not set a URI param, then a default will be chosen for you from the following.
// If no time is set, then the time element is not drawn at all. good for a stream or other video with unknown length.
scriptTitle = "Aurora Disc to GOD installer"
scriptAuthor = "Phoenix / MobCat"
scriptVersion = 2
scriptDescription = "Installs the current disc as Game On Demand (GOD) on a local storage device."
scriptIcon = "icon\\icon.xur"
-- This script has been modifyed by MobCat
-- It no longer askes the user any silly lil promps
-- It just automatily install the GoD to \Xbox360\System\Hdd1\Content\0000000000000000\
@MobCat
MobCat / XNotifyDict.cs
Created April 25, 2025 03:38
XNotify message type dictionary
private static Dictionary<string, int> XNotifyType = new Dictionary<string, int>
/*
All notifications tested on fw 2.0.175590.0
Original list https://github.com/brokeboienige/jrpc.py/blob/main/jrpc/jrpc.py#L47
This list was then expanded on by MobCat.
Some of the labels appear to be outdated and don't seem to do anything. or do the right thing.
I'll optimize this list just for 175590 notifications if there is interest
Usage:
Console.XNotify("msg", XNotifyType["ACHIEVEMENTS_UNLOCKED"]);
or
@MobCat
MobCat / Discord.css
Last active June 11, 2025 18:45
MobCat's small list of custom Discord CSS
/* MobCat's small list of custom Discord CSS 20241030
Used with Vencord v1.4.0
Click the cat icon -> Open QuickCSS
Discord keeps adding buttons and ads I don't want and Vencord doesn't have
plugins or settings for some of this stuff, so we gotta do it ourselves. */
/* Remove Nitro Link from DMs list */
a[href="/store"] { display: none; }
/* Removes Shop Link from DMs list */
#!/env/Python3.10.4
#/MobCat (2024)
# Meme script
# Build "Hello world" from a random array of Unicode
import random
import time
initTime = time.time()
@MobCat
MobCat / batch.bat
Last active June 7, 2024 21:46
Script to be used with mymc to turn folders of psu files into ps2 memory card images
::mymc drag and drop
::By MobCat (2024)
::For mymc alpha 2.7
:: Usage -
:: Download this bat script and call it something like batch.bat
:: Place it in the same dir as mymc.exe
:: Drag and drop a folder of .psu files to this batch script
:: A new 8MB .ps2 mem card file will be saved in the same dir as your dir of .psu files
::
@MobCat
MobCat / key.reg
Created December 10, 2023 03:14
New windows context menu for removing EXIF data with exiv2
Windows Registry Editor Version 5.00
; adds a "remove EXIF data" right click context menu item for jpg
; You should pre-process your jpg for compression first then use this tool
; when you post the jpg to the internet.
; The ico is optional. But I like it.
[HKEY_CLASSES_ROOT\*\shell\Exif Remove]
"AppliesTo"=".jpg"
"Icon"="C:\\exiv2-0.28.1\\bin\\remove.ico"
@MobCat
MobCat / scrape.py
Created November 13, 2023 01:49
arcadeartwork.org box art scraper
#! arcadeartwork.org box art scraper
#!/env/Python3.10.4
#/MobCat (2023)
import requests #pip install requests
import re
import os
# Not all consoles on site are here. Too many categories and sub categories.
# To make new one. Open The Album you want to download `https://www.arcadeartwork.org/index.php?/category/547`
@MobCat
MobCat / hostsAppend.bat
Created July 24, 2023 10:18
WoW login screen news redirector
@echo off
echo WoW login screen news redirector
REM Check if the script is running with administrator privileges
>nul 2>&1 net session || (
echo This script requires administrator privileges.
echo Please run the script as an administrator.
pause
exit /b