I hereby claim:
- I am ninoseki on github.
- I am ninoseki (https://keybase.io/ninoseki) on keybase.
- I have a public key whose fingerprint is 6721 C856 CC6B DAA7 69E6 17C1 DCB8 5CA3 AB29 48E8
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
name | expires_at | |
---|---|---|
aconet-cert | 2017-01-21 11:21:13 | |
apple | 2017-06-16 17:01:09 | |
bf-sirt | 2014-02-07 23:12:21 | |
btcertcc | 2013-11-15 19:49:28 | |
cert_nz | 2018-03-23 03:50:17 | |
cert-fr | 2017-10-05 12:52:07 | |
cert-in | 2012-09-01 05:15:17 | |
cert-se | 2018-01-31 09:21:33 | |
cfc | 2013-02-13 03:55:47 |
domain | ip | |
---|---|---|
google.com | 220.136.76.200 | |
youtube.com | 220.136.76.200 | |
facebook.com | 31.13.87.36 | |
baidu.com | 220.136.76.200 | |
wikipedia.org | 220.136.76.200 | |
reddit.com | 220.136.76.200 | |
yahoo.com | 220.136.76.200 | |
google.co.in | 220.136.76.200 | |
qq.com | 220.136.76.200 |
name | count | |
---|---|---|
United States | 82 | |
Japan | 30 | |
Germany | 28 | |
Spain | 19 | |
United Kingdom | 18 | |
Norway | 13 | |
France | 12 | |
Canada | 11 | |
Singapore | 11 |
require 'dotenv/load' | |
require 'mongoid' | |
Mongoid.load! File.expand_path("../mongoid.yml", __FILE__), :development | |
class Record | |
include Mongoid::Document | |
include Mongoid::Timestamps | |
field :ip, type: String |
2018年度(平成30年度)税制改正について.doc
5504e04083d6146a67cb0d671d8ad5885315062c9ee08a62e40e264c2d5eab91
Certutil.exe
to decode a payloadDecoded payload(AYRUNSC.EXE)
5af8de30b8c00d09be950e1c372ee94a1b416124151afcaf997ad41d7992cf71
url | stars | sitekey | has_disclaimer | |
---|---|---|---|---|
https://github.com/b3log/symphony | 2251 | bSiM5UP0bWeY98R39fQBb2nKiiofSxmU | yes | |
https://github.com/b3log/pipe | 266 | YCkOr1LUJtEODIR5fVIzM4S79Nc5jvN7 | yes | |
https://github.com/lee101/webfiddle | 0 | 6Pmr1JGjPBy0DiEr0iCNgiSQVHFiSN6P | no | |
https://github.com/ikr4185/nijiru-system | 0 | ovUHdxKQYmoqZOLns0qOY4v7kbmg5KIk | no | |
https://github.com/duantianyu/okjson | 0 | N/A | no | |
https://github.com/frigginglorious/frigginglorio.us | 0 | exN9MUJT735qbTYsRA6Jm1Mr3nQmP4yT | no | |
https://github.com/Tach-Yon/Tap-Tap-Adventure | 58 | exN9MUJT735qbTYsRA6Jm1Mr3nQmP4yT | no | |
https://github.com/Maronato/SpottedBot | 6 | VRt0VLErmTT5sXpt2tEg72qlELmUIJZu | no | |
https://github.com/Triangle-MX/Design-Guidelines | 0 | 0JbmzLVc6WZdcrOuFUuoMfLhvC5Di8S9 | no |
Ip | Domain | Coinhive Site Key | Number of the Same Key on the Web | Estimated Monthly Traffic | |
---|---|---|---|---|---|
106.160.38.97 | N/A | M9J43rdlJmuHTlpPA7nZyifziSdfiE4U | 1 | N/A | |
157.7.205.219 | upic.me | TP3bsUVgBJKildStENCTdVuxbnFtbnnV | 9 | N/A | |
160.16.73.224 | drarama.site | GDo9UcLSdprQklfxz3HmwzFMKHPPW2ut | 1 | N/A | |
160.16.60.183 | hash.sc | f3UBGhbRdzy2jBfNt9cgTzfzF667fVlk | 1 | N/A | |
124.146.220.181 | kobutu.com | PePtHlOp7LXUmV7q7w4IjEMHyxofE39k | 8 | N/A | |
61.206.41.204 | dc-b0457fdcca8e.nakoruru.info | 8qWOLcUbYNWrnijadqCbgCC378Vheehc | 1 | N/A | |
203.183.46.73 | selme-sokuteiki.net | 71xSStHOJ1je9jvklOc71QVNljKY6wV4 | 2 | N/A | |
150.95.154.111 | N/A | XkYJ85j2hnXlCLZKdkaY6Gj1VXMIlRr8 | 1 | N/A | |
133.242.229.199 | like-channel.info | Sf5xrZjAeFwZVjmkhfnlisq1rCOneQ3W | 1 | 101514 |
A team of experts is looking for newly disclosed vulnerabilities on a daily basis. After the analysis of the technical capabilities the issue is documented in the database.
-- via VulDB
という文章を読んで、日頃から感じている英語の冠詞に対する素朴な疑問が湧き上がってきた。
この文章の1目が
A team [...]
# http://codeforces.com/contest/711/problem/B | |
n = gets.chomp.to_i | |
rows = [].tap do |a| | |
n.times { a << gets.chomp.split.map(&:to_i) } | |
end | |
arr = rows.tap do |a| | |
# cols | |
(0...n).each { |i| a << (0...n).map { |j| rows[j][i] } } | |
# diagonal | |
a << (0...n).map { |i| rows[i][i] } |