Love Story 安室奈美恵

December 25, 2011 Leave a comment

Love Story
安室奈美恵

作曲︰T-SK|TESUNG Kim|Liv NERVO|Mim NERVO
作詞︰TIGER

歌詞

昔からラブストーリー
苦手なの知ってたでしょ
恋に身を焦がすヒロイン
果てしなく続く girltalk
たわいなく繰り返される gossip
いつも抜け出したかった

Now I’m grown
欲しいものは手にしたけど かわりに
I know
あなたがくれる永遠も笑顔も手に出来ない baby

誰よりもきっと 愛しているけど
選んだこの道を 歩いてくから
生まれ変わっても 愛し続けるけど
一緒にはいられないもう
Cause life’s no love story

その腕の中で
眠りたい 子供みたいに
ふと願う日がない訳じゃない oh
そういえば涙さえもう
どの位流してない?
でも今さら変われない

You know that I’m grown
欲しいものは手にしたけど かわりに
I know
あなたがくれた優しさと笑顔も手放してた baby

誰を見つめても 誰と過ごしても
忘れられる日など 来るはずない
この胸の中で 愛し続けるけど
一緒にはいられないもう
Cause life’s no love story

やがてすれ違うと知っていても
出会えた事この奇跡 感謝してる
かけがえない日々も
後悔も痛みも
悲しみさえ
輝かせる yes, someday… baby

誰よりもきっと 愛しているけど
選んだこの道を 歩いてくから
生まれ変わっても 愛し続けるけど
一緒にはいられないもう
Cause life’s no love story

Categories: Music

はじめに

December 16, 2011 Leave a comment

研究の対象と背景

①研究対象を示す表現

例:

1.本稿は~の問題点を中心に考察するものである

2.本稿は~についての研究の成果を検討するものである

②問題の現状を説明する表現

例:

1.近年~が広まっている

2.近年~の状況に問題が発生した

③状況の中で特に注目すべき事例に言及する表現

例:

1.近年~が問題になっている。このなかで特に~が注目されている。

 

④推論を提示する表現

例:

1.~可能性があるのではないだろうか

 

⑤研究の必要を示す表現

例:

1.~するために、~が必要となる。

 

略称を導入する表現

例:

1.本稿では、X用語として「X略称」という名称を用いることとする。

Categories: Support

論文のタイプ

December 1, 2011 Leave a comment

主な大学院段階の論文:

  1. 検証型論文 : 実験・調査に基づく仮説検証の論文
  2. 複合型論文 : 事例研究などの検証型部分と文献などに基づく論証型部分の両方を含む論文
  3. 論証型論文 [文献解釈系] : 文献・資料などに基づく論述過程に重点を置く論文
  4. 論証型論文[論説系] : 先行研究を整理して研究の現状を分析・評価する論文(総説・レビュー・展望など)

参考書:

留学生と日本人学生のためにレポート・論文表現ハンドブック (東京大学出版会)

Categories: Japanese Language, Support

Downgrade from ios 5 to ios 4.2.1 (Untethered)

November 3, 2011 Leave a comment

Things need to be prepared :

  1. Tiny Umbrella 5.00.12
  2. GreenPois0n 1.0 RC6.1
  3. fixrecovery-osx for 4.2.1
  4. ios 4.2.1 ipsw

Follow this step :

  1. Make sure that you have backup SHSHs before
  2. Open TinyUmbrella, and start TSS Server
  3. Make sure that you see SHSHs for ios 4.2.1 in List “All saved SHSHs”
  4. Enter DFU Mode
  5. Start iTunes 10.1
  6. Restore ios 4.2.1 by pressing alt button and click Restore button
  7. Find and Select ios 4.2.1 ipsw
  8. Wait until iTunes finish the process
  9. Maybe there will be an error
  10. Enter DFU mode
  11. Run FixRecovery
  12. Wait until iPhone successfully Reboot
  13. run GreenPois0n
  14. Done

Good Luck

Categories: Iphone, Mac Os

Installing Subversion in Debian

October 16, 2011 Leave a comment

This article was taken from : http://www.reviewingit.com/index.php/content/view/62/2/

So happens there comes a time when you need to track whos been adding what to your documents, and how to revert back to last Mondays copy of a document. What you need is a software to manage the versions and track the changes done by whomever. What you need is a tool called subversion. I’ve been hunting around for some good document to go through the install step by step but could not find one short of reading an entire book on the subject. So I decided to write a small document on what I did to install my copy of subversion on Debian etch, just using apt… read on…

First you need the following

A. A clean debian 4.0 etch system
B. Tortisesvn :- a subversion client for Windows (Xp or Vista) Get it here
1. First we need to Install ssh server
# apt-get update
# apt-get upgrade
# apt-get install ssh

