Skip to content

Instantly share code, notes, and snippets.

View peter279k's full-sized avatar
🎯
Focusing

Chun-Sheng, Li peter279k

🎯
Focusing
View GitHub Profile
@peter279k
peter279k / aks-hands-on-lab.md
Last active September 26, 2020 05:42
This is the AKS hands-on-lab on K8s Summit 2020

容器化技術

  • 作業系統層級虛擬化
  • 透過Docker Engine
  • 可以專注在開發應用程式,不用太注意與操作虛擬化相關的操作技術

Docker image 映像檔

  • Docker Engine
  • Docker image
@peter279k
peter279k / IEC-61850_62351.md
Last active May 22, 2021 09:02
基於IEC 61850及IEC 62351之微電網保護的通訊及資安應用與測試

References

@peter279k
peter279k / nctu-hacking-courses.md
Last active November 6, 2020 15:44
This is the NCTU hacking course lists

Interesting Training

- https://hackercollege.nctu.edu.tw/?p=1214 (A011:入侵行為發覺與應變指南– 亥客書院) 10/17 週六 09:30-16:30

聯絡人:

  • 張芷齡
  • 國立交通大學資通安全研究與教學中心《亥客書院》
  • 電話 : 03-5712121 分機 : 54750

Sessions

11:20 Track E TICC 101C

用 Serverless 真的方便又省錢?

12:00 Track E TICC 101C

OpenStack 私有雲大規模佈署與維運之實務經驗技術分享

13:30 Track E TICC 102

容器化微服務應用於企業整合架構之發展

@peter279k
peter279k / import_ca_cert_ubuntu.sh
Last active October 19, 2020 09:35
This is importing certificate in Ubuntu 18.04 & 16.04
#!/bin/bash
# Reference: https://askubuntu.com/questions/73287/how-do-i-install-a-root-certificate
sudo_prefix=""
if [[ ${USER} != 'root' ]]; then
sudo_prefix="sudo "
fi;
<?php
require_once './vendor/autoload.php';
use GuzzleHttp\Client;
$voteUrl = 'https://udn.com/func/vote/?act_code=v855';
$client = new Client(['cookies' => true,
'proxy' => ['http://85.173.165.36:46330'],