原创 webstorm/phpstorm連接遠程www目錄

1.Tools>Deployment>Browse Remote Host 2.設置FTP名稱 3.填寫主機名稱Host 用戶名User name 密碼Password(我這裏切換成SFTP) 4.遠程目錄列表

原创 Windows下安裝TypeScript並運行helloworld

1.npm命令安裝:npm install -g typescript 2.查看是否安裝成功(出現版本號即可):tsc -v 3.創建mmcike.ts腳本且輸出hello mmcike 4.編譯typescript:tsc mmci

原创 unity3d 粒子系統

1.在Hierarchy>Effects>Particle System創建粒子系統 2.效果

原创 C#獲取網關的對應的局域網IP

using System; using System.Collections.Generic; using System.Net; using System.Net.NetworkInformation; using System.Ne

原创 git命令上傳到遠程倉庫

git add . git commit -m "更新" git push origin master  

原创 Unity3D UI遮罩和彈窗

詳細講解篇幅可能有點長,直接上圖和資源(實現的具體步驟往下看) GIF圖看起來有點卡頓, 實際上運行是流暢的。 碼雲:https://gitee.com/NCAA_admin/Alert.git 具體實現步驟 1.創建一個背景圖片Bac

原创 Windows下cmd命令行遠程傳輸sftp命令

sftp 用戶名@ip地址

原创 vue-element-admin下載(設置)中文版

國內: git clone -b i18n https://gitee.com/panjiachen/vue-element-admin.git 國外: git clone -b i18n https://github.com/Pan

原创 thinkphp6自定義配置文件以及調用

1.在thinkphp\config\下新建一個test.php配置文件 2.test.php <?php // 自定義配置文件 return [ 'profile' => [ 'name' => 'mmcik

原创 python爬蟲獲取標籤報錯 href屬性爲空

當用html.get('href')或者html[href'']來獲取屬性的時候,某些a標籤中並沒有href屬性,此時會拋出異常,解決方法很簡單,用異常處理語句塊就能解決了 try: value = 'http

原创 thinkphp6數據庫讀寫分離

找到 thinkphp\config\database.php 文件,設置  'rw_separate' => true

原创 krpano中新建一個網格場景(空場景)漫遊

1.首先將tour.js和tour.swf放入項目文件夾 2.新建一個vtour.html <!DOCTYPE html> <html> <head> <title>全景漫遊</title> <meta name="v

原创 laravel 500 Server Error,完美解決

在安裝laravel項目後,首次打開laravel出現 解決方案: 1.打開配置文件 laravel/config/app.php 3.找到 'debug'項 設置爲 true 4.刷新網頁 拋出運行異常:No applicatio

原创 unity3d常見事件執行順序

測試順序結果:Awake -> OnEnable -> Start -> FixedUpdate -> Update -> LateUpdate -> OnGUI 1.新建一個TestOrder.cs腳本 using System.Co

原创 unity3d 多線程 三行代碼 秒懂

多線程代碼: using System.Collections; using System.Threading; using Unity.Collections; using UnityEngine; public class MyT