Daniel Mazurkiewicz

Results 25 issues of Daniel Mazurkiewicz

According to doc: "It can also translate nullc files into C source files." https://github.com/WheretIB/nullc wiki: https://github.com/WheretIB/nullc/wiki/Language-Reference

Example: ```markdown Link | Description | License ------------ | ------------- | ------------- link1 | description1 | MIT link2 | description2 | GPL ``` Link | Description | License ------------ |...

enhancement

https://bellard.org/tcc/ https://github.com/rui314/8cc https://github.com/drh/lcc

question

https://github.com/uhub/awesome-c

enhancement
help wanted

Originally wrote it on HN, but this seems a better place to start discussion. Android 10 introduces "Desktop mode", vendors like Samsung, LG or Huawei offers own solutions for additional...

enhancement

Some computer screens allows to flip them by 90 degrees. Would be nice to have option to flip image (and set virtual screen resolution accordingly)

enhancement

**Feature request?** There are situation where inlining actually doesn't bring profits in smaller size and actually makes code even bigger than originally written. See example below. Inlining makes sense only...

suboptimal-output

Was redirected here from: https://github.com/SmingHub/Sming/issues/1432 Do you have any ideas what might be causing such an issues? (or how to solve them?)

https://github.com/RobLoach/node-raylib/blob/4887ee14392e01883921909de0382fb53f6c1f1f/tools/generate_templates/ArgumentTypeConversion.js#L21 I guess it should look more like: ```typescript arg = arg.replace('const ', '') if (arg.includes('*')) { if (arg.trim().startsWith("float")) { return 'number[] | Float32Array' } return 'number' } ``` and...

https://github.com/RobLoach/node-raylib/blob/4887ee14392e01883921909de0382fb53f6c1f1f/tools/generate_templates/node-raylib-bindings.js#L222 I might be missing something, but I didn't see any place that does free it, is not that a memory leak?