Skip to content

Instantly share code, notes, and snippets.

View ishiDACo's full-sized avatar

ishiDACo ishiDACo

View GitHub Profile
@ishiDACo
ishiDACo / vulsrepo-tutorial.ja.md
Last active February 15, 2021 02:27
VulsRepo-tutorial-ja

VulsRepo の表示

ブラウザで以下 URL にアクセスします。 ブラウザで JavaScript の動作を無効にしている場合は、JavaScript を有効にしてください。

http://<server-address>:5111

表示対象データの選択

@ishiDACo
ishiDACo / run_robo3t_with_disable_auto_scale.sh
Last active May 7, 2020 07:06
Robo 3T 1.3 のスケーリングを無効にする on Ununtu 18.04 LTS
#!/bin/sh
QT_AUTO_SCREEN_SCALE_FACTOR=0 ./bin/robo3t
@ishiDACo
ishiDACo / gist:9d87aebe341755011e228319a614900c
Created February 20, 2020 09:40
distinct した要素数カウント
db.getCollection('scrape').aggregate([
{"$group" : {_id:"$hostname", count:{$sum:1}}},
{$sort: {count:-1}}
])