Skip to content

Instantly share code, notes, and snippets.

@JunielKatarn
JunielKatarn / php.ini
Last active August 9, 2018 07:11
Minimal PHP configuration for XDebug and SQLite
[PHP]
extension_dir = "ext"
zend_extension=php_xdebug-2.5.5-7.1-vc14-x86_64.dll
;XDebug
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_port=9000
xdebug.idekey=netbeans-xdebug
@JunielKatarn
JunielKatarn / ActivateProject64.cs
Created February 28, 2022 04:37
Activator for the Project64 Emulator
using ICSharpCode.SharpZipLib.Zip.Compression.Streams;
using Microsoft.Win32;
using System.Security.Cryptography;
using System.Text;
class Program
{
static void Main()
{
var regBytes = (byte[])Registry.GetValue(@"HKEY_CURRENT_USER\Software\Project64", "user", null)!;