2010-07-08

Enjoy booting your pc with Soluto

Few weeks back I’ve written a article about a very nice software call What Is My Computer Doing which give you information on what processes is currently running on your pc. While the tools is nice if you need to tweak you pc for software that is actually consuming the resources, but it doesn’t have the ability to control the processes from starting during boot.

Soluto, a Free software which is called the “Anti-Frustration Software” can help you on this. This software main functionality is to help you to tweak your pc booting time without breaking anything. After installation Soluto will startup together with windows and it will analyze all the processes that startup during booting, it will later shows a graphical interface where you have see more information on the exact amount of time each process taken to startup, it also allows you to Pause or Delay it’s startup to boost your pc startup time.

The details of each processes are driven by the community updated wiki, showing you a recommended setting to tweak it’s startup. If you have more information on the processes, you could also share it with others.

And the best of all, its FREE.

Get Soluto from http://www.soluto.com/Download/

2010-06-25

Install Windows Automation API 3.0 to make Visual Studio 2010 runs faster.

According to MS Knowledgebase article id 981741, visual studio can run faster if the Windows Automation API 3.0 is installed.

Read more from here http://support.microsoft.com/kb/981741

2010-06-23

Observer in .NET 4.0 with IObserver(T)

Observer in .NET 4.0 with IObserver(T): "The IObservable(T) and IOberver(T) interfaces are part of base class library of .NET 4.0. It's great that there is now a out of the box solution to implement the observer pattern. The article shows with a simple example how the two interfaces should be used."

2010-06-07

Setting xUnit as External Tools in Visual Studio

To set xUnit as External Tools in Visual Studio:
  1. Go to Tools > External Tools
  2. In the screen shown, configure as follow.
  3. Command field is pointing to xunit.console.exe (xunit.console.clr4.exe if using xUnit 1.6)
  4. Arguments fields does the main trick. You should set it as :
    $(BinDir)$(TargetName)$(TargetExt)
image
  • Check the Use Output window as well to user the Visual Studio Output windows, instead of command prompt.
  • You can further drag the xUnit External Tool as a button in your toolbar, or set a shortcut key for it.

2010-06-05

Easy upload photos from Windows Live Photo Gallery to Facebook.

If you are using Windows Live Photo Gallery to manage your photos on your computer, then you definitely need to install “LiveUpload to Facebook” .

LiveUpload to Facebook” is a plugin to Windows Live Photo Gallery available for free. After install the plugin you will have an option to upload photo to facebook in your Publish > More Services menu.

Once clicked, you will be prompted to choose an account to login with.

You can download it Here Download LiveUpload to Facebook

2010-06-04

Configure IP address / Network Connection from Command Prompt

Easy guide to configure your IP address / Network Connection from Command Prompt.

http://www.petri.co.il/configure_tcp_ip_from_cmd.htm

2010-06-02

Start Control Panel's item from command prompt

Here is a good list of command that you can use to start Control Panel item's from the command line.

http://en.kioskea.net/faq/403-command-prompts-for-windows

2010-05-30

What Is My Computer Doing.

What Is My Computer Doing by www.itsth.com is a software that monitor your pc for software activities. It let your monitor your pc in real time on what each program / software is doing on your pc, e.g. accessing hard disk, or closing.

This software is very useful when you need to check which software is utilizing your cpu.

 Download What 's my computer doing? [479 KB] >>

2010-05-24

C# Type safe casting and explicit casting

Explicit casting :
Label label = (
Label)e.FooterRow.FindControl("lblNAme");

if (label != null)
{
// Todo :

}

Type safe casting :
Label label = e.FooterRow.FindControl("lblNAme") as Label;
//'is' keyword is used in conjunction after 'as', to provide
//a more intuitive
then comparing to null as in explicit casting sample
if (label is Label)
{
// Todo :
}




2010-04-28

Using custom ObjectDataSource with Gridview



Using ObjectDataSource on existing POCO object with GridView.


And use GridView's footer as the input template.

source :

http://www.highoncoding.com/Articles/139_GridView_With_ObjectDataSource.aspx


Support for Gridview Editing / Deleting

2010-03-26

Make programs / application from XPMode available to Windows 7

Make programs / application from XPMode available to Windows 7

Creating a shortcut to an application in the
C:\Documents and Settings\All Users\Start Menu\Programs folder,
application will auto-publish to the Windows 7 Start menu.

2010-03-10

Display tag library for J2EE developer

The display tag library is an open source suite of custom tags that provide
high-level web presentation patterns which will work in an MVC model. The
library provides a significant amount of functionality while still being
easy to use.

http://displaytag.sourceforge.net/1.2/

Java developer's best friend - OpenSymphony

OpenSymphony is an Open Source project dedicated to providing enterprise
class J2EE components. Our components aim to stress simplicity,
integration, pluggability and specification compliance. Please see the
individual projects for more information.

http://www.opensymphony.com/

2010-02-24

VB Script function to strips HTML tag

Private Function StripHTML(byVal strWithHTML)
Dim tagStart, tagEnd, strNewHTML
strWithHTML = Replace( strWithHTML, vbTab, "" )
strWithHTML = Replace( strWithHTML, vbCrLf, "" )
strWithHTML = Trim( strWithHTML )
do
tagStart = Instr(strWithHTML, "<")
tagEnd = InStr(strWithHTML, ">")
strNewHTML = Mid( strWithHTML, tagStart, tagEnd - tagStart + 1)
strWithHTML = Trim( Replace( strWithHTML, strNewHTML, "" ) )
loop until Not Instr(strWithHTML, "<") AND Not Instr(strWithHTML, ">")
If Instr(strWithHTML, "<" )Then
strWithHTML = StripHTML( Trim( strWithHTML ) )
End If
StripHTML = Trim( strWithHTML )
End Function

2010-02-22

How to Bridge Network Connections in Windows 7

How to Bridge Network Connections in Windows 7

1. Plug in your console (WII, Xbox 360, PS3) and allow it to acquiring
ip address.
2. click on the Windows button and type "network and sharing center" and enter
3. on the left right under manage wireless networks, should say change
adapter settings click that
4. right click local area connection and disable it.
5. right click local area connection and click properties.
6. there should be a tab that says sharing go to that tab.
7. there is a box that says allow other network users to connect
through this computers internet connection. uncheck it if it is
checked.
8.hit ok then right click local area connection and enable it.
9 now select both your wireless network connection and the local area
connection and right click and it should have the option to bridge
connections. when you click bridge it will do its thing and should
work when its done.

A network bridge is just letting one device pass through another's
network connection. No routing or NAT is needed.

source : http://forums.cnet.com/5208-19411_102-0.html?threadID=326988

2010-02-08

Yet another easy GIT Guide (GIT)

Another site that provide easy to follow guides to using GIT.

http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html

It's a very structured and simple website. Must read if just started to learn GIT.

ShareThis