Skip to content

Instantly share code, notes, and snippets.

View zoalasaurusrawr's full-sized avatar
🖥️
Slingin' that code

Zoey McCullough zoalasaurusrawr

🖥️
Slingin' that code
View GitHub Profile

Legend of Zelda: Tears of the Kingdom TXTG File Format

Header

Offset Name Length Expected Value Notes
x00 Magic 8 Bytes x50 x00 x11 x00 x36 x50 x4b x30 The last four bytes always contain 6PK0
x08 Width 2 Bytes Variable Most likely width based upon similarly named sprite sizes
x0A Height 2 Bytes Variable Most likely height based upon similarly named sprite sizes

Contributing Changes

Project maintainers will merge changes that improve the product significantly and broadly align with the .NET Roadmap.

Maintainers will not merge changes that have narrowly-defined benefits, due to compatibility risk. The .NET Core codebase is used by several Microsoft products (for example, ASP.NET Core, .NET Framework 4.x, Windows Universal Apps) to enable execution of managed code. Other companies are building products on top of .NET, too. We may revert changes if they are found to be breaking.

Contributions must also satisfy the other published guidelines defined in this document as well as in pr-guide docs.

DOs and DON'Ts

@zoalasaurusrawr
zoalasaurusrawr / Zisms.md
Last active March 30, 2019 02:49
Zoey5000

ATTENTION ALL CREW AND PERSONNEL, THE BLACK DEATH IS COMING... REPENT! IS IT TIME FOR INDIAN FOOD? IT DONT ALWAYS BE LIKE IT IS, BUT SOMETIMES IT DO LETS DO THIS THE DUMB AND INEFFICIENT WAY INSTEAD I ONCE GOT INTO A TERF WAR WITH SOME COSTA RICANS OVER PATIENT MANAGEMENT TRACKER (TM), ITS LIKE PATIENT MANAGEMENT, EXCEPT IT WORKS CONTESSA, DOING THE SCIENCE YOU DONT WANT TO, BECAUSE YOU DONT HAVE TO. LAST WEEK, WE PUT LIQUID PAPER ON A BEE... AND IT DIED REDDIWHIP JUST MAKES THE CAN, THEY ARENT AT FAULT IF YOU DIE DOING WHIPPITS IN THE PARKING LOTS
WHO HAS A BOWL CUT IN THIS DAY AND AGE?

syntax = "proto3";
package MyThings;
service MyThings {
// Sends a greeting
rpc GetThingByName (ThingRequest) returns (ThingReply) {}
}
message ThingRequest {

Keybase proof

I hereby claim:

  • I am zoeysaurusrex on github.
  • I am zoeysaurusrex (https://keybase.io/zoeysaurusrex) on keybase.
  • I have a public key ASA7HAemPgLIlM73d03Oq22WvNVTiiGyNQXLlJogrE4_Nwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am wmccullough on github.
  • I am wmccullough (https://keybase.io/wmccullough) on keybase.
  • I have a public key whose fingerprint is 1C96 4E21 DCF9 CAFE FC2C 9DB2 D10C 34C5 BA3A C2D0

To claim this, I am signing this object:

@zoalasaurusrawr
zoalasaurusrawr / SpatialPartitionCell.cs
Created January 16, 2014 04:08
SpatialPartitionCell.cs
using Hammerwerx.Framework.Game;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Hammerwerx.Framework.Runtime {
public sealed class SpatialPartitionCell {
public IList<GameObject> Objects;
@zoalasaurusrawr
zoalasaurusrawr / SpatialPartition.cs
Created January 16, 2014 04:07
SpatialPartition.cs
using Hammerwerx.Framework.Game;
using Microsoft.Xna.Framework;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
namespace Hammerwerx.Framework.Runtime {
public sealed class SpatialPartition {
@zoalasaurusrawr
zoalasaurusrawr / NodeJSPubSub
Created September 4, 2013 19:51
Simple node.js pub/sub
/*
* This is a very simple node.js pub/sub system.
*
* Subscribers can subscribe with a valid http endpoint that accepts
* a POST. When /publish is called on this API, it will publish the
* body to each subscriber.
*
* == Required Node Modules ==
* express, request, node-cache
*/