目前分類:程式設計 (364)
- Sep 17 Tue 2024 13:54
GoFrame 搭配 Grafana 讀取 Loki log
- May 01 Sun 2022 11:11
React mqtt Buffer is not undefined
起因為 react-create-app 中的配置 react-scripts (5.0.0),導致找不到,解法如下
1、於專案的 package.json 加入以下依賴
"buffer": "^6.0.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0"
"react-app-rewired": "^2.2.1"
2、更新你的 package.json script
- Nov 16 Tue 2021 10:29
vue 在生產環境下,屏蔽console.log在控制台的輸出
1.npm安装插件:npm install babel-plugin-transform-remove-console --save-dev
2.於 babel.config.js 中
- Sep 11 Fri 2020 12:44
React Native 安裝 pod install 錯誤 Flipper-Glog C compiler cannot create executables
- Jul 23 Thu 2020 11:49
MySQL 8.x Authentication plugin 'caching_sha2_password' cannot be loaded
- Jul 10 Fri 2020 15:14
CentOS rh-php71 phpMyAdmin 問題解法 mbstring missing, Permission denied(13)
- Jun 16 Tue 2020 13:44
Unity EncodeToPNG 無法使用
- Jun 02 Tue 2020 18:52
golang map[string]interface{} 多層取值 type interface {} does not support indexing 解決方法
- May 26 Tue 2020 18:18
Unity 使用漸層字型
- May 14 Thu 2020 18:12
微信SDK XCode 錯誤wxlog:Error:fail to load Keychain status:-25300, keyData null:1
- Feb 17 Mon 2020 14:55
vsCode 紫醉金迷 SynthWave '84(赛博朋克) 主題安裝
主題預覽
- Feb 13 Thu 2020 17:00
Kubernetes-dashboard 建置
相關gitHub: https://github.com/kubernetes/dashboard
目前接觸k8s,學習中,發現使用dashboard登入,需要產生token, 以下為測試過可以正常產生token的方法
- Oct 28 Mon 2019 16:14
golang get, post json, post form data example
- Oct 07 Mon 2019 09:47
Fira Code | 好用的VSCode字體
教程
下載
- Sep 16 Mon 2019 10:32
推薦的 VS Code Extensions 整理
- Jun 20 Thu 2019 12:02
golang sql like
- Apr 19 Fri 2019 11:25
goLang fasthttp.RequestCtx get data from header, json, form-data
- Apr 18 Thu 2019 16:10
Golang String, int, int64, float64, bool conversions 互相轉換格式
string , int 互換
- Feb 27 Wed 2019 17:15
Go private.pem public.pem 加解密驗證
最後因為工作需求要使用加解密,因為通常在接第三方api只會使用單一public或private key來驗證其資料是否正常,而此程式可以幫助你快速驗證public, private key是否有問題,進一步解決問題
package main
- Jan 17 Thu 2019 10:48
Go eclipse 使用gofmt 於儲存時將程式碼重新排列成標準格式
今天開始學習go,發現go 有一個很好的功能便是使用gofmt可以在你儲存檔案時自動編排你的程式碼為標準格式,換言之就是會幫你自動做對齊格式,完全不用擔心格式的問題了,真好
若要使用請執行以下動作: