ShareChiWai Notes
ShareChiWai Notes
Home
Blog
Menu Venue
Event
Sharing
Contact
Light
Dark
Automatic
Posts
Screen Recording via PowerPoint (Free Feature) - 使用 PowerPoint進行 屏幕錄製
很多朋友問..如何在 Windows 上進行屏幕錄製, 之前以為一定要用其他軟件.. 例如: Camtasia.. 誰不知..原來可以使用 PowerPoint 錄製 的 詳情可以參考這個 教學 Screen Recording via PowerPoint (Free Feature) - 使用 PowerPoint 進行 屏幕錄製 hope you find it useful
Last updated on Feb 17, 2024
1 min read
電腦小貼事 Computing Tips and Tricks
Free Software for Student - 免費軟體 (學生篇)
今日公司的同事和大家分享了一系列十分實用/好用既軟體 如果你是學生 或是還有學生 Email account 或學生証 的話都可以免費申請的 有興趣既朋友可以參考以下網頁: https://www.gitkraken.com/github-student-developer-pack https://www.jetbrains.com/student/ https://education.github.com/pack https://bitbucket.org/product/education 很可惜..我已經失去了我大學時的 Email account 不能享用這些福利了
Last updated on Feb 17, 2024
1 min read
Free Stuff - 免費好介紹
Useful SQL command to reduce the size of the database
今日想和大家分享一個 幾有用的TSQL Command, 去 Release 返一些SQL Server 佔用的空間 Transaction log 和Database file -- select database USE Production; -- Change the recovery mode to SIMPLE, to clear the transaction log ALTER DATABASE Production SET RECOVERY SIMPLE ; -- shrink database to release space DBCC SHRINKDATABASE (Production, 1); Hope you find it useful
Last updated on Feb 17, 2024
1 min read
MSSQL Tips and Tricks
Different Git User credential Con on same machine - 在同一個電腦上使用不同的Git 使用者
解決方去 我們可以在 local 的 Git Repos 上設定這個 Repos 的Git Credential 我們只需要在 Git Bash上輸入以下指令便可以了 git config user.name "YOUR_USERNAME" git config user.email "YOUR_EMAIL" 如果大家不想每次都要輸入password 的話可以輸入以下Git command 去 cache 你的 git password git config credential.
Last updated on Feb 17, 2024
1 min read
Git
Git refusing to merge unrelated histories
今日剛在Bitbucket 建立左一個新既 repos 當我嘗試 push local 的一個 git repos上去既時候出現了以下的錯誤信息 (當我嘗試 Pull 這個 repos 去 local 的 repos 時) “fatal: refusing to merge unrelated histories” 如果了解自己的 repos 和在 git/bitbucket上的沒有衝突的話 解決方法分簡單 我們只需要輸入以卜git 指令便可以
Last updated on Feb 17, 2024
1 min read
Git
VS Code disable minimap - 如何在Visual Studio Code 上 Disable Minimap 這個 extension
解決方法十分簡單: 我們可以去 “File” -> “Preferences” -> “Settings” 的 “User Settings” 上把 “editor.minimap.enabled” 設定為 false 便可以了 editor.minimap.enabled": false, Hope you find it useful
Last updated on Feb 17, 2024
1 min read
Visual Studio
Csharp - Remove last comma - C# 如何移除最後一個符號 (分號)?
解決方法十分簡單 我們可以使用 這個功能來解決這個問題 E.G. string y = "1,2,3,4,5,6,"; Console.WriteLine(y.TrimEnd(',')); Hope you find it useful
Last updated on Feb 17, 2024
1 min read
.Net Tips And Tricks
How to use && (bash) in powershell to run multiple command
在這間公司工作.. 我學會了很多 command (多數是在 bash [git bash] 上使用的) 回家後可能是因為 screen 比較細的關係 所以很小會開git bash 來執行指令 會使用Visual Studio code instead VS code 是使用Powershell的 所以當我嘗試執行 git fetch && git checkout develop 遇到以下的錯誤信息 " At line:1 char:12 + git fetch && git checkout develop + ~~ The token ‘‘‘’ is not a valid statement separator in this version.
Last updated on Feb 17, 2024
1 min read
Powershell
ASP.Net Core Enable Development Error
由於不太了解 ASP.Net Core with Angular / React Webpack 的關係 當遇到有 Angular / React的問題是都不知道那裡出錯 我的Angular / ReactJs Project 是用 dotnet core 的 SPA template 建立的 過了幾天才發現.. 由於是使用 dotnet run 或 dotnet watch run 的關係 所以執行的 port 和 visual studio 執行時 debug 的 port 不一樣.
Last updated on Feb 17, 2024
1 min read
.net core
LetsEncrypt Renew - Lets Encrypt SSL 更新
差不多每三個月 Let’s Encrypt Expiry Bot 便會Email 我說.. 我的SSL 後快便會到期Expire 我需要去Renew" 解決方法十分簡單 我們只需要在 server 的Terminal 上用 sudo執行以下指令便可 sudo certbot-auto renew 完成後會說成功 renew hope you find it useful
Last updated on Feb 17, 2024
1 min read
UBuntu
«
»
Cite
×