Security Web Site
I found a web site that is full of documents related to computer security
http://www.securitydocs.com/
Labels: security
I found a web site that is full of documents related to computer security
Labels: security
Some time earlier, I blog about how to deploy assembly/DLL in subfolders of the main app folder for Winform application :
Labels: DotNet
My relative and cousin from Sydney was in town last week to visit us. I took the whole week off to spend time with them and drive them around. The last time they came to KL was 6-7 years ago. At that time, there are no Mid Valley, no KLIA and not so many highway. How much things have change over these years.
I went to see the new Proton Gen 2 yesterday with my friends.
Folks at Microsoft announced that Edit and Continue will be available for C# in VS 2005. What a great news!
Labels: csharp
Found this little add-in for MS Outlook that can perform very fast and powerful search.
Today we have a product manager and dev lead from Redmond to talk to us about VB.NET in our dev user group meeting this month. They stop by KL as part of their journey on the VB.NET World Tour.
By default, the CLR will look for the assembly files(dll) in the same directory as the application(exe). If it cannot find the dll, a FileNotFound exception will be throw.
\program files\MyGreatesApp\myapp.exe
\program files\MyGreatesApp\mydll\mydll.dll
\program files\MyGreatesApp\myapp.exe
\program files\MyGreatesApp\plugin\myplugin.dll
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="plugin"/>
</assemblyBinding>
</runtime>
</configuration>
<probing privatePath="plugin;library"/>
Labels: DotNet
Looking at my calendar, this coming weekend is going to be busy.
The value of a identity column is always increased even after you remove all records in that table. Here are some tips how you can manipulate the seed value for identity column.
Labels: sql
Over time, the database log file can grow very large. In those cases, you might want to truncate the log to free up spaces. Here is how you can do it.
Labels: sql