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
| ''' | |
| log show --style syslog \ | |
| --start "2018-12-26 18:00:00" \ | |
| --predicate 'process == "loginwindow"' \ | |
| | grep 'unlock' | |
| ''' | |
| import os | |
| import time | |
| import datetime |
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 random | |
| import asyncio | |
| class PDCACycle: | |
| def __init__(self): | |
| self.bad_mood = 0 | |
| self.interval = 1 | |
| async def plan(self, name): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| # coding: utf-8 | |
| # | |
| # 台灣 OSM 圖資自動更新程式,會自動檢查更新,有更新時下載,並且匯入到 PostGIS | |
| # | |
| # 系統需求: | |
| # * wget | |
| # * osm2pgsql 並且內含 PBF 圖資格式支援 | |
| # | |
| # 測試環境: | |
| # * Ubuntu 14.04.1 LTS |
NewerOlder