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
#!/bin/bash | |
# --- 預設設定 --- | |
INPUT_FILE="IP_table.txt" | |
BMC_IP_COLUMN=3 | |
NAME_COLUMN=1 | |
REFRESH_INTERVAL=3 | |
# --- 函數定義 --- | |
# 顯示使用說明 |
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
#!/bin/bash | |
# --- 設定區 --- | |
# (其他設定保持不變) | |
INPUT_FILE="IP_table.txt" | |
IP_COLUMN=2 | |
PASSWORD='你的遠端密碼' | |
REMOTE_USER="root" | |
# 遠端指令可以保持原樣,因為 -f 會處理背景化 | |
REMOTE_COMMAND="pkill -f ptat; nohup ./ptat -ct 4 -mt 3 -id > ptat.log 2>&1 &" # 這裡的 & 可有可無,因為-f會處理 |
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
#!/bin/bash | |
# --- 設定區 --- | |
# 要讀取的檔案名稱 | |
INPUT_FILE="IP_table.txt" | |
# 要使用的 IP 位在第幾個欄位 (column) | |
IP_COLUMN=2 | |
# 要傳送的本地檔案名稱 | |
SOURCE_FILE="stress_cpu.sh" |
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
import diff_match_patch | |
import re | |
from pathlib import Path | |
from typing import List, Tuple | |
# --- Configuration Variables (Text Colors) --- | |
TEXT1_DELETION_COLOR = "#ff0000" # Red | |
TEXT2_INSERTION_COLOR = "#008000" # Green | |
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
/* Firefox 72.0 */ | |
/* You need to modify about:config, set the option toolkit.legacyUserProfileCustomizations.stylesheets to True.*/ | |
/*@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); set default namespace to XUL */ | |
/* https://www.reddit.com/r/FirefoxCSS/comments/elczdc/correctly_hide_url_bar_in_firefox_720_using/fdiwmv7/?utm_source=share&utm_medium=web2x */ | |
#navigator-toolbox {z-index: 1;} | |
.tab-content[selected="true"] { | |
background: rgba(65, 85, 145, 0.4) !important; |
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
/* Firefox 70.0.1 */ | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ | |
/* | |
#TabsToolbar { | |
visibility: collapse !important; | |
} | |
#titlebar-buttonbox{height: var(--tab-min-height) !important;} | |
#titlebar{ margin-bottom: calc(-2px - var(--tab-min-height) ) !important;} | |
*/ |
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
#!/usr/bin/python | |
# -*- coding:utf-8 -*- | |
""" | |
Compare MultiProcessing and Normal Way | |
Case:crawl 84 images in 81 plurk posts | |
(sec) | |
MultiProcessing : |
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
#!/usr/bin/python | |
# -*- coding:utf-8 -*- | |
# API: https://github.com/clsung/plurk-oauth | |
# You can retrieve your app keys via the test tool at http://www.plurk.com/PlurkApp/ | |
CONSUMER_KEY = '' | |
CONSUMER_SECRET = '' | |
ACCESS_TOKEN = '' | |
ACCESS_TOKEN_SECRET = '' |
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
// if use global variable, it will call create() three times. | |
var sheetID = create() // 84行 | |
/* 目前做到的是:利用create()新增一個Google試算表,並取得sheetID | |
* 因為我有3個Function(爬流量,重置已發訊息量,刪除特定Trigger)會使用到sheetID | |
* 但是執行主程式Start()後, | |
* 會產生多個sheets | |
* 是因為sheetID是global variable,所以create()就call了3次(?) | |
* 請問有什麼方法可以存下sheetID,並給其他function使用? | |
*/ |
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
// reference:https://stackoverflow.com/questions/21621019/google-apps-script-login-to-website-with-http-request, https://gist.github.com/erajanraja24/02279e405e28311f220f557156363d7b | |
// Need to insert a library(Resources -> Library):M1lugvAXKKtUxn_vdAG9JZleS6DrsjUUV | |
var student_id = '帳號'; | |
var password = '密碼'; | |
var limitedDataflow = 0; // 當達到多少流量時,發出LINE的通知 | |
var LineNotifyToken = "你的LINE Notify Token" | |
function lineNotify(token, msg){ | |
url = "https://notify-api.line.me/api/notify" | |
headers = { |
NewerOlder