Jun 12

Last update:2020/09/09

◎ to GitHub Download Release version。

◎ unzip and copy to the apache htdocs directory under。

◎ Installation composer

# Composer 為一 php 相依性套件管理工具。

# 安裝時會需要指定 php.exe 的路徑,並新增到 Windows 環境變數,
# 因此日後如果 php 的路徑有改變,可直接去修改環境變數的 path。

# 安裝過程會檢查 php.ini 設定,並協助修正。
# 以我來說,基於安全性的因素,"allow_url_fopen" 平常我會設為【Off】,
# 但這會造成 Composer 無法下載套件,
# 因此安裝過程會將此設定改成【On】,並產生一個 "php.ini~orig" 的原始備份檔。

 

Continue browsing »

Jun 12

BookStack is a wiki-like architecture of open source knowledge management system,Try recently loaded up with a look,I did not expect Bahrain,Entered the Home icon on the situation has changed all large occurrence,Each figure is almost full version。Searching for reasons,The original is because I download on GitHub,The master version is caught,Thus does not include files css,Layout will lead to large bell go,So long as the fill on the relevant css file,Or re-download the release version,Can solve the problem。

 

Continue browsing »

May 27

Recently computer failure,After the repair back,Former boot menu is rEFind cover off,Become directly from Windows 10 Power,Take this opportunity to look at how not to bagging the way the boot menu tool,Correction setting in Windows。

 

Continue browsing »

May 24

Today you install Windows Server 2019,When ready to change the key to start Windows,But out of the key error message,After confirming that several sequence numbers are correct,For error code 0X80070490 (Or 0XC004E028) Crawl on the Internet,But only found information related with Windows Update,Later for Windows Server 2019 To query,Sure enough, to find a lot of foreign people experience the same situation with me,The cause is still not sure,But the solution is not difficult,As long as the instruction to change the way you can change the key。

 

Continue browsing »

May 17

Some images in the open when GIMP,"The colors into Alpha (Transparent)"The option is not available,Before did not know how to solve,Finally found a solution today。In accordance with the users point of view in the official return of issue,The reason for this layer does not occur in the information transparency,If it is in GIMP 2.8 Will be automatically added to a transparent color version,2.10 Will not,Therefore solution,Only need to manually add transparent color version can be solved。

 

Continue browsing »

May 16

After the VM Import,From time to time will encounter performance problems of Storage,Early thought it was caused by insufficient bandwidth,Know through observation after the DELL Storage software is more than the load caused by IOPS,Therefore Storage IO observe the situation then becomes one of the priorities when Chaxiu。

 

Continue browsing »

May 13

New Windows 10 Laptops come when,Some Office components are often built,After often have to move it a clean,To install their own to buy the version of Office,And from time to time,Error messages that occur are not the same。Recently when dealing with a new NB,When you install Office 2013 To 90% Time,The error message pops "Some office functions can not be installed.",You can select "Retry" or "ignore",By convention,Select "Retry" will have the same problem,And select "Ignore", then,Colleagues said that at present have not seen what effect,Still work。

 

Continue browsing »

Apr 26

From Outlook 2007 Start,There are built-in mail indexing,When allows users to search e-mail,Search faster to the destination e-mail,However, this indexing is sometimes caused by the mail we could not find an existing。When replacing a computer or other factors need to rebuild indexes,Before indexing is completed,The user will find the message would be incomplete results,This situation occurs infrequently,But when you are anxious to find a letter,When they met to complete the index has not been established,It will cause great distress。

 

Continue browsing »

Apr 14
list1 = []
sizeNum = int(input("Please input the size of matrix: "))

for i in range(sizeNum):
    valueNum = int(input("Please input the value: "))
    list1.append(valueNum)

print(list1)
Apr 14
num = int(input("Please input a number: "))

for i in range(2, num):
    for j in range(2, i):
        if (i % j == 0):
            break
        
        if (i == j + 1):
            print(i)