進階搜尋
搜尋結果
找到了 482 個結果
【Python】selenium自動播放flash
python selenium firefox 控制devtools 一些线索_wujiuqier的博客-CSDN博客 軟體載點 https://ftp.mozilla.org/pub/mo...
【shell】deny_hack_ip.sh
簡單阻擋 try 帳號 ip #! /bin/bash #cat /var/log/secure|awk '/Failed/{print $(NF-3)}'|sort|uniq -c|awk...
【OpenResty】相關資源
跟我学OpenResty(Nginx+Lua)开发目录贴 https://jinnianshilongnian.iteye.com/category/333854 第一章 安裝Open...
【React】JSX 開發常見問題
1. 定義元件一定是手字大寫 /** wrong*/ function app(){ } /** correct*/ function App(){ } 2. 多個元素外層需要使用...
【React】JSX 與 Html 標籤屬性
<script type="text/babel"> function App() { const htmlTemplate = { __html :'<div>這裡有一段...
【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...
Centos7 安裝 php7.4
新增Remi repository yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm yum instal...
【JS】iframe 自適應內容高度
<script type="text/javascript"> function SetCwinHeight() { var iframeid = document.getEl...
Laravel queue 使用supervisor 實現多執行序
https://segmentfault.com/a/1190000021165798 [program:laravel-queue-work] process_name=%(program...
Docker 部署IIS
[Docker] 容器初體驗 - 搞個 IIS Container 來部署網站 | 搞搞就懂 - 點部落 (dotblogs.com.tw) 將 ASP.NET MVC 應用程式遷移到 Win...
【Git】還原相關
還原單一檔案 [webmaster@aaa]$ git pull Updating d3d5b1a..e39fcb4 error: Your local changes to th...
【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...
【Nginx】config 詳解
基本配置區塊 #config 區塊 基本配置 ... # 全域性區塊 event{ # events 區塊 ...