Posts

Showing posts from September, 2012

Solving Stray error in CPP during compilation

Image
You may noticed error saying " Stray error in the line ...".What you want to do is that you want to delete the whole line ,where the compiler say there is an error.. and RETYPE the whole line.Thats the only reason to solve the issue.... This is because there will be some special character  which may not be visible.We need to avoid these special  characters and then compile...

Hide Folder in Windows Using DOS Command

Image
As  you may know,there are many softwares availabe for hiding folders.or you can use the File>>properties itself.But that one will be visible to all(By other methods).Her i say a technique by which you can hide anything inside a folder and that folder will just vanish to thin air........ Wahh.. This is what you want to do... Consider the file you want to hide is "abc"... Open up CMD 1.Go to the location where the folder exist,In the pic, you can see the abc folder 2.Now type attrib +a +s +h +r folder_name In here attrib +a +s +h +r abc Done!! 3.Now to unhide the folder Type  attrib -a -s -h -r abc In the below fig ,you can see its gone.....No more abc..Hav Fun

Route Delete Command in Ubuntu

Image
If your switch is off  for a moment then the LTSP server will create an another default route causing a local route . This will block the internet connection. To make it work type  Step 1:-   Type: route This will display all the path  Step 2: Type :- route delete default

Installing PERL in Windows / Beginner For Perl

Image
For installing the Perl you need to download Perl from their website which is about 69 MB. Step I: Download Perl from perl.org Step II : Now create a program with extension in .pl with the help of notepad.An example code is given below #!/usr/local/bin/perl      print "Hello Perl \n"; Step III: Now from start menu search for Perl command line and open it.Then get to the location where the program file exist. Now:                                                           perl filename.pl                                                There.. u get the output in Perl.....