本人的ubuntu20.04 環境switchhosts 切換不了,可能是程式bug,又著急用,於是寫了個指令碼
# 安裝到 ~/bin 下
mkdir -p ~/bin/hostlist
echo
"export path=$path:$home/bin"
>> ~/.bash_profile
source ~/.bash_profile
touch ~/bin/chhost
chmod +x ~/bin/chhost
# 備份系統hosts
cat /etc/hosts > ~/bin/hostlist/system.hosts.txt
vim ~/bin/chhost
#!/usr/bin/bash
#function changehost(
)changehost $1
在 ~/bin/hostlist 目錄下建立 一系列 ***.hosts.txt 命名的檔案
就可以切換到 ***.hosts.txt 的環境
***.hosts.txt 檔案格式與 /etc/hosts 檔案格式相同
使用例子my 編輯my.hosts.txt :
~/bin/hostslist/my.hosts.txt
# start my hosts
199.232.68.133 raw.githubusercontent.com
151.101.76.133 raw.githubusercontent.com
# end my hosts
chhost my
crawler的簡單運用(類似phpquery)
參考 中文 官方英文 因為是專案中運用,首先composer下composer require symfony dom crawler然後use寫 html hello crawler 我是p標籤11 我是p標籤22 html crawler new crawler html echo crawle...
自編碼網路的簡單版類似於PCA
1 自編碼網路的知識點 知道了自編碼學習其實就是學習到了輸入資料的隱含特徵,通過新的特徵來表徵原始資料,本節將介紹如何使用這些隱含特徵進行模式分類 還是以前面的三層自編碼網路 抽象一下如下 其中學習到的權值係數w1與w1 是不一樣的,我們把w1叫做編碼權值,w1 叫做解碼權值,原始資料在編碼權值下的...
c 建立類似Siri的語音問答的簡單應用
利用.net的語音識別庫,很容易就可以製作類似siri的簡單的問答程式。實現步驟如下 1.建立乙個新專案,並新增對system.speech的引用。如下圖所示 2.在窗體內分別定義語音識別 speechrecognitionengine 和語音朗讀 speechsynthesizer speechr...