2019年9月15日 / kirito / 0 Comments
The most time, mac running the fan speed with a low level. If we play a video, then mbp will be hot and hot. So the best solution is change the fan speed automatically.
Here is my script to change fan speed: https://github.com/KiritoStudio/mbp_fan_control
It only test on my mbp 10.13.6. If your fan has more than one fan, you may change my script and send me the PR.
2019年8月3日 / kirito / 0 Comments
- Download the chrome plugin
- Add the new agent string: Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.18
- Set append to replace and indicator flag to O12. Add it.
- Go to Permanent Spoof list: add twitter.com with User-Agent string we added above.
- Refresh your twitter page
2019年5月2日 / kirito / 0 Comments
There might be some bugs in the .DS_Store. So first stop the .DS_Store creation in your MacOS:
|
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE |
Then remove all .DS_Store files on your smb folders:
If you want to see the files you want to remove, try:
|
find -name ".*" -exec echo '{}' ';' |
And do it with:
|
find -name ".DS_Store" -exec rm '{}' ';' |
Also you will find more other hidden files like ‘._.DS_Store‘, you should also remove them.