Back to Usual
The 4 weeks cram all day coding session is finally over.
I’m back in boring facility all day long.
Life sucks.
The 4 weeks cram all day coding session is finally over.
I’m back in boring facility all day long.
Life sucks.
Today , we will install the software to our client.
What will happen ?
I hate to think what’s next
I have the strangest feeling that I have been at this situation before.
Does my mind play tricks on me ?
Or is it real ?
Today I finally figure out how to disable Adobe CS3 auto update feature, it’s been bugging me ever since.
It’s describe at http://www.adobe.com/go/kb402251
Essentially you need to manually edit your AdobeUpdaterPrefs.dat located in …\Documents and Settings\[username]\Local Settings\Application Data\Adobe\Updater5
Add <AutoCheck>0</AutoCheck> in it
After wondering what is “having a below means”, finally I realize that the new rapidshare captcha is for letters with cats imprinted on them. Damn, I feel so stupid.
Humpty Dumpty on the wall, oh I wonder where you are
Sleepy head on my shoulder
Why do you sleep at 2 in the morning?
Write everyday about anything, the most important is to write.
What to write?
Who will read?
Wake up 5 in the morning, close my eyes 8 in the morning
Why am I feeling so sleepy now
Maybe because I don’t get enough sleep.
In the current project I am doing, we need to create a print out sheet. So we’ve decided to export it into a pdf document and let the user print this pdf.
But creating pdf document requires setting x, y just like drawing in programming language, it’s time consuming and boring as hell. Isn’t there another better method to produce a pdf document ?
Can someone help ?
I’ve installed NAnt 0.85 expecting it to work immediately in compiling MSBuild task. Unfortunately I painfully discovered that it doesn’t work like that. The MSBuild task produced an error complaining that .Net framework 2.0 failed.
It turns out that Visual Studio 2008 solutions standardly compiles to .Net framework 3.5 and NAnt 0.85 only compiles to .Net 2.0. After trying to find out where is exactly in the NAnt build file that specify the .Net version, it turns out that the settings is in nant.exe.config in NAnt /bin directory.
If you happens to find the same problem, you need to add the following code in nant.exe.config :
<framework
name="net-3.5"
family="net"
version="3.5"
description="Microsoft .NET Framework 3.5"
runtimeengine=""
sdkdirectory="${path::combine(sdkInstallRoot, ‘bin’)}"
frameworkdirectory="${path::combine(installRoot, ‘v3.5′)}"
frameworkassemblydirectory="${path::combine(installRoot, ‘v2.0.50727′)}"
clrversion="2.0.50727"
>
<task-assemblies>
<!– include .NET specific assemblies –>
<include name="tasks/net/*.dll" />
<!– include .NET 2.0 specific assemblies –>
<include name="tasks/net/2.0/**/*.dll" />
<!– include Microsoft.NET specific task assembly –>
<include name="NAnt.MSNetTasks.dll" />
<!– include Microsoft.NET specific test assembly –>
<include name="NAnt.MSNet.Tests.dll" />
</task-assemblies>
<project>
<readregistry
property="installRoot"
key="SOFTWARE\Microsoft\.NETFramework\InstallRoot"
hive="LocalMachine" />
<readregistry
property="sdkInstallRoot"
key="SOFTWARE\Microsoft\.NETFramework\sdkInstallRootv2.0"
hive="LocalMachine"
failonerror="false" />
</project>
<tasks>
<task name="csc">
<attribute name="exename">csc</attribute>
<attribute name="supportsnowarnlist">true</attribute>
<attribute name="supportswarnaserrorlist">true</attribute>
<attribute name="supportskeycontainer">true</attribute>
<attribute name="supportskeyfile">true</attribute>
<attribute name="supportsplatform">true</attribute>
<attribute name="supportslangversion">true</attribute>
</task>
<task name="vbc">
<attribute name="exename">vbc</attribute>
<attribute name="supportsdocgeneration">true</attribute>
<attribute name="supportsnostdlib">true</attribute>
<attribute name="supportsnowarnlist">true</attribute>
<attribute name="supportskeycontainer">true</attribute>
<attribute name="supportskeyfile">true</attribute>
<attribute name="supportsplatform">true</attribute>
<attribute name="supportswarnaserrorlist">true</attribute>
</task>
<task name="jsc">
<attribute name="exename">jsc</attribute>
<attribute name="supportsplatform">true</attribute>
</task>
<task name="vjc">
<attribute name="exename">vjc</attribute>
<attribute name="supportsnowarnlist">true</attribute>
<attribute name="supportskeycontainer">true</attribute>
<attribute name="supportskeyfile">true</attribute>
</task>
<task name="resgen">
<attribute name="exename">resgen</attribute>
<attribute name="supportsassemblyreferences">true</attribute>
<attribute name="supportsexternalfilereferences">true</attribute>
</task>
<task name="al">
<attribute name="exename">al</attribute>
</task>
<task name="delay-sign">
<attribute name="exename">sn</attribute>
</task>
<task name="license">
<attribute name="exename">lc</attribute>
<attribute name="supportsassemblyreferences">true</attribute>
</task>
<task name="ilasm">
<attribute name="exename">ilasm</attribute>
</task>
<task name="ildasm">
<attribute name="exename">ildasm</attribute>
</task>
</tasks>
</framework>