Eugen Konkov
Eugen Konkov
в примере путь `current`, а в доке говориться про `waether` ``` /current: get: ... security: - some_other_key: [] Тогда путь weather будет использовать метод безопасности some_other_key, в то время как...
It would be nice to do vice versa: from given hash setup form values ```javascript $("form").setData({foo: {bar: "a", bof: "b"}, hello: "world"}); ``` which in turn will fill corresponding form...
May you please merge this: https://github.com/HetaLab/jquery-serialize-object/commit/0a1f564b5ea79ebb726763b91435c15bd43e6275 Thank you
Sometimes it is useful to see at bits not bytes
``` /etc/nginx/sites-available $ ls -l -rw-r--r-- 1 kes root 1503 Авг 30 13:12 geekbrains /etc/uwsgi/apps-available $ ls -l -rw-r--r-- 1 kes root 893 Авг 30 13:39 geekbrains ~/work/www/geekbrains/conf $ ls...
I have updated configuration to: ``` { "cmd": ["/usr/bin/diff", "-w", "-b", "$file1", "$file2"] } ``` But now nothing is happened, not error also Show errors in console when diff command...
The `local` slows down things to workaround the RT#115742 in commit:988647fee03a83644097173163e39de63f6f6be2 you can just do: ```diff -sub DB { +sub DB{ &myDB }; +sub myDB { ```
I have saw warning, but you could save context of -e file how to reproduce: ``` $ perl -d:Trepan -e 'print 1' -- main::(-e remapped -e:1 @0x1fe15f8) use Devel::Trepan; (trepanpl):...
I would like to do: ```perl my $list = [ key => 'value', k2 => 2, k3 => 3 ]; for my( $key, $value ) ( @$list ) { ......
**Description** Sometimes we write: ``` my @header = ( 'Past 30', 'Past 60', 'Past 90', 'Past 120', 'Total', 'Last Payment', 'Last Payment Amount', ); ``` For words we have perfect...