Tim Ryan

Results 40 comments of Tim Ryan

Thanks for reporting the issue. This should absolutely be made more clear in the documentation, since this is what permits seamless integration.

Great! Just in case you're not aware, haXe can generate AS3 code directly--it's not the prettiest markup, but it can more easily be cleaned up into working source. This is...

If you want a source, null-pointer optimization is described in the second to last paragraph here: https://doc.rust-lang.org/nomicon/repr-rust.html

Hey @briankabiro no problem! Sorry for my late response too. I’m happy to work through a task with you! I think this issue will be easier to start with. Let...

@briankabiro So now that Controls the struct is broken out, it can be stored directly on an object. https://github.com/tcr/edit-text/blob/master/edit-client/src/client.rs#L304-L331 If you look at `fn setup_controls()`, it creates a `Controls {...

Unrelatedly, I switched to running demos on the [Dell Chromebook 3380](https://www.dell.com/en-us/work/shop/dell-laptops-and-notebooks/chromebook-3380/spd/chromebook-13-3380-laptop), an incredibly cheap and yet capable computer which can be purchased from the Dell Refurbishing Outlet for $230. They're...

I compiled a [markdown corpus](https://github.com/tcr/markdown-corpus) after scraping Github.

Clicking at any point in the document is now supported using caretPositionFromPoint. Left and right carets work also. Up/down carets do not yet. I'm not clear on what this should...

This can be solved by adding a zero-width joiner to the end of a pre element. Easiest way to do this from CSS: ``` [data-tag="pre"]::after { content: '\200C' !important }...