James Gregory
James Gregory
The majority of the images are just line art, they could easily be converted to SVG. For progress or examples see: [svg branch](/jagregory/abrash-zen-of-asm/tree/svg).
The captions of the figure images contain quite a bit of text. This text would be more legible if it was in the markup rather than the images themselves.
- [x] Initial pandoc conversion - [x] Cleanup Title - [x] Cleanup Acknowledgements - [x] Cleanup Publisher - [x] Cleanup Source - [x] Cleanup Trademarks - [x] Cleanup Intro -...
Appendix A has a _lot_ of repetition, and the tables don't lend themselves well to reading on a ebook reader.
Pandoc can do syntax highlighting of inline code as well as large blocks. Do this where applicable. ``` `mov ab,ah`{.nasm} ```
There's a large section at the end of the book full of the larger figures. Either these should be inlined into the main book body, as jumping back and forth...
When you have a User Pool with email as a UsernameAttribute, you can create a user by specifying an email address as their Username in the admin-create-user call. In Cognito...
HasMany doesn't work well with collections of interfaces (especially when using Reveal) ``` public class Episode { private IList contributors = new List(); } public static OneToManyPart ChildType(this OneToManyPart part,...
I'd like to map a list of an interface This is my object: ``` public class Foo { public virtual IList Bars { get; protected set; } } ``` I...
It seems that CheckList enforces ordering on the lists that it checks. I have a many-to-many relationship between Users and Roles as follows: ``` public UserMap() { Id(x => x.Id);...