Friday, November 6, 2020

Tuesday, August 28, 2012

Let Now Start With Microsoft.Net Tricks

So first get visual studio in your system, download it from this link http://msdn.microsoft.com/en-us/aa570309

I will come soon with the tips and tricks of visual studio and .NET.

Monday, November 14, 2011

Lets Have some fun with Google

Open Google.com and type the following to get some wonderful refreshing moments

tilt                                 :-Your page tilts a little

do a barrel roll             :-your page rolls completely

Now open a new browser and copy paste the following address
www.mrdoob.com/projects/chromeexperiments/google_gravity/

You will get a page.
The moment you move your mouse,google will collapse infront of you,and u can play with google like any thing

Thanks for reading this artical

Sunday, September 4, 2011

Starting GlassFishServer Manually

Sometimes glassfish server is installed but its not visible in the program files.
Here is how you can start it manually by going to glassfish installation folder.

Use command prompt and navigate to "bin" folder of glassfish and type the following command

C:\Program Files\glassfish-v2\bin>   asadmin start-domain domain1


where domain1 is the default domain name.

Now server will be started.

Thursday, July 21, 2011

Starting Tomcat Server through Command Prompt

Most of Us start the Tomcat Server either
  • By double clicking tomcat_home\bin\  tomcatX.exe
  • By using Services in Service Manager
  • By using the short cut in System-tray(area where u see time)
But SomeTimes due to virus,TomcatX.exe may not be present in bin folder or may not be working
Reason may be anything,But Problem is You are unable to start the tomcat server.

So One more way is there,which Some people Knows,But Few People Shares

Open Dos and navigate to the bin folder of Tomcat and type the following
c:\Tomcat 6.0\bin>java -jar bootstrap.jar

It will start the tomcat.Notice that in your bin folder we have bootstrap.jar which is not a normal jar file.Its Executable jar file.
When you say >java -jar bootstrap.jar,    org.apache.catalina.startup.Bootstrap  class gets Executed.
and you get the Tomcat Console


 




Sunday, July 17, 2011

Opening Facebooks,Orkuts in Offices

Practically i have seen,Software companies generally dont allow users to open facebook,orkut. in offices.
There is a very simple trick to cheat them.

instead of typing http://www.facebook.com/
type https://www.facebook.com/
 and so on.

The entire magic is on HTTPS. I have used it and it worked.Hope it will be same for All
Cheers

Monday, July 4, 2011

Oracle Architecture

Oracle is a database s/w.
It can be divided into multiple partition.
Each partition will be identified by one global database.
By default when you install oracle,we have only 1 partition,which is identified by one global database.
ORCL for oracle enterprise edition(changable)
XE for oracle express Edition.

Each Db may contain many user,
and each user may contain multiple tables
and each table may contain multiple rows and columns

Thats the story of Oracle Architecture