Eugen Konkov
Eugen Konkov
Occasionally posting links to those pr/issue you already message them Sorry, I have not maintain privilege to do that. If those authors ourselves close their pr/issue then this one will...
put into todo ralated to project. (project base direcotory/list.todo) or short cut to put link to current position into clipboard
I think we can control subdirectories with some sort of option: `-r`. like `rm -r` etc commands have
>directories with .git folder inside the `.git` directory maybe added to exclude list by default. (maybe it will be better to exclude any hidden file `.*`)
> Maybe it's just a documentation issue Maybe just shortcuts. For example: rmate folder/*.php will translate into: find folder -maxdepth 1 -name "*.php" -print0 | xargs -0 rmate
My task were to send and receive data in custom format. After receiving data it should be in json format. JSON because it is native to javascript object and easy...
Documentation also does not cover [this case](https://stackoverflow.com/q/55550293/4632019): $.ajax( url, { accepts: { dload: 'application/x-dload' }, contents: { dload: /dload/ }, converters: { "text dload": jQuery.parseJSON, "xml dload": convert_xml_to_dload, "html dload":...
oh, I was wrong. jQuery just get first defined key and call its convertor: Here always `json dload` converter will be called: accepts: { dload: 'application/x-dload' }, contents: { dload:...
the url is visible on screenshot. here is it: https://habrahabr.ru/company/mailru/blog/343288/
If I remember right you can track mouse-click events on disabled elements. You should just subscribe to the whole page. Then you can analize `target` property to distinguish actions over...