SyntaxHighlighter

2017-11-04

提問的藝術

被小屁孩鬧版鬧得很不爽,順便查了一下資料。

#發問的藝術 #提問的智慧

[.Net 海角點部落] 發問的藝術與技術 2009-06-11https://dotblogs.com.tw/billchung/archive/2009/06/11/8792.aspx

GitBook 提問的智慧 by Eric
https://ryanhanwu.gitbooks.io/how-to-ask-questions-the-smart-way/


2017-09-29

MacOS X wifi slow

先日、通常使っているMBAのネットワークが急に遅くなった事象が起こりました。
ちょうどHigh Sierra更新と共に現れたので、それのせいかなと思ったけど、どうやら違う問題だったようだ。

そう。問題はWifi自身です。しかもMBAのWifi設定自身か狂ったんだ。
まぁ、幸に、ネットサーフィン自体はまたできる(やや遅いけれども)。

解決方法は簡単。次のステップを踏めて設定を一度整理すること。

1. wifiをoffにする。
2. 次のフォルダを開ける
/Library/Preferences/SystemConfiguration/
3.フォルダ中の次のファイルらを消す。
com.apple.airport.preferences.plist
com.apple.network.eapolclient.configuration.plist
com.apple.wifi.message-tracer.plist
NetworkInterfaces.plist
preferences.plist

4.システムを再起動
5.wifiをonする。




wifiの設定を一度消して、システムに一から構築し直すことによって、過去の不要な設定などを省く、速度も早くなった→予想。
まぁ、早くなったし、App Storeも普通に開けられたし、High Sierraにアップデータしよう!

参考資料:http://osxdaily.com/2016/09/22/fix-wi-fi-problems-macos-sierra/

2017-05-22

gVim menu language setting

A few days ago, I download the lastest(It's 8.0 in May, 2017) Vim.

And when I launch the gVim, the menu text is almost "????".
I have to explain my PC setting. I used to have Japanese menu on my PC.
It is Win10 at this moment.

Seems the VIM has old fashion, it used to use the encode 932 or Shift-JIS or something like that. It shows as "????" for the Kana. I have to force it to show in english.

I found some answers as below:

https://superuser.com/questions/746387/change-menu-ui-language-of-vim-to-english

There is the code you have to add in your .vimrc(or _vimrc in windows)
set langmenu=en_US
let $LANG = 'en_US'
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim

人気の投稿