God of War 2 (CRC: 2F123FD8): Power Orbs (UINT32): 0x0071AFFC
The Punisher (CRC: BC204346): Money to Buy Upgrades (UINT32): 0x01B426D0
* PS2 EE uses little endian byte order.
God of War 2 (CRC: 2F123FD8): Power Orbs (UINT32): 0x0071AFFC
The Punisher (CRC: BC204346): Money to Buy Upgrades (UINT32): 0x01B426D0
* PS2 EE uses little endian byte order.
| public delegate void StartElementHandler(string name, IReadOnlyDictionary<string, string> attributes); | |
| public delegate void EndElementHandler(string name); | |
| public delegate void CharacterDataHandler(string content); | |
| public delegate void CommentHandler(string data); | |
| public delegate void ProcessingInstructionHandler(string target, string data); | |
| public class XmlParser(Encoding? encoding = default) | |
| { | |
| static readonly UTF8Encoding s_DefaultEncoding = new(false, true); |
Basic XML parsing using libexpat bindings for .NET |
| using Spectre.Console; | |
| using System.Collections.Concurrent; | |
| using System.Diagnostics; | |
| using System.Net.NetworkInformation; | |
| Console.Title = "BOOSTEROID - PING TEST"; | |
| List<Entry> hosts = []; | |
| { |
| using System.Diagnostics; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Globalization; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using System.Xml.Linq; | |
| namespace Jabber; | |
| public static partial class Xml |
| #include "jid.h" | |
| #include "xmpp.h" | |
| #include <sstream> | |
| using namespace std; | |
| Jid::Jid() | |
| { | |
| } |
| using System.Text; | |
| var sampleInput = "TestUuid/.NET"; | |
| var expcetedUUIDStr = "e0198edc-d96b-3d2f-83ee-9a0614f93187"; | |
| var uuidInstance = Uuid.FromName(Encoding.UTF8.GetBytes(sampleInput)); | |
| var currentUUIDStr = uuidInstance.ToString(); | |
| // test readonly array | |
| var buf1 = uuidInstance.ToByteArray(); | |
| var buf = uuidInstance.ToByteArray(); |
| // ==UserScript== | |
| // @name Fill Xcloud Video Screen | |
| // @author FRNathan13 | |
| // @match https://www.xbox.com/pt-BR/play/launch/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=xbox.com | |
| // @grant none | |
| // @version 1.0 | |
| // ==/UserScript== | |
| (function() { |
| using System.Runtime.CompilerServices; | |
| using System.Text; | |
| namespace CraftDedicatedServer; | |
| public static class Util | |
| { | |
| const int SEGMENT_BITS = 0x7f; | |
| const int CONTINUE_BIT = 0x80; | |
| const int MAX_STRING_LEN = short.MaxValue - 3; |
| // Use browser devtools on an steam depot from https://steamdb.info/depot/:depot_id | |
| // This will fetch all manifest + basic depot info from webpage and return as function value. | |
| function SteamDepotToXML() { | |
| var manifests = []; | |
| for(let temp of document.querySelectorAll(`tr[data-branch]`).entries()) { | |
| if(!temp.length && !temp[1]) continue; | |
| let node = temp[1]; |