HTTPS網站的憑證發行者,通常都是顯示該憑證的發行商,
但在某些網站查看憑證資訊時,發行者會變成Kapersky,在功能上沒影響,但不知為何會如此。
查了一下才發現,如果防毒軟體有啟用HTTPS的掃描檢查,防毒軟體就會安裝自己的憑證,以便檢查HTTPS傳輸。
如果把這個HTTPS加密傳輸的檢查關了,就不會有憑證發行者被換掉的狀況了。
卡巴斯基企業版的端點防護(KES)HTTPS加密傳輸掃描設定,是在一般設定中的網路設定裡,可以做啟用或關閉。
HTTPS網站的憑證發行者,通常都是顯示該憑證的發行商,
但在某些網站查看憑證資訊時,發行者會變成Kapersky,在功能上沒影響,但不知為何會如此。
查了一下才發現,如果防毒軟體有啟用HTTPS的掃描檢查,防毒軟體就會安裝自己的憑證,以便檢查HTTPS傳輸。
如果把這個HTTPS加密傳輸的檢查關了,就不會有憑證發行者被換掉的狀況了。
卡巴斯基企業版的端點防護(KES)HTTPS加密傳輸掃描設定,是在一般設定中的網路設定裡,可以做啟用或關閉。
現在選擇權代號通常會有當週,下週,跟月選3個合約,如果現在是第一週,就是有TX1,TX2,TXO,三個。只有第三週是2個(TXO跟TX4)。
目前的python語法裡TX是寫死的,每周要自己手動改,有點煩,所以就想了一個動判斷的語法,來抓今天是該是TX幾。
主要就是判斷連續兩週的合約有沒有值,如果都有的話,那TX就是比較小的那個。
像是TX1跟TX2都有值,那今天就會是TX1。
第三週因為是抓TXO跟TX4,但第四週也會有TXO跟TX4,所以這一個判斷要放在最後面才行,不然第四週會被先判斷成是TXO。
#抓當週的週選的TX代號
if api.Contracts.Options['TX1'] != None and api.Contracts.Options['TX2'] != None:
TX = 'TX1'
print(api.Contracts.Options[TX])
elif api.Contracts.Options['TX2'] != None and api.Contracts.Options['TXO'] != None:
TX = 'TX2'
print(api.Contracts.Options[TX])
elif api.Contracts.Options['TX4'] != None and api.Contracts.Options['TX1'] != None:
TX = 'TX4'
print(api.Contracts.Options[TX])
elif api.Contracts.Options['TX4'] != None and api.Contracts.Options['TX5'] != None:
TX = 'TX4'
print(api.Contracts.Options[TX])
elif api.Contracts.Options['TX5'] != None and api.Contracts.Options['TX1'] != None:
TX = 'TX5'
print(api.Contracts.Options[TX])
elif api.Contracts.Options['TXO'] != None and api.Contracts.Options['TX4'] != None:
TX = 'TXO'
print(api.Contracts.Options[TX])
在win2019透過freefilesync要把遠端win2003的檔案同步過來本機的時後,有些資料夾都會出現錯誤,內容都是在本機端的資料夾中 sync.ffs_lock有錯誤, code error 5: Access refuse [create file]。
照字面上的意思應該就是同步的過程程式要產生一個sync檔,但無法建立。
可是我在本機端自己建立檔案時,都沒什麼異狀,就覺得很怪。
後來就手動用複製貼上檔案的方式,發現有時後會跳出錯誤訊息,大概就是說沒有權限,要用系統管理者執行之類的,可是我就是用本機管理者帳號在執行啊。
這時突然想到,那執行freefilesync時,要用系統管理者身份去執行,有三四個在同步會跳錯誤的資料夾,就通通都沒問題了。
When using FreeFileSync on Windows Server 2019 to sync files from a remote Windows Server 2003 to the local machine, some folders encounter errors. The error message states that there is an issue with the "sync.ffs_lock" file in the local folder, with error code 5: Access refused [create file].
According to the literal meaning of the error, it seems that the sync process is unable to create the "sync" file.
However, I noticed that there were no issues when manually creating files on the local machine, which struck me as odd.
Later, while manually copying and pasting files, I encountered occasional error messages indicating a lack of permission and suggesting the need for administrator privileges. However, I was already using the local administrator account to perform the operation.
At this point, it occurred to me that when running FreeFileSync, it should be executed with administrator privileges. When I ran the program as an administrator, the folders that were previously causing errors during synchronization, about three or four of them, synced without any problems.
在用pyinstaller把一個py檔要轉成exe執行檔時,出現下列錯誤
The 'pathlib' package is an obsolete backport of a standard library package and is incompatible with PyInstaller. Please remove this package (located in C:\Users\helloeveryone\Anaconda3\lib\site-packages) using conda remove then try again.
這時就執行 pip uninstall pathlib ,把pathlib移除就好,移除後不需要再重裝一次。
之後執行pyinstaller,就可以成功把py轉成exe了。
When using PyInstaller to convert a .py file into an executable (.exe) file, the following error occurs:
"The 'pathlib' package is an obsolete backport of a standard library package and is incompatible with PyInstaller. Please remove this package (located in C:\Users\helloeveryone\Anaconda3\lib\site-packages) using conda remove then try again."
To resolve this, execute "pip uninstall pathlib" to remove the pathlib package. After removing it, there is no need to reinstall it.
Afterward, running PyInstaller should successfully convert the .py file into an .exe file.
Shioaji 在撈Kbar資料時,可以指定開始跟結束的"日期",然後就產出這段時間的一分k資料 。
假如是撈期貨的資料,就會把日盤跟夜盤的kbar全部列出來。
本來都有設定autoit做收盤前的自動平倉單功能。
昨天並沒開倉下單,所以就算執行了自動平倉也不會生效。
但晚上就發現居然有庫存,autoit的自動平倉居然變成開倉雙買了。
然後還賺了一點錢,好佳在,如果是雙賣就虧慘了。
然後仔細檢查了一下autoit裡面的程式,發現下單的下拉選單(開倉,停損,停利,自動)這個鈕的按鈕參數,在完全沒下過單跟有先下過單(任個一種單因)的狀況下,是不相同的。TR<>裡面那串數字會變動。
ControlCommand("e-Leader - [[6508]多次IOC :(0) TR<540001>]","","ComboBox8","SelectString",'平倉停損')
實在太奇怪了,所以如果沒下單,要把視窗關了,不然到時就會變自動開倉下單了。
選擇權下單跟股票或期貨不一樣,沒有當沖這個功能可以選,讓單子可以在收盤自動平倉。
如果想要實現在這功能,就需要搭配autoit這個軟體來實現。
現在就是使用永豐的e-leader裡的組合單操作
1. 假設已手動下好多次IOC的組合單,而且成交了,這時後畫面就會停在原本下單的條件。
如果想查詢近期DHCP server 的IP發送給哪一台主機,可以用下列方式查詢。
先開啟DHCP的管理工具,在server名稱按下滑鼠右鍵,選擇內容。
透過chrome登入某些網站後,都會產生cookie,下次在登入時,就可以不用輸入帳密就登入了,像是spotify,teams等等的網站。
但有時後卻希望網頁關閉,這些cookie就清除掉,避免下一次登入又自動使用上一次的帳密登入。
chrome的設定裡有一個清除cookie的功能,但這會清除所有的cookie,沒辦法只清除特定網站的cookie,也不太方便。
64位系統安裝請安裝:
Visual C++ Redistributable for Visual Studio 2015 (Windows 64-bit)
32位系統安裝請安裝:
Visual C++ Redistributable for Visual Studio 2015 (Windows 32-bit)
When installing the OCS agent, an error occurs: api-ms-win-crt-heap-l1-1-0.dll.
For 64-bit systems, please install:
Visual C++ Redistributable for Visual Studio 2015 (Windows 64-bit).
For 32-bit systems, please install:
Visual C++ Redistributable for Visual Studio 2015 (Windows 32-bit).