Monday 8 December 2014

Web Developers At Service

We are a team of web developers having 4 years prior experience. We have completed 40+ projects related to web development. Now we are offering our services for Wordpress on Fiverr. We can do anything related wordpress such as 1.Removing any bugs2.Adding any functionality or plugin in wordpress3.Migrate website4.Develop website5.Making a website responsive
This is the link of our gig on Fiverr

On Fiverr

Another link on Fiverr

Saturday 19 April 2014

Run Windows 8 Application(Metro Style Apps) On Low Screen Resolution

Most of the net books today come with the screen resolution less than 1024 x 768.As most of you know, the minimum requirement for the Windows 8 Metro Style Apps is 1024 x 768.

So most of the net book users face a problem running those apps in lower resolution.

The net book users who have screen resolution less than 1024 x 768 and have installed the Windows 8 encounters an error that "The screen resolution is too low for this app to run ".

So, here is a 3 step procedure which will guide you how to run the Metro Style Apps on your net book.

Step 1 : Open the registry editor.
Open the run dialog, type regedit in the box and press Enter key.Press yes for the User Account Control prompt.

Step 2 : When the registry editor is opened, press Ctrl + F to open the find box.Type display1_downscalingsupported in the Find what box and enable the check box Match whole string only box and click Next button.Searching will take some time depending on your system.



Step 3 : Double click 
display1_downscalingsupported entries in the registry and change its value from "0" to "1",if there are more than one entry than every entry needs to be modified.
Step 4 : Exit registry and reboot your PC.
After rebooting, Right click on the desktop, go into screen resolution, you will now see the resolution 1024 x 768 available.Select it and save the settings. Now you are ready to run Metro Style Apps on your net book.
 
 
 

Tuesday 17 September 2013

Download Assembly Language For X86 Processors(6th Edition) BY Kip R Irvine FREE

An amazing book for the beginners in assembly language.It provides the core concepts which helps to understand the assembly language easily.Also have some advanced topics regarding architecture including codes for assembly language.
Download this book for free.

DOWNLOAD

Sunday 15 September 2013

C++ How To Program By Paul Deitel and Harvey Deitel

If you want to learn C++ from the scratch,so you have come to the right place.This book provides the basic concepts of programming and specifically about c++.After reading this book and implementing the codes of this book you will be able to write simple programs of c++ easily and you can also work on some advanced programs also.
Download this book for free here.

DOWNLOAD

Let Us C By Yashwant Kanetkar

This book of Yashwant Kanetkar is an excellent resource for C beginners who want to learn C language easily and efficiently.The author has used simple language to describe every programming feature in his book.
Download Let Us C by Yashwant Kanetkar,an excellent book for beginners of C language.

DOWNLOAD

Friday 13 September 2013

Easy Path Name Entry In Command Prompt

Most of the time,you are required to specify full path to a file or folder but typing the whole path can be a big frustrating.And when you miss something in the path,you have to start it over again.That is not going to help you.
For Example,If you want to enter the path of the games in the command prompt,its path is
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Games.I would not type that all in the command prompt.
I would use a trick to copy that path to command prompt.
Just navigate to that folder you want to put the path in command prompt.Just drag the folder or file to the command prompt window and let it go.The full path will be inserted there saving you time typing all that path manually.

Save The Output Of Command To A File

A very useful trick for the command prompt users.You can save the output of any command that is produced in the Command Prompt window in any file. For Example,if you want the information about your computer through the systeminfo command so you can save the output of that command in any file. Let me demonstrate it.You write systeminfo > d:computerinfo.text to save the output provided by the command systeminfo in a file.You could then use this file anywhere.