進階搜尋
搜尋結果
找到了 559 個結果
【vim】快速鍵
1. vi 編輯器中跳到檔案的第一行: a 輸入 :0 或者 :1 回車 b 鍵盤按下 小寫 gg 2.vi 編輯器跳到檔案最後一行: a 輸入 :$ 回車...
Docker 部署IIS
[Docker] 容器初體驗 - 搞個 IIS Container 來部署網站 | 搞搞就懂 - 點部落 (dotblogs.com.tw) 將 ASP.NET MVC 應用程式遷移到 Win...
【React】JSX 如何轉譯
// JSX 寫法 function App() { return <h1>React 我來了 <small className="text-danger">{new Date(...
【React】資料綁定
單向綁定 使用大括弧綁定變數,標籤內屬性不用加雙引號 const data = { imgUrl : "https://images.unsplash.com/photo-165019...
【React】建立React 環境
引入js <script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script> <s...
【Linux】禁止密碼登入(使用金鑰)
修改 /etc/ssh/sshd_config vim /etc/ssh/sshd_config ## 修改 PubkeyAuthentication PubkeyAuthenti...
【shell】deny_hack_ip.sh
簡單阻擋 try 帳號 ip #! /bin/bash #cat /var/log/secure|awk '/Failed/{print $(NF-3)}'|sort|uniq -c|awk...
Centos7 安裝 php7.4
新增Remi repository yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm yum instal...
Laravel queue 使用supervisor 實現多執行序
https://segmentfault.com/a/1190000021165798 [program:laravel-queue-work] process_name=%(program...
【Git】還原相關
還原單一檔案 [webmaster@aaa]$ git pull Updating d3d5b1a..e39fcb4 error: Your local changes to th...
【Python】selenium性能優化
selenium性能優化 chrome_options = Options() chrome_options.add_argument("--window-size=1920,1080") ...
【Tailwind Css】相關
vscode extension 取消 validate 驗證 初始化專案 npm install -D tailwindcss npx tailwindcss ini...
PHP_連線postgresql
安裝postgrel extenstion yum install php-pgsql -y 修改 /var/lib/pgsql/12/data/pg_hba.conf host a...
PHP_檔案相關
判斷資料夾是否存在,建立資料夾 if ( !file_exists( $dir ) || !is_dir( $dir) ) { mkdir($dir); } 遞回查詢資料夾內...
【Python】刪除 window 下執行時產生的暫存檔
for /f "delims=" %F in ('Dir /B /S .\*.py ^|findstr /IE "\\migrations\\[^\\]*.py"^|findstr /IEV "...
【php】在 CentOS 6 安裝、設定 Oracel PDO_OCI
在 CentOS 6 安裝、設定 Oracel PDO_OCI | 未知 (dtask.idv.tw) https://www.oracle.com/database/technolog...
【JS】iframe 自適應內容高度
<script type="text/javascript"> function SetCwinHeight() { var iframeid = document.getEl...
【Python】selenium自動播放flash
python selenium firefox 控制devtools 一些线索_wujiuqier的博客-CSDN博客 軟體載點 https://ftp.mozilla.org/pub/mo...
【MySQL】 mysqldump參數大全
IT 研究室 ( 前IT DBA's 資訊站): [轉載] MySQL mysqldump參數大全 (jaychu649.blogspot.com) 要注意的是--master-data...
【React】JSX 與 Html 標籤屬性
<script type="text/babel"> function App() { const htmlTemplate = { __html :'<div>這裡有一段...