Thursday, March 23, 2017
BusyBox Pro Apk 10 3 Download
BusyBox Pro Apk 10 3 Download
Ive got a ton of stuff I want to blog about, but man, I cant seem to find the time. This post is mostly just a mental note of stuff Ive been working on or want to write about in the near future:
- Object Models, XML, XSLT, DataSets, SQL, and how to make them all play nice on Windows Mobile
- Extending the XSD tool to customize code generation
- Supply an XSD
- Implement/Override a "CodeGenerator"
- Generate a custom object model really easily (Lets face it, the XSD tool sucks)
- Profit!?
- (And write an MSBuild task and do all your coding in XML and the process is automated)
- "Smart" key navigation within a form - This is an algorithm I wrote that analyzes the controls on your form and computes the best destination control given a source control and a navigation event (up, down, left, right, scroll). Its very handy in that I never need to write any key handling code; it always works, no matter the size, layout, or contents of the form.
- Texture Loading Problem
- Consider the following:
- OpenGL/Direct3D textures can only be 2^N by 2^N in dimensions (lets refer to them as "square" textures)
- Actual user textures may be any dimension (lets refer to them as user textures)
- Loading a user texture into a square texture results in wasted memory due to empty/unused space
- Challenge: Write an algorithm that takes user textures and creates a mosaic inside square textures to waste as little possible space.
- Difficulty: Make it fast on a mobile device.
Go to link for download