[ 編譜 | 演奏Anima's Piano Cover ] MAYDAY五月天[ 派對動物Party Animal ] 鋼琴譜pdf

演奏: 琴譜預覽:   有想要的其他曲子? 求譜系統連結: http://goo.gl/1fDDvn   追蹤Facebook,取得最新琴譜: Anima's piano Youtube訂閱網址: https://go...
張貼者: : Anima's life
1 Comments

[程式開發] 解決 Vagrant destroy or up 時出現 found a tab character that violate intendation while scanning a plain scalar....

出現: found a tab character that violate intendation while scanning a plain scalar at line 14 column 11 (Psych::SyntaxError) 也就是  Homestead...
張貼者: : Anima's life
0 Comments

[程式開發] Laravel Homestead Vagrant 開發 The host path of the shared folder is missing 問題

在vagrant up 時 出現: Bringing machine 'default' up with 'virtualbox' provider... There are errors in the configuration o...
張貼者: : Anima's life
0 Comments

[程式開發] Homestead Vagrant 出現 rsa 問題

$ vagrant up  出現 C:/Users/Anima/Homestead/scripts/homestead.rb:108:in `read': No such file or directory @ rb_sysopen - C:/Users/Anima...
張貼者: : Anima's life
0 Comments

[生活] 飛利浦PHILIPS 與 東亞照明 燈泡 通用

今天寫譜寫到一半 檯燈突然暗了 看來是燈泡壞掉 趕緊去華通書局買  我的檯燈是東亞照明,燈泡也是 結果華通只賣飛利浦的燈泡 想了想 看了看 買了一個跟我原本大小差不多的燈泡 回去裝了下 竟然通用~ PHILIPS 型號 :PL-LJ  4P 27W/...
張貼者: : Anima's life
1 Comments

[程式開發] 解決 composer command not found 問題

一般linux 執行檔都在    /usr/local/bin   底下 composer command not found 就是因為 composer.phar 不在 那裡 所以我們把他搬過去 $ mv composer.phar /usr/local/bin/...
張貼者: : Anima's life
0 Comments

[程式開發] Laravel 5 從GitHub Clone 專案 到 Raspberry pi 上 (Linux Debian)

1. 在 /var/www中(每個人Apache的路徑不太一樣) git clone https://github.com/user_name/project_name  local_project_directory_name 2.如果是private會多要求要帳號密碼 ...
張貼者: : Anima's life
0 Comments

[程式開發] Laravel 5 出現No supported encrypter found. The cipher and / or key length are invalid. 解決辦法

出現No supported encrypter found. The cipher and / or key length are invalid. 表示說你的.env 裡面的APP_KEY是無效的 所以重新產生一個吧: php artisan key:genera...
張貼者: : Anima's life
0 Comments

[程式開發] Laravel 5 出現 NotFoundHttpException in compiled.php line [行數] 解決方式

通常是project 從 gir clone 下來後會出現的問題 1. 首先Laravel在Apache裡面必須要開啟權限 sudo chown -R www-data storage sudo chgrp -R www-data storage sudo chmod...
張貼者: : Anima's life
0 Comments

[程式開發] 在Raspberry pi (Linux Debian) 上 安裝 Phpmyadmin

1. 安裝phpmyadmin sudo apt-get install phpmyadmin 2.彈出視窗選擇要安裝在哪個伺服器 apache ,lighttpd 按空白建可以選 3.彈出視窗要configuration 按YES 去設定 輸入mysql的passwo...
張貼者: : Anima's life
0 Comments

[程式開發] Laravel5 如何使用 ajax post

1.Ajax 大概會長這樣 function save_user_data(id,name,email){ $.ajax({ headers: { 'X-CSRF-TOKEN': $('meta[na...
張貼者: : Anima's life
2 Comments

[程式開發] Laravel5 使用 ajax post Return error 500 (Internal Server Error) 問題

如果對Laravel沒有很熟,需要看一下官方文件說明 官方文件: https://laravel.com/docs/master/routing#csrf-x-csrf-token 1.首先在要傳出Ajax的頁面的header 加入meta Tag,Laravel會...
張貼者: : Anima's life
0 Comments