2016-07-01

【系統】brew update error

0 comments
今天要下brew update 時,發現錯誤了…
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- mach (LoadError)
.....略

好像是我之前用了 root 去幹了什麼事…權限出錯的樣子,不是很確定。
找到解決的方式就是執行下面這二行
$ sudo chown -R $(whoami):admin /usr/local
$ cd $(brew --prefix) && git fetch origin && git reset --hard origin/master
然後就正常了,搞定。

【程式】Laravel : atom-beautify 套件,設定支援 .blade.php Templates

0 comments
因為 Atom-beauty 套件,在 html 的部份。
預設只支援 .html。
這樣 xxx.blade.php 就沒有作用了。

找到的解決方式如下,
編輯 ~/.atom/packages/atom-beautify/src/languages/html.coffee
或是直接從 Atom-beauty 套件的 view code 去找到 html.coffee

2016-06-13

【系統】小米路由器mini 刷 Padavan Firmware

9 comments

因為小米路由器,常常連上後,可以正常上網,但過一陣子就連不到網路。
明明 Wifi 就連著,所以就打算換個 Firmware 來用。

2016-06-07

【程式』Laravel : 使用 Guzzle 時,出現錯誤 Class 'App\Http\Controllers\GuzzleHttp\Client' not found

0 comments


最近開始看 Laravel ,想說好像有點紅。
因為之後會有 cURL 的需求,
所以就找了個套件 Guzzle 來用 然後我在使用 Guzzle 時,居然一直出現錯誤
Class 'App\Http\Controllers\GuzzleHttp\Client' not found