Monday, May 24, 2010

learn japanese


Ganbatte - Do your best! Ganbatte - Good luck!

One word that fascinates me to no end is the word ganbatte (sometimes written gambatte). It is a saying used to encourage people to try hard or used before a performance to say good luck. Ian Thomas Ash has an excellent write up on the various conjugations of the word ganbatte. It starts to get pretty complex, but think about all the ways you can encourage people to do their best!


How to write ganbatte:
頑張って (がんばって)
Ganbatte:
Do your best

The word ganbatte stems from the verb ganbaru:
頑張る (がんばる)
Ganbaru: To do one's best

Here are some other ways to use this handy verb:
頑張ります (がんばります)
Ganbarimasu:
I do my best
頑張れ (がんばれ)
Ganbare: Do your best
頑張ってください (がんばってください)
Ganbatte Kudasai:
Do your best, please. (formal)
頑張った (がんばった)
Ganbatta: I did my best
頑張りました (がんばりました)
Ganbarimashita: I did my best (formal)
頑張れます (がんばれます)
Ganbaremasu: I can do my best
頑張れる (がんばられる)
Ganbareru: I am able to do my best
頑張っています (がんばっています)
Ganbatteimasu: I am doing my best
頑張りたい (がんばりたい)
Ganbaritai: I want to do my best
頑張っていた (がんばっていた)
Ganbatteita: I was doing my best
頑張らなかった (がんばらなかった)
Ganbaranakatta: I did not do my best
頑張りなさい (がんばりなさい)
Ganbarinasai: you had better do your best
頑張ってくれ (がんばってくれ)
Ganbatekure: do your best for me

One instance where I find ganbaru useful is when I'm talking about my understanding of the Japanese language. I'll say, "私は日本語がちょっと分かります、でもがんばります!" (Watashi wa Nihongo ga chotto wakarimasu, demo ganbarimasu!). Which means, "I understand a little Japanese, but I do my best!".

In many of the Japanese lessons I've taken, they always teach you to play down your skills, to say that your not good yet. That's just not the American way. I might not be good yet, but I sure will try my hardest.

頑張って!
(がんばって! - Ganbatte!)
Do your best!

恋人街 Lover Street

恋人街 论坛 Lover Street Forum


Sunday, May 23, 2010

cmd

Start > run > cmd
下面是各种命令参数的解释!
1. assoc
assoc .rar > 查看rar文件是用什么后缀名打开的
解释:可以看到你电脑所有文件的后缀名和后缀名是用什么软件打开的
2. at
AT 8:00 /every:Monday notepad.exe
解释:这个是设定如果到了星期一并且时间到了早上8点的话 那么就运行Notepad
需要注意的是 这里的时间是用24小时制的 比如晚上8点就是20:00
AT 1 /delete
解释: 那个1是你之前设定过的自动运行ID,你可以单单用AT 来查看你之前弄过的自动运行ID
AT /delete
解释:如果你没有输入ID的话 他会直接删除掉所有的自动运行ID

3. attrib
+R > 让指定文件拥有Read Only 权限
+H > 让指定文件拥有隐藏权限
+S > 让指定文件拥有系统权限
-S > 让指定文件取消系统权限
-H > 让指定文件取消隐藏权限
-R > 让指定文件取消Read Only 权限
attrib +r +h +s c:\123.txt
解释:让在C盘的123.txt拥有 隐藏,只读,系统 权限
attrib -r-h -s c:\*.txt
解释:让在C盘的所有txt文件都取消 隐藏,只读,系统 权限 同样的*也可以改成 123.*
那么不管文件的后缀名是什么只要他的名字是123 就直接取消指定权限
attrib /s
解释:这个是查看指定目录的所有文件/包括文件夹里面的文件
attrib -r /s *.txt
你可以试试看在指定目录创建2个文件夹并且放2个不同名字的txt文件进去 然后用这个命令 就会发觉2个txt文件都取消了只读权限

4. cacls
cacls d:\123.txt /d Jason
解释:Jason是你的系统用户名 如果是XP的话按下Start就能看到了的 这个是禁止Jason打开这个txt文件
cacls d:\123.txt /g Jason:F
解释:刚才我们禁止了Jason打开这个文件 那么我们用/g来解除掉 F是Full Control 你可以改成 :R W 具体的效果你们可以自己试试看

5. call
call d:\123.txt
解释:这个是运行这个文件,只能打开文件,不能打开文件夹

6.cd
cd c:\windows\system32
解释:让你的CMD目录跳去指定的目录
d:
解释:如果你直接用 cd d:的话是不能跳转不同盘的 比如你在C盘你要跳转去D盘是不能用CD命令的 可以直接输入D:就可以了
cd..
解释:比如你现在的目录在C:\windows\system32 那么cd..就会跳转到上一个目录 就是 c:\windows

7.chcp
chcp 936
解释:chcp是转换语言 比如你现在的CMD语言是英文的 那么就无法输入中文 可是比如说你用cd如果有中文目录无法输入 那么就可以用chcp先转换成中文
936是中文代码
chcp 437
解释:437是转换成英文

8.chdir
解释:chdir的具体用法跟CD一样,具体的不同我不大了解

9.chkdsk
chkdsk d:
解释:这个是检查D盘有没有出现问题,比如Bad Sector之类的
chkdsk d: /f
解释:当你检查D盘出现问题后可以用 /F 来修复

10.cls
cls
解释:当CMD的内容太多的时候可以用CLS来清空内容

11.cmd
cmd
解释:查看CMD的版本

12.color
color /?
解释:可以更改CMD的颜色 具体要修改成什么颜色可以自己写

13.convert
convert F: /fs:ntfs
解释:如果你的磁盘是FAT32还是什么的话你可以用这个命令来转换成NTFS

14.copy
copy d:\123.txt c:\
解释:这个是把123.txt 复制1份到C盘

15.date
date /t
解释:查看今天的日期
date