Aleksander Machniak

Results 42 issues of Aleksander Machniak

I'm new to Laravel so bear with me. After reading this project's wiki and https://laravel.com/docs/5.8/broadcasting I was hoping I can easily replace Pusher with Swoole. After trying I have a...

question

When using Bootstrap v5 I get TypeError: setting getter-only property "delegateTarget" errors. It is because the property in cash-dom has no setter, but Bootstrap's code is setting it. More info:...

needs more info

There's a js error when I try to create donut chart without specifying `tooltipOptions`. It works if I specify it as an empty object. Existence of this parameter in chart...

- wrong default in https://github.com/Hypercontext/linkifyjs/releases - wrong default in https://linkify.js.org/docs/options.html#truncate

Here's why: 1. `Masterminds\HTML5\Parser\CharacterReference::lookupDecimal()` uses `mb_decode_numericentity()` unconditionally. 2. Looking at `Masterminds\HTML5\Parser\UTF8Utils::convertToUTF8()` either iconv or mbstring must be available (if the input encoding is not 'auto'). This would allow to: 1....

Even if 1-2% slower it does not depend on system locale as ctype functions. Polyfills are even slower. Fixes #173

This library uses ctype_alpha() function in two places. 1. If I'm not wrong this function is locale dependent and I don't see any setlocale() calls. So, would be better to...

When working with code generated by Microsoft Outlook I found a case where DOMDocument based parser has no problem with specific code, but HTML5 parser does. The minimal test case...

I have a script that generates a HTML sample that is ~1.5MB in size. It emulates a real-world example. Then I parse it. ``` $html = ''; $lines = 20000;...