2. Next we install Apache2
# apt-get install apache2
# apt-get install libapache2-mod-php5

3. Install subversion packages
# apt-get update
# apt-get install subversion
# apt-get install libapache2-svn
4. Create Repository
# mkdir /var/svn/
# svnadmin create –fs-type fsfs /var/svn/myproject

5. Generate Test data in repository
# mkdir ~/TEMP/
# echo “Testing” > ~/TEMP/test.txt
# svn import -m “Testing via ssh+svn” ~/TEMP/ svn+ssh://127.0.0.1/var/svn/myproject/trunk
# svn co svn+ssh://127.0.0.1/var/svn/myproject/trunk testcheckout

6. See if files in repository
# svnlook tree /var/svn/myproject/

7. Changeowner of repository folder to apache user
# chown -R www-data:www-data /var/svn/*
# chmod -R 770 /var/svn/*

8. Make sure svn is running in apache
# a2enmod dav
# a2enmod dav_svn
9. Create user accounts for SVN users, you will be prompted for their passwords
# htpasswd -c /etc/apache2/svn.passwd usera

# htpasswd /etc/apache2/dav_svn.passwd userb
# htpasswd /etc/apache2/dav_svn.passwd userc

10. Input this code into /etc/apache2/mods-available/dav_svn.conf
<Location /myproject_site>
DAV svn
SVNPath /var/svn/myproject
AuthType Basic
AuthName “Subversion Repository”
AuthUserFile /etc/apache2/svn.passwd
Require valid-user
#SSLRequireSSL <– note this is commented out
</Location>
11. Reload the apache config then, Test the connection using a browser to http://<repository address>/myproject_site
# /etc/init.d/apache2 force-reload
12. If it works time to add SSL to Apache
#apt-get install openssl ssl-cert

13. Generate a certificate
# openssl req $@ -new -x509 -days 365 -nodes -out /etc/apache2/apache.pem -keyout /etc/apache2/apache.pem

>>ensure you fill up all the details
for the certificate<<

14. Change the permissions on the certificate
# chmod 600 /etc/apache2/apache.pem

15. Modify the /etc/apache2/ports.conf add the following string
Listen 443

16. modify /etc/apache2/sites-available/default
change the default NameVirtualHost * to NameVirtualHost *:80
Add NameVirtualHost *:443
Change <VirtualHost *> to <VirtualHost *:80>

17.Add right at the end of the file

<VirtualHost *:443>
ServerAdmin webmaster@localhost
SSLEngine on
SSLCertificateFile /etc/apache2/apache.pem
</VirtualHost>

18. Uncomment SSL required in /etc/apache2/mods-available/dav_svn.conf
<Location /svn_zen>
DAV svn
SVNPath /var/svn-repos/project_zen
AuthType Basic
AuthName “Subversion Repository”
AuthUserFile /etc/apache2/dav_svn.passwd
Require valid-user
SSLRequireSSL       <—HERE
</Location>

 

19.Reload the Apache config
# /etc/init.d/apache2 force-reload
20. Ensure mod ssl is loaded
# a2enmod ssl
21. Ensure repository permissions are correct

# chown -R www-data:www-data /var/svn/*
# chmod -R 770 /var/svn/*
22. Test in browser, enter the userid you created and password
https://<address of webserver>/myproject_site
23. Now that all is working with SSL Lets add some granular permissions
, usera and userb has readwrite userc only has read permissions to the repository.
# nano /etc/apache2/svn_ACL

put this in

[groups]
readwritegrp = usera, userb
readgrp = userc

[/]
@readwritegrp = rw
@readgrp = r

[/myproject_site/trunk]
@readwritegrp = rw
@readgrp = r

24. Lets tell subversion to use the permissions, Add this in to /etc/apache2/mods-available/dav_svn.conf
<Location /myproject_site>
DAV svn
SVNPath /var/svn/myproject
AuthType Basic
AuthName “Subversion Repository”
AuthUserFile /etc/apache2/svn.passwd
Require valid-user
SSLRequireSSL
AuthzSVNAccessFile /etc/apache2/svn_ACL    <—HERE
</Location>

25. Reload Apache and Have Fun with your SVN repository!!!
# /etc/init.d/apache2 force-reload
26. Fire up your Tortise SVN I use it in Vista it adds a right click menu which you can use to check in and check out documents. But first up use the repository browser to goto https://<your server address>/myproject_site to make sure all is going well
enter your userid and password created earlier. If all goes well you can start playing around with you TortiseSVN to check out and check in docs. Also you can diff and see the history of
updates. Its Great!!

Categories: Linux, Programming
Follow

Get every new post delivered to your Inbox.