Char

Results 143 comments of Char

I experienced this too. It worked with serial requests (1 request/second). It was terminated if you send too many requests at once (like clicking the reload button repeatedly). The server...

`BeautifulSoup` cannot parse `None` so we need to handle the case ```diff diff --git a/lector/readers/read_epub.py b/lector/readers/read_epub.py index 124e8e5..55d9619 100644 --- a/lector/readers/read_epub.py +++ b/lector/readers/read_epub.py @@ -193,7 +193,7 @@ class EPUB: self.split_chapters[chapter_file]...

To run this on Windows we only need to fix some of the requirements version 1. Install `python` and `git` 2. Open a console window 3. `git clone https://github.com/BasioMeusPuga/Lector` 4....

Because it is supported by PHP. https://www.php.net/manual/en/install.pecl.static.php In my case I want to compile a static php binary so that it can be deployed along the application. There is no...

The benefit of a static php binary is exactly that it does not depend on any shared library and can be just copied to and run in another machine. In...

It is not a simple script, there are several alpine linux packages that need to be rebuild and there are some extensions that need to be modified.

Another way is to use python to convert the `.clang-format` yaml into a single line ```viml let g:clang_format#detect_style_file = 1 let g:clang_format#enable_fallback_style = 0 func s:load_style() let ret = {}...

Also the `if` needs an `else` clause when the plugin already exists in `$this->classPath` ```php } else { if (isset($this->classPath[$class])) { include_once $this->classPath[$class]; } elseif (isset($this->classPath[$class . 'Compile'])) { include_once...

I think this is easier to digest ```php public function loadPlugin($class, $forceRehash = true) { /** * An unknown class was requested (maybe newly added) or the * include failed...

Since this is only a small change I would prefer to defer to someone else, thank you.