Categories
- FFMpeg (5)
- Libav (1)
- Google (3)
- iBeacon (1)
- LDAP (3)
- Me (2)
- Network (11)
- OS (149)
- RTMP (4)
- SIP (1)
- Kamailio (1)
- SNMP (1)
- VMware (20)
- VCP考試 (1)
- 伺服器 網站服務 (105)
- 名詞解釋 (4)
- 專案管理 (1)
- 工具軟體 (51)
- Adobe (1)
- FMS (1)
- Cloudera (1)
- Docker (1)
- Eclipse (4)
- Intellij (2)
- OBS (2)
- Office (10)
- Excel (4)
- PowerPoint (5)
- Postman (2)
- Splunk (13)
- Virtualbox (2)
- Visual Studio (2)
- 文字編輯器 (10)
- Sublime Text 2 (6)
- Sublime Text 3 (3)
- Vim (3)
- 連線工具 (1)
- Xshell (1)
- Adobe (1)
- 程式語言 (80)
- CSS (2)
- HTML (2)
- iOS (1)
- Java (30)
- JavaScript (5)
- jQuery (4)
- jsTree (2)
- JSP (3)
- PHP (16)
- Python (8)
- Ruby (1)
- sed (1)
- Shell Script (8)
- Windows Bash Script (1)
- XML (1)
- 資料庫 (37)
- FFMpeg (5)
Category Archives: 程式語言
[Python] Produces a circular image of 001-100
import matplotlib.pyplot as plt import numpy as np def draw_circle_with_number(number, filename): fig, ax = plt.subplots(figsize=(5, 5)) ax.set_xlim(0, 1) ax.set_ylim(0, 1) # draw circular circle = plt.Circle((0.5, 0.5), 0.4, color=’blue’, fill=False, linewidth=4) ax.add_artist(circle) # add text ax.text(0.5, 0.5, f'{number:03}’, color=’black’, fontsize=90, … Continue reading
Posted in Python
Comments Off on [Python] Produces a circular image of 001-100
CSS: Center text (horizontally and vertically)
404 Error Page 404 此活動不存在 Ref.: iThome: 29. CSS 水平置中/ 垂直置中的方法
Delete snapshots older than 7 days
To avoid running out of disk space in our test environment, we developed a plan to regularly execute shell scripts to clean up unnecessary snapshots. #!/bin/bash week=`date –date=’7 days ago’ +’%Y%m%d’` echo “list_snapshots” | /home/webuser/hbase-1.2.9/bin/hbase shell | grep “pattern ” … Continue reading
Posted in HBase, Shell Script
Comments Off on Delete snapshots older than 7 days
HBase Client 2.5.5 in JDK 11
Because of the vulnerability scan results of the project, the JDK version must be upgraded from 8 to 11 to complete the repair. The original HBase Client version 1.2 we used was incompatible with JDK 11, so we had to … Continue reading
AES decrypt in postman
sample code: var CryptoJS = require(“crypto-js”); let secretKey = ‘yourSecretKey’; function decrypt(aesStr, key) { return CryptoJS.AES.decrypt( aesStr, CryptoJS.enc.Utf8.parse(padding(key)), { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 } ).toString(CryptoJS.enc.Utf8) } function padding(key) { return key.padEnd(32, ‘\0’); } //decrypt(“encryptedData”, secretKey) Here we choose AES-256 to … Continue reading
Posted in JavaScript, Postman
Comments Off on AES decrypt in postman
[Java] Create CSV files with BOM
public static final String UTF8_BOM = “\uFEFF”; public ByteArrayInputStream createFile(Object object) { try { CSV csv = (CSV) object; StringBuffer sb = new StringBuffer(); sb.append(UTF8_BOM); if (csv.getHeaderList() != null) { sb.append(StringUtils.join(csv.getHeaderList().toArray(new String[0]), “,”)).append(“\n”); } for (List<String> row : csv.getDataList()) { … Continue reading
Posted in Java
Comments Off on [Java] Create CSV files with BOM
[Java] Google authenticator
Reference: 1. Greddy’s Blogs: Google Authenticator實作 2. 菜鳥工程師 肉豬: Spring Boot 使用Google身分驗證器做TOTP驗證 Google Authenticator TOTP auth
[Java] Download file without saving
Source: CSDN: InputStream类available和read方法可能读取不到完整的流数据 stackoverflow: How to read a http file inmemory without saving on local drive? private static InputStream download(String sourceURL) throws Exception { InputStream inputStream = new URL(sourceURL).openStream(); ByteArrayOutputStream output = new ByteArrayOutputStream(); byte[] buffer = new byte[4096]; int … Continue reading
Posted in Java
Comments Off on [Java] Download file without saving
[Java] String with number format
Reference public static void main(String[] args) throws Exception { String number = “1000500000”; double amount = Double.parseDouble(number); DecimalFormat intFormatter = new DecimalFormat(“#,###”); DecimalFormat floatFormatter = new DecimalFormat(“#,###.00”); System.out.println(“==int==”); System.out.println(intFormatter.format(amount)); System.out.println(String.format(“%,d”, Integer.parseInt((number)))); System.out.println(number.replaceAll(“(\\d)(?=(\\d{3})+$)”, “$1,”)); System.out.println(“==float==”); System.out.println(floatFormatter.format(amount)); System.out.println(String.format(“%,.2f”, Float.parseFloat((number)))); } ==int== 1,000,500,000 … Continue reading
Posted in Java
Comments Off on [Java] String with number format
[Java] Mask some part of String
Reference: [stackoverflow] Mask some part of String return String.replaceAll(“\\b(\\d{3})\\d+(\\d{3})”, “$1****$2”); # 1234567890 => 123****890
Posted in Java
Comments Off on [Java] Mask some part of String