I hereby claim:
- I am mnordin on github.
- I am mnordin (https://keybase.io/mnordin) on keybase.
- I have a public key ASBScGzomIqHlk1njYf-_zxKecFvsE0ELKAuLTswuU324wo
To claim this, I am signing this object:
| require "singleton" | |
| # Thread-safe rate limiter that caps how many threads can execute concurrently. | |
| # Works like ActiveRecord::ConnectionPool — a max size, a counter, and threads | |
| # waiting for an available slot when the pool is full. | |
| class RateLimiter | |
| DEFAULT_MAX_CONCURRENT = 10 | |
| include Singleton |
| # install ripgrep (optional, but way faster) | |
| brew install ripgrep | |
| # Use grep f you do not have ripgrep. This will take some time. | |
| cd / && sudo grep -nr '_0x124ed3' 2>&1 | grep -v "Operation not permitted" | |
| # You will get a bunch of permission errors, these are expected | |
| # Filter them out by |grep -v "Operation not permitted" | |
| # Check for keyword match for the malware in all js files on your computer |
| { | |
| "languages": { | |
| "Ruby": { | |
| "language_servers": ["ruby-lsp"], | |
| "formatter": "language_server" | |
| } | |
| }, | |
| "lsp": { | |
| "ruby-lsp": { | |
| "binary": { |
I hereby claim:
To claim this, I am signing this object:
| foo.example.com | |
| bar.example.com | |
| baz.example.com |
| require 'cgi' | |
| require 'open-uri' | |
| require 'json' | |
| if ARGV[0].to_s.start_with?("#") | |
| tag = CGI.escape(ARGV[0].to_s).sub(/\A%23/, "") | |
| else | |
| username = ARGV[0] | |
| end |
| <%= form_for @user, :'data-ajax' => "false" do |f| %> | |
| <!-- form body --> | |
| <%= f.submit "Save", :'data-theme' => "b" %> |