Google
 

Saturday, March 10, 2007

个人发展的新想法

我做技术也许会成为有名的专家,但是难道我不能再做一些切实能给人们生活带来改善的事情,例如修灯泡!

把技术当成业余爱好吧!

把自己放到社会中最需要人才的地方吧,即使是收垃圾的工作。

--
Happy day, happy life!

Friday, March 09, 2007

Daily Knowledge learning records (03/07/2007)

1.Windows Command Script
  • There is no blank when setting a value to a variable
  • E.X:set FileName =" Timer.txtNOT set FileName = "Timer.txt"

2.Enable Enable Simple File Sharing on Windows XP

--
Happy day, happy life!

Daily Knowledge learning records (03/06/2007)

1. Sql like keyword
e.x:
use Legal
Select top 1 * From Core.Template
Where FriendlyName like '% Lenovo Signed driver request (check logo)%'

2.Read ConnectionString setting from App.config or Web.Config
a.Add reference: System.Configuration
b.code: ConfigurationManager.ConnectionStrings["settingKeyname"].ConnectionString

3.string[][] and string[,] diferences--
  • string[,]
  • string[][]

Happy day, happy life!

Tuesday, March 06, 2007

How to write reading note

  1. Write the notes in English when reading Chinese books
  2. Copy or draw some images if possible
  3. Conclude some thing from the book not only just copy paste.


--
Happy day, happy life!

Write Windows Command script


Timer:

@echo off
echo 
"Start Testing"
REM Not set FileName = "Timer.txt"
REM
 There is not blank
set FileName=" Timer.txt"
echo 
---- Record----   >> %FileName%
echo %
date% %time>>  %FileName%

pause

echo 
"End testing"
echo %
date% %time%   >> %FileName%

pause

echo 
"The timer records "
type %FileName%

pause


--
Happy day, happy life!