Posts

Showing posts from September, 2013

2 methods to Access the source of chrome extensions.

Image
  As a Developer viewing the creations of others is of great importance. I studied a lot of things in html and css because the sources of most wonderful works in css and html can be viewed easily. Now  i am sharing a method to see the source code of any chrome extensions ; " Chrome extensions that we download as .crx files are zipped html,javascript and css files. The chrome extensions are made using a combination of html css and javascript; " Method 1   1 . Go to chrome store and select any extension to see the source. 2 . Now copy the portion of the url as shown in above picture. only the lengthy string that is marked in the picture is to be copied  ( this string is unique for every chrome app) . The portion after the question mark is not needed. you should not copy the question mark also. 3 . open your user account as shown and find the folder named "AppData" and then enter into that folder. 4 . Now paste the copied...

Make your own php image conter for your website

Image
An image counter is something that is necessary in a website . The accuracy as well as the design of the counter are to  be considered while choosing a counter for your website. Even though there are many 3rd party counters available on the internet , it is common that each such counter providing sites will include  there own ads in there counter . Sometimes such ads may be annoying to the other users also . so what  i suggest is to use your own counter ; here i am providing a small php counter script that is very simple to use in your php website. The script is obtained from a third party site and is completely working . If you want ,you can edit it also; REQUIREMENTS : PHP 4.4 or newer GCount comes with many styles and you can also easily add your own styles! A few default styles are shown below: More styles included in the download! HOW TO INSTALL : The method to to install the script is there in the readme file inside the .zip file. Just rea...

List of all command prompt commands (windows)

Image
list of all commands available in windows =>   (A) ADDUSERS Add or list users to/from a CSV file ADmodcmd Active Directory Bulk Modify ARP Address Resolution Protocol ASSOC Change file extension associations• ASSOCIAT One step file association AT Schedule a command to run at a specific time ATTRIB Change file attributes (b) BCDBOOT Create or repair a system partition BCDEDIT Manage Boot Configuration Data BITSADMIN Background Intelligent Transfer Service BOOTCFG Edit Windows boot settings BROWSTAT Get domain, browser and PDC info (c) CACLS Change file permissions CALL Call one batch program from another• CERTREQ Request certificate from a certification authority CERTUTIL Utility for certification authority (CA) files and services CD Change Directory - move to a specific Folder• CHANGE Change Terminal Server Session properties CHKDSK Check D...

"g++ stopped working" - Fix error in windows 8 dev c++

Image
      " g++.exe has stopped working "  this is a general error  when you install  the new dev c++ for windows 8 and it appears when you are trying to compile a cpp file . Here i am sharing how to fix this thing easily; step (1)  Go to Tools --> Compiler Options   step (2) Make the changes like elaborated in the picture below. Thats all now you are done! Try Downloading these c++ versions if you still have trouble with your  dev c++ :   The  setup  which includes  MinGW32 4.7.0  can be downloaded  here  (25MB) . (  iam using this version in my windows 8 pc; )  The  setup  which includes  TDM-GCC x64 4.6.1  can be downloaded  here  (35MB). The  setup  which does not include a compiler can be downloaded  here  (2MB). The  portable  version which includes  MinGW32 4.7.0  ca...