Philip Waritschlager

Results 359 comments of Philip Waritschlager

It is at least questionable that `"1,23".to_f` could ever succeed just based on the current user's locale, without explicitly asking for this, which is something the developer might never have...

on top of that, even `external_object.externalMethod()` gets changed to `external_object.external_method()` so it's basically not usable :/

Status code 403 means that the forum does not allow your request. You might need to set some cookies manually

I know the following does not belong into this issue, but in case this helps anyone: To get this crawler working with vBulletin 3.8.7, you need to adjust only three...

@Andrewprogramer > If you added the bash prompt to your .bashrc or .zshrc you can remove the lines that contain the contents seen in the Extras/DOSrc and Extras/ZSHDOSrc file.

Hello, you said you already did some brief testing, but just in case it's useful to you: I successfully built fsearch as an AppImage with a single command using [linuxdeploy](https://github.com/linuxdeploy/linuxdeploy/)...

no, they should indeed be truly self-contained. I had the impression that appimage-builder wrongly leaves out some dependencies if you haven't installed them but I have not tested it long...

Workaround is redeclaring it as PyQuery objects: for i in d.find('div'): print PyQuery(i).html()

Aha! Solvable by maintaining a separate `btn_refs = [] of Gtk::Button` and keeping a ref of all buttons in there (`btn_refs

I've now also learned it is important to call GC manually once after destroying windows: ```crystal window.destroy GC.collect window = nil ``` If I don't do this, the GC runs...