[1000003038](https://hackmd.io/_uploads/Hki_zrtLp.jpg) ![1000003039](https://hackmd.io/_uploads/rkC-8wFU6.jpg) https://www.jianshu.com/p/b827c34dfaa6 • How are you involved in open source software? • Describe any significant contributions to open source (with links where possible) • What do you think are the key ingredients of a successful open source project? • Why you most want to work for Canonical? • Which other companies are building the sort of products you would like to work on? • Describe pros/cons of Ubuntu Core and Desktop • Describe areas for improvement in Ubuntu Core and Desktop • What do you think Canonical needs to improve in its engineering and products? • What do you think is the biggest opportunity for Canonical? • Who do you think are key competitors to Canonical? How do you think Canonical should plan to win that race? !!https://docs.google.com/document/d/1047kaEFMj85AEM92Pt0Q_jUQXptmqGTu/edit?usp=sharing&ouid=104531293175671272245&rtpof=true&sd=true ############################# - 244 Manfrotto 通用 P200 雲台快拆板 600 - 073B PU360 雙雲台快裝板 多孔位雙機座 1280 - Godox 神牛 VK1-UC 手機錄影兔籠套裝 4600s - 台北市內湖區成功路二段486巷7號 - 3.5 mm to 3.5 mm male adapter - 二母轉一公 - ME 2 888 ### remote controller ``` basic.show_number(0) radio.set_group(20) def on_forever(): if input.acceleration(Dimension.X) > 300: radio.send_string("01") basic.show_leds(""" . . # . . . . . # . # # # # # . . . # . . . # . . """) elif input.acceleration(Dimension.X) < -300: radio.send_string("10") basic.show_leds(""" . . # . . . # . . . # # # # # . # . . . . . # . . """) elif input.acceleration(Dimension.Y) > 300: radio.send_string("00") basic.show_leds(""" . . # . . . . # . . # . # . # . # # # . . . # . . """) elif input.acceleration(Dimension.Y) < -300: radio.send_string("11") basic.show_leds(""" . . # . . . # # # . # . # . # . . # . . . . # . . """) elif input.button_is_pressed(Button.A): radio.send_string("A") basic.show_string("A") elif input.button_is_pressed(Button.B): radio.send_string("B") basic.show_string("B") elif input.button_is_pressed(Button.AB): radio.send_string("AB") basic.show_string("AB") else: basic.clear_screen() basic.forever(on_forever) ``` ### car ``` def controlMoto(text: str): if text == "L": maqueen.motor_run(maqueen.Motors.M1, maqueen.Dir.CW, 0) maqueen.motor_run(maqueen.Motors.M2, maqueen.Dir.CW, 50) elif text == "R": maqueen.motor_run(maqueen.Motors.M1, maqueen.Dir.CW, 50) maqueen.motor_run(maqueen.Motors.M2, maqueen.Dir.CW, 0) elif text == "F": maqueen.motor_run(maqueen.Motors.ALL, maqueen.Dir.CW, 50) elif text == "D": maqueen.motor_run(maqueen.Motors.ALL, maqueen.Dir.CCW, 50) elif text == "A": maqueen.motor_run(maqueen.Motors.ALL, maqueen.Dir.CW, 90) elif text == "B": maqueen.motor_run(maqueen.Motors.ALL, maqueen.Dir.CCW, 90) elif text == "AB": maqueen.motor_stop(maqueen.Motors.ALL) else: pass def on_received_string(receivedString): global recvData recvData = receivedString if recvData == "00": controlMoto("D") basic.show_arrow(ArrowNames.SOUTH) elif recvData == "01": controlMoto("R") basic.show_arrow(ArrowNames.EAST) elif recvData == "10": basic.show_arrow(ArrowNames.WEST) controlMoto("L") elif recvData == "11": basic.show_arrow(ArrowNames.NORTH) controlMoto("F") elif recvData == "A": basic.show_string("A") controlMoto("A") elif recvData == "B": basic.show_string("B") controlMoto("B") elif recvData == "AB": basic.show_string("AB") controlMoto("AB") else: basic.clear_screen() radio.on_received_string(on_received_string) recvData = "" radio.set_group(20) basic.show_arrow(ArrowNames.SOUTH_WEST) def on_forever(): pass basic.forever(on_forever) ``` ##### D5 :::info - ISO 2000-1 - ITILv4 ::: - ISO/IEC 20000-1 側重於業務能力管理、服務能力管理和組件能力管理。 - 凱瑟琳應該尋找安全信息和事件管理 (SIEM) 工具。它們習慣於集中日誌收集、分析和檢測功能,並且通常具有發現問題和發出警報的自動化方法。IPS(入侵防禦系統)用於檢測和阻止攻擊,CASB(雲應用程序安全代理)用於控制和管理對雲服務的訪問,而 MITRE 是美國政府資助的研究機構,重點關注安全性工作。 - Yarif 正在運行 Type 2 管理程序,它被定義為在操作系統之上運行的管理程序,而不是像 Type 1 管理程序那樣在裸機上運行。經典和高級管理程序不是常用術語。 - CI(配置項)是作為配置管理工作的一部分進行管理的組件或服務。配置模型用於評估事件的變化和原因。配置記錄是描述配置項關係和設置的記錄。服務資產包括一系列允許組織提供服務的東西,包括第三方供應商服務 - configuration items - 缺少的第四項應該是協議簽署和服務激活,包括服務級別協議和服務驗收標準。定價不是 ITIL v4 服務管理流程的一部分。 - Azure 的最佳實踐建議為 VM 的操作系統和數據磁盤創建磁盤快照,安全地存儲快照,然後比較圖像和原始圖像之間的哈希值。將快照的哈希值與副本進行比較不會根據原始快照對其進行驗證,VM 無法導出為哈希值,並且磁盤映像未以對此類取證用途有意義的方式進行簽名。如果您想閱讀完整的實踐文檔以了解更多詳細信息,可以在https://docs.microsoft.com/en-us/azure/architecture/example-scenario/forensics找到它。 - 發布和部署計劃側重於創建和部署發布。生命週期管理在 ISO 標準的其他部分處理,而不在 RDM 計劃內處理。 - 風險無法完全避免,但可以大大降低。在為雲數據中心設計冗餘時,硬件冗餘、本地共享和平衡以及故障模式設計都是常見的做法。 - Megan 是一名流程負責人,負責持續改進服務以達到目的。持續服務改進經理(CSI 經理)改進 ITSM 流程和服務。流程架構師確保流程協同工作並有效地相互支持,以及客戶消費或購買服務。 - 由於 IaaS 為客戶提供對某些網絡的訪問和控制,他們必須對基於網絡的風險負責。IaaS 提供商提供服務和基礎設施,因此也必須承擔一些基於網絡的風險。第三方事件響應者在此模型中不承擔風險責任。 - 管理系統控制著整個虛擬環境,因此非常有價值,需要得到相應的保護。如果可能,最好在物理上和虛擬上隔離這些管理系統。 ------------------ https://gist.github.com/jiachengx/2b2d09fdc196507b2c64cc56ce682b4f https://chat.openai.com/chat/18d9d7c7-ead7-499f-bf04-5bc9758f7715 -------------------------- https://hackmd.io/@jiachengx/H19eGqHCs ``` netsh interface add vlan name="VLAN25" interface=<adapter name> id=25 ``` [bvms vrm iscsi with powershell_script](https://community.boschsecurity.com/t5/Security-Video/How-to-configure-Microsoft-Windows-Server-as-iSCSI-target-for/ta-p/1130) https://time.com/6247678/openai-chatgpt-kenya-workers/ https://chat.openai.com/chat https://sites.google.com/site/104103oitt/4-%E7%84%A1%E7%B7%9A%E7%B6%B2%E8%B7%AF%E6%94%BB%E6%93%8A/4-5-%E6%BC%8F%E6%B4%9E%E5%88%A9%E7%94%A8armitage --------- https://eservice.aten.com/eSupport/Common/caseView.do?requestNo=K220807096-013&email=cchhsu.hsu@gmail.com&ssid=Dd428b313f4fF686A4A5B5Cd7dC34a50&linkId=viewCase_eSupport_viewCase&lang=zh_TW https://endurable-wolfsbane-017.notion.site/CISSP-Exam-Outline-75615a6a7a0f445881612ad8aae9665f https://www.796t.com/content/1549407262.html https://securitycamcenter.com/vlc-rtsp-video-stream-security-cameras/ https://drive.google.com/file/d/1URijsmq107Vb_JZBGRNS7zPzjDQOXa8e/view?usp=sharing https://drive.google.com/file/d/1Rffg80qkn6ZHoXOxuqb744aEIt9Tpyti/view?usp=sharing https://drive.google.com/file/d/1Rffg80qkn6ZHoXOxuqb744aEIt9Tpyti/view?usp=sharing https://4kmedia.org/sony-beautiful-sea-in-okinawa-uhd-4k-demo/ http://www.happytimesoft.com/products/multi-onvif-server/index.html ffmpeg -re -stream_loop -1 -i sample.mp4 -c copy -f flv rtmp://ip:port/live/1234 mNnFaCvPIxsNLG+vnrAIVAv0am90yGoBmZYtuWvUN+f3XKiL+PJQ+snAk0875S1Kk1xrJdgiC8hfdzA/vj2fRIN0tCWsM16ZOOw3JLUvfaVxDNFO2sxjdzH4sLCmDhV7 -- QOTD網頁版: https://qotd.wentzwu.com/ => 不會上傳成績到server. 因此請拿來作蕃茄鐘練習即可. https://onedrive.live.com/redir?resid=FC00DDD77DFACD45%21126&authkey=%21AtPxByqcRyRm6bE&page=View&wd=target%28Domain3.one%7C2c39dec9-628f-44a3-acaa-6cc7c67fb59c%2F%E6%91%98%E8%A6%81%7Cd45fa0dd-724f-4a00-b34a-80856961113b%2F%29&wdorigin=NavigationUrl