Andrew Aladjev

Results 62 comments of Andrew Aladjev

proxychains aria2c --bt-max-peers=1 file.torrent Proxy chain for example: ``` socks4 127.0.0.1 9050 http 212.80.30.2 8080 ``` It works fine and it is secure (incoming port should be closed)

@renne proxychains has it's own workaround for any chain: "proxy_dns" option. But anyway socks5 is good tone. Thank you.

> @renne TOR warn us to not use it for bittorrent. Yes, that's why we need to use `--bt-max-peers=1`, it will works like regular secure download.

Hello, you can also use `differenceInWeeks` between current date and `startOfMonth`.

+1 The same for jruby-9.1.6.0

[Here](https://github.com/jruby/jruby-openssl/commit/c8df05a0792f314990333d7d9047894f983d3f86) we have a commit that provides a `TODO JNR`. We need to ask @kares. What will be the proper way to implement this todo?

diff --git a/neo/CMakeLists.txt b/neo/CMakeLists.txt index e37cb81..ba25a6a 100644 --- a/neo/CMakeLists.txt +++ b/neo/CMakeLists.txt @@ -59,6 +59,10 @@ FIND_PACKAGE (CURL REQUIRED) FIND_PACKAGE (JPEG REQUIRED) INCLUDE_DIRECTORIES (${JPEG_INCLUDE_DIR}) +#alsa sound +FIND_PACKAGE (ASOUND REQUIRED) +INCLUDE_DIRECTORIES (${ASOUND_INCLUDE_DIR})...

it looks bad: i cant attach a patch to issue. okey I would fork it now

see. I've created a pull request. it is more readable

We can make abortable worker without any problems. ```ruby require "concurrent" Concurrent::RubyThreadPoolExecutor.module_eval do def ns_abort_execution aborted_worker @pool.delete aborted_worker ns_kill_execution end def abort_worker worker synchronize { ns_abort_execution worker } end class...