์ฝ๋ ์์ ๋ชจ์
๐ฏ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// paste into Google Chrome DevTools | |
function simulateMouseClick(targetNode) { | |
function triggerMouseEvent(targetNode, eventType) { | |
var clickEvent = document.createEvent('MouseEvents'); | |
clickEvent.initEvent(eventType, true, true); | |
targetNode.dispatchEvent(clickEvent); | |
} | |
["mouseover", "mousedown", "mouseup", "click"].forEach(function(eventType) { | |
triggerMouseEvent(targetNode, eventType); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iptables -P INPUT ACCEPT | |
iptables -P FORWARD ACCEPT | |
iptables -P OUTPUT ACCEPT | |
iptables -t nat -F | |
iptables -t mangle -F | |
iptables -F | |
iptables -X | |
ip6tables -P INPUT ACCEPT | |
ip6tables -P FORWARD ACCEPT | |
ip6tables -P OUTPUT ACCEPT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DIST=$( | |
. /etc/os-release | |
echo $ID | |
) | |
if [[ $DIST == "ubuntu" ]]; then | |
VERSION=$(lsb_release -r | awk '{print $2}' | awk -F . '{print $1$2}') | |
apt install prometheus-node-exporter -y | |
systemctl --now enable prometheus-node-exporter | |
systemctl --now start prometheus-node-exporter |
Graph Processing Platforms ๋ ผ๋ฌธ ๋ชจ์
- Graph Processing: A Panoramic View and Some Open Problems
- 2019๋ VLDB ํค๋ ธํธ ๋ฐํ, Tamer Ozsu ๊ต์
- Graph DBMS์ Graph (Analytics) system ์ ์ญ์ฌ์ ๋ํด ์ ๋ฆฌ
- Programming model ๋ฐ computation model ๊ด์ ์์ graph system์ ๋ถ๋ฅ
- Dynamic ๋ฐ streaming graph ์ ์ ์์ ์ฒ๋ฆฌ์ ๋ํด์ ์ค๋ช
- Machine: IBM AC922
- SSD: Samsung PM1725a NVMe PCIe SSD (6.4TB), Firmware version:
MN12MN12
- OS: Ubuntu 18.04 ppc64le
- You should work on "18.04" (kernel version = 4.x)
- Do not use "20.04" or "18.04 HWE" (kernel version >= 5.x)