I hereby claim:
- I am x89 on github.
- I am naypam (https://keybase.io/naypam) on keybase.
- I have a public key whose fingerprint is EA02 1A29 D8AE 2D11 DE00 4B80 AB40 62F1 7ECF AA3A
To claim this, I am signing this object:
| require 'benchmark' | |
| require 'rubydns' | |
| domains = [ | |
| 'google.de', | |
| 'google.co.uk', | |
| 'google.com', | |
| 'google.jp', | |
| 'redd.it', |
| frequency_array = Array.new(8) | |
| frequency_array.fill(Hash.new) | |
| lines.each do |line| | |
| puts line.chars.join(' ') | |
| line.chars.each_with_index do |c,idx| | |
| hash = frequency_array[idx] | |
| if hash.include? c then | |
| hash[c] += 1 | |
| else |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # imgur script by Bart Nagel <[email protected]> | |
| # version 4 | |
| # I release this into the public domain. Do with it what you will. | |
| # Required: curl | |
| # | |
| # Optional: xsel or xclip for automatically putting the URLs on the X selection | |
| # for easy pasting |