Skip to content

Instantly share code, notes, and snippets.

View ninoseki's full-sized avatar

Manabu Niseki ninoseki

View GitHub Profile

Keybase proof

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:

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
@ninoseki
ninoseki / dig.csv
Last active March 26, 2018 21:53
DNS(220.136.106[.]4) lookup results of Alexa top50
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
@ninoseki
ninoseki / first_teams.csv
Last active February 15, 2018 01:56
First teams stats on 2018/02/15
name count
United States 82
Japan 30
Germany 28
Spain 19
United Kingdom 18
Norway 13
France 12
Canada 11
Singapore 11
@ninoseki
ninoseki / mong-test.rb
Last active February 4, 2018 04:45
mongoid + TTL
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
@ninoseki
ninoseki / memo.md
Last active February 8, 2018 09:02
2018年度(平成30年度)税制改正について.doc

2018年度(平成30年度)税制改正について.doc

Imgur

Decoded payload(AYRUNSC.EXE)

@ninoseki
ninoseki / list.csv
Last active October 16, 2021 20:23
Coinhive built-in OSS (It is only a portion)
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
@ninoseki
ninoseki / coinhive-jp-stats.csv
Last active October 16, 2021 20:25
Coinhive JP stats
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
@ninoseki
ninoseki / question-about-english-articles.md
Last active April 14, 2017 03:53
英語の冠詞に関する疑問

英語の冠詞に関する疑問

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 [...]

@ninoseki
ninoseki / 369_div2_b.rb
Created August 31, 2016 01:02
Codeforces#369 Div2-B
# 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] }