Joaquin

Results 55 comments of Joaquin

Would it be ok to compile the libraries as part of odin's build even if the libraries are already in brew? The reason is the odin compiler ships bindings to...

Oh wow, I don't know why this is happening! It is good practice to have the doctype directive in html files, see https://developer.mozilla.org/en-US/docs/Glossary/Doctype > Its sole purpose is to prevent...

https://stackoverflow.com/questions/7266276/doctype-affects-width-and-height-of-html-body-canvas 💡

Exactly right, adding `display: block;` to the inner canvas fixes this... What a dumb default for a canvas element, display inline... 🤦 This needs fixing in the library then 👍

This actually doesn't fix the issue of the library loading, because of this line https://github.com/joakin/Odin/blob/b632e90eb259e2eec07ffd5ddc4823daa167fddf/src/linker.cpp#L426 ``` lib_str = gb_string_append_fmt(lib_str, " -l:\"%s/%.*s\" ", cwd, LIT(lib)); ``` Which is prepending the CWD...

I've also added the same contains check to the parser line, I searched and ".so" is not used anywhere else, good catch. With this it should work if copying the...

Joining in for a big **Thanks!**

This library doesn’t add any styles for the links on the page. Those link styles are added by the content author (in the demos they were added by designers). For...

See https://github.com/joakin/context-cards/blob/d91beff34c543ebf988a0d4aa397f501eeb764b6/dist/wikifact.css#L21, where the lightning bolt style is added to the demo content sites. The JS library itself doesn’t have any style for the links, just for the pop ups.

Not right now, why is it an issue?