2016年7月16日 星期六

The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

原本在NetBeans的 JSTL檔案執行沒有問題

轉入 Eclipse之後,用預設的Import方式也不行
Properties ==> Java Build Path ==> Libraries ==> Add External Jar


解決方案(Solution):


javax.servlet.jsp.jstl-1.2.1.jar
javax.servlet.jsp.jstl-api-1.2.1.jar

兩個檔案放到

WEB-INF/lib/  裡面

就解決了

2016年6月17日 星期五

Java Tomcat JSP note


Download and Install Tomcat
http://tomcat.apache.org/

Make sure the server is running....
http://localhost:8080

Make a page in main page folder...
C:\Program Files\Apache Software Foundation\Tomcat 9.0\webapps\ROOT
(my computer... hey hey)

2016年6月12日 星期日

Ubuntu for format factory 格式轉換軟體

Ubuntu中的影音檔案轉換格式軟體   類似windows的 format factory

The default repositories.....  在預設的程式庫中可以下載的

For the Video files  影片檔案轉檔
sudo apt-get install transmageddon

Note: 成功將 mp4 轉成 mp3  


For the Audio files  聲音檔案轉檔
sudo apt-get install soundconverter

Linux Ubuntu Command Line Screen Off 關閉螢幕命令


Method 1:
xset dpms force off

Key: Move Mouse and Keyboard will turn on the screen.
移動滑鼠或是鍵盤就會開啟螢幕


Method 2:
sleep 3; xset dpms force off
Key: Set a specific time to turn off the screen
設定固定時間關閉螢幕

2016年6月6日 星期一

Hard Disk power-on hour check in Ubuntu Linux

查詢硬碟的開機時間
Hard Disk power-on hour check in Ubuntu Linux

執行以下
sudo smartctl --all /dev/sda | grep Power_On_Hours
                               Disk Name 磁碟名稱

開機使用次數查詢
 sudo smartctl --all /dev/sda | grep Power_Cycle_Count

2016年6月5日 星期日

Ubuntu 16.04 Installation Note 安裝筆記

今天 2016.06.05 首次安裝  Ubuntu 16.04在我的 Aspire 4820TG 的 SSD 上面
想要試試看速度
同機主要有  Win 10, Ubuntu 14.04兩個作業系統  現在加上第三個作業系統

從Win 10在主要的SSD切了40G出來

利用Universal USB installer順利安裝
http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

初步安裝佔用大約4G  後來upgrade + update之後  大約佔用5G


任務:首先中文輸入法部份
無法在Text Entry設定中找到chewing輸入法
因此改用手動安裝

當初安裝是選 English  所以Language Support中只有English
在Language Support中 選 Install Language ==> Chinese(Traditional)

sudo apt install ibus-chewing
(從Ubuntu 16.04 開始  改用apt而不是 apt-get囉)

之後重新開機  就可以在Text Entry中 發現 Chinese(Chewing)(IBus)

任務:將左方快捷選單調整

System Setting ==> Appearance ==> Behavior
Auto-hide the Launcher 將這個打開  on   這樣左方快捷選單就會自動隱藏了 auto-hide
記得把下面的Reveal sensitivity調高   這樣才會容易觸發被隱藏的選單
預設值  感覺不是很夠
然後下面還有Workspaces或是Desktop icon兩個可以打開 也都很方便的小工具

任務:安裝Eclipse JAVA EE之後才發現缺 JDK

可以參考這個資訊
https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-get-on-ubuntu-16-04

執行完以下兩行   基本上就差不多了   其他的需要可以參考以上的連結
sudo apt-get install default-jre
sudo apt-get install default-jdk





Ubuntu 16.04 server Install Wifi Connecting problem 無法連線

怎麼辦?

尚未解決

2016年5月8日 星期日

Problem Solved 問題解決 Website on Mac

Apache的網頁資料夾

首頁的位置
/Library/WebServer/Documents/

index.html  .....etc....


php5 設定
/etc/apache2/httpd.conf
將當中的  #LoadModule php5_module libexec/apache2/libphp5.so
註解符號# 移除


MySQL無法登入

路徑要設定    sudo vim /etc/bashrc
在此路徑加入

#mysql
alias mysql='/usr/local/mysql/bin/mysql'
alias mysqladmin='/usr/local/mysql/bin/mysqladmin'

要留意port


密碼要確定   如果有問題重新安裝   安裝時會給一組暫時密碼

登入 mysql -u root -p
輸入錯誤會出現以下訊息


ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

所以要確認密碼的正確


PHP檔案出現問題
無法順利使用pdo 或是成功連結mysql
出現  fatal error: Call to a member function query() on a non-object  訊息

localhost的port要注意   這次因為沒有設定正確port  因此無法連結mysql
在MySQL Workbench裡面打開的時候看到port設定是3306

因此在php code中的 localhost:3306    <--加入部分    就可以解決問題



2016年4月14日 星期四

Visual Studio Community 2015 無法登入帳號 無法使用

Visual Studio Community 2015 無法登入帳號

在Win 10的作業系統下

開啟Visual Studio Community 2015  的時候告知必須要登入Windows帳號才能免費使用

但是在按下 Sign in 之後的連線,卻一直無法成功。

Google了半天之後,找到以下方法

解決方案原文
https://msdn.microsoft.com/en-US/library/mt604698(VS.140).aspx

實際執行的部分:

When you don't use the corporate network, you can connect by using both TLS 1.0 and TLS 1.2. Note: Reset to the default protocol option after you diagnose the issue. To do this, following these steps:

1.  Start Internet Explorer, Click "Internet Options", and then click "Advanced."
2.  Under Settings, check "Use TLS 1.0", "Use TLS 1.1" and "Use TLS 1.2."

所以我在網路網際選項之中點選這幾個功能,就成功連線了

2016年3月16日 星期三

My Database note MySQL SQLite

Fast Note:

mysql -u root -p

show database;

create database  XXXX;   (Create a database)   Note: Database name is case-sensitive!!

use XXXX;  (Choose a database for seeing its tables)  ==> show tables;

drop XXXX;   (Delete a database)

CREATE TABLE potluck (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
name VARCHAR(20),
food VARCHAR(30),
confirmed CHAR(1),
signup_date DATE);

show tables;

describe Table_Name;    (show the details of the table)


Good Tutorial:
https://www.digitalocean.com/community/tutorials/a-basic-mysql-tutorial


PostgreSQL installation
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-14-04


2016年3月15日 星期二

ubuntu server note 伺服器版本筆記

目標:

開始使用Ruby on Rails framework所以找尋一個比較穩定的作業系統。網路搜尋結果普遍推薦OX 與 ubuntu。

之前使用 fedora 23 在安裝 rails 相關套件常常出錯,因此決定放棄,另尋穩定的作業系統。


下載網址
http://www.ubuntu-tw.org/modules/tinyd0/

Ubuntu 伺服器版本   14.04 LTS   64 位元版本   下載時間2016/03/15

安裝完成後才發現只有command line 介面
然後開始安裝桌面介面

sudo apt-get install ubuntu-desktop

霹靂啪啦.....過了很久
而且command line介面為什麼會出現亂碼 @_@

================================================
ubuntu從中文改成英文系統

Step: 1 加入設定

id@ubuntu:~$  vim /var/lib/locales/supported.d/local

en_US.UTF-8 UTF-82.

Step: 2  加入設定

id@ubuntu:~$  vim /etc/default/locale

LANG="en_US.UTF-8"
LANGUAGE="en_US:en"

Step: 3 重新開機
reboot
shutdown -v 0

================================================

安裝Ruby on Rails
參考網址:https://gorails.com/setup/ubuntu/14.04

sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev

安裝 rbenv
sudo apt-get install rbenv
sudo apt-get install ruby-build


其他部份就照上面的網址來安裝... 直到安裝完資料庫為止

最後成功的把  rails server 叫出來囉    localhost:3000  可以順利閱讀網頁.....

=================================================

hardinfo
安裝後可以查詢硬體資訊


安裝 Sublime Text on Ubuntu
http://blog.lyhdev.com/2013/10/ubuntu-linux-sublime-text-2.html

安裝Brackets

Code::Block (C and C++)
Pinta (Paint.Net 的Linux版本)

Shift + Super + Space  :  Language Input Shift

2016年3月1日 星期二

Ruby on Rails Note 學習筆記


首先

https://www.ruby-lang.org/zh_tw/

下載  ==>  下載安裝  ==>  RubyInstaller(Windows)  ==> RailsInstaller安裝包    繞呀繞

找到這個快速安裝工具
http://railsinstaller.org/en

看到 Windows Ruby 2.2 按下,下載
內容包括(Packages included are)
Ruby 2.2.4
Rails 4.2
Bundler
Git
Sqlite
TinyTDS
SQL Server Support
DevKit

安裝完成後,開始選單裡面,有了 RailsInstaller 目錄
裡面有
Command Prompt with Ruby and Rails
Interactive Ruby
Git Bash
RubyGems  Documentation Server

我看了Eduonix Learning Solutions的Video
他說要用  Command Prompt with Ruby and Rails   去執行  rails new project_name (專案名)
來建立新的網頁專案,但是卻回應:  系統找不到指定路徑。

絕望之際,發現可以透過  Git Bash視窗來執行上述命令。
第二步要啟動 Server (像是Apache那樣) 來在瀏覽器上觀看自己的專案,
也是必須要透過 Git Bash 在自己的專案中的 資料架中  執行  rails server

執行成功後,就可以在 Chrome裡面輸入  localhost:3000 看到自己的網頁了。

怎麼跟Eduonix Learning Solutions的Video教的不太一樣,好險我自己研究出來了。成功。

建立新的網頁:
開始製造自己的網頁  在自己的專案目錄下   輸入指定 rails generate home index 建立網頁

在  /app/views  與 /app/controllers 中都可以看到相關的檔案被建立起來
產生以下檔案
/app/controllers/home_controller.rb
/app/views/home/index.html.erb

改變首頁路徑(routes):
進入/config/routes.rb   發現新的寫法與舊的寫法不同   關於root如何轉到新建立的頁面
舊寫法  root '' :to =>   'home#index'
新寫法   root 'home#index'  (不過新舊寫法都可以正常運作。)

估計是精簡化的結果

教學中顯示的預設 localhost:3000 的首頁是有一個有/public/index.html 但是我卻看不到.....


Rails 強迫 MVC架構?  強迫Git ? 似乎是..........


rails new XXX -d mysql  (新建一個專案  以MySQL作為資料庫)
然後要在 /config/database.yml  中  增加密碼   並且把databases給註解掉  因為還沒有建立資料庫

然後開啟 rails server 就可以正常顯示預設page

rails generate controller demo index


##################################################################

git add -A
git status
git commit -m   ' ........'


BitBucket (Push file 上傳本機的 git)
git commit -m ' ~  ~ ~'
git push -u origin master


Deployment Option: Heroku


#####################################################

安裝PostgreSQL
http://www.postgresql.org/download/

heroku雲端
http://blog.eddie.com.tw/2012/01/06/heroku-the-best-cloud-platform-on-ruby-language/

教學
Ruby on Rails Tutorial Learn Web Development with Rails Michael Hartl
https://www.railstutorial.org/book