You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A full description of the MIDI inputs and outputs of the Numark Mixtrack Platinum FX, because Numark hasn't provided one. This much used to be the default back when I was a child...
Numark MixTrack Platinum FX
Remember, MIDI channels start at 1 - Channel 16 is actually 0x?F, Channel 1 ix 0x?0.
Lua is one of the many languages that fully assumes a Basic-like structure and avoids Object Oriented Programming entirely by default for simplicity. Instead it has an optional MetaTable implementation available to any object type which can imitate the behavior. Metatables allow us to "override" certain behavior in a similar way to OOP languages, and even enable Class Inheritance and more.
To assign a metatable to an object you must set its __metatable key using either setmetatable(table, metatable) or rawset(table, "__metatable", metatable). You can retrieve the current metatable at any point using getmetatable or rawget(table or {}, "__metatable"). The native functions should be preferred as they may do additional work unique to that implementation of Lua.
As with everything Microsoft does, the Windows TCP stack is not optimized for modern systems. It is full of ancient ways designed for low bandwidth high latency connections and we need to change some values if we want to take advantage of the modern gigabit connections. Especially Content Creators with live streams using RTMP/S will benefit massively from this.
Note that once these have been applied, you need to restart your system entirely. You can either shut down your machine and cold start it, or do a full restart from window. A soft restart when Fast Boot is enabled will not work.
Registry Modifications
The TCP Service: HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
This is the real TCP-over-IP service, where we'll enable some additional features that for some reason aren't enabled by default.
The PWSZ container is a standard sequential Zip file containing several other files describing the actual print process.
Notables
Zip32, all sizes are 4 byte.
DEFLATE compressed.
Date & Time is always left as 0x00 0x00
General Purpose flags are always 0x08 0x08.
Bit 3: We don't know the CRC-32 or File Sizes at this time, and they've been appended to the compressed data. Seek to the next Zip header, go back 12 bytes, and read the CRC-32, Compressed Size, and Uncompressed Size from there.
Unclear why Bit 11 is set, doesn't appear to be standard.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Benchmark any JavaScript function using any Browser or Node.JS. No need for jsperf or jsbench!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters