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

2013-03-04

【系統】Fabric : 好用的 Server 管理工具

0 comments
最近在 neoesque 的網頁上看到一個不錯的東東 : Fabric
研究了一下,真是不錯的東西,
就裝來用了。

安裝其實很簡單,但我搞了一會…
因為我少裝了 setuptools ,一直沒發現…還一直在找那裡出錯了 @ @

2013-03-01

【程式】PHP : File 相關

0 comments
列一下檔案的相關 Functions
都從 php.net 複制過來,只是記錄一下,
老了,常會忘掉,這樣下次就不用再查了

2013-01-16

【程式】PHP : PHP Coding Standards Fixer

0 comments

PHP Coding Standards Fixer
The PHP Coding Standards Fixer tool fixes most issues in your code when you want to follow the PHP coding standards as defined in the PSR-1 and PSR-2 documents.
這東西,真的超好用的。
他會把多餘的空白過濾掉,Tab 用4個空白取代,幫你把括弧排整齊 ~~ blah blah ~~
簡單來說,就是美化你的程式碼啦。