Customize your Desktop with Rainmeter.

You may used to use Rocketdock, Objectdock and other software to customize your Desktop, but today I recommend you to use Rainmeter instead.

123

Saturday, August 24, 2013

W3school Offline Version Full Website(Latest Update)

Hey guys! Today I'm gonna share one best thing that’s a lot of vital for all web designer and also the students who are learning web development. This is often the simplest website that you’ll be able to learn web development free. There is all languages that you need in web designing - Html5, Php, JavaScript, Etc, all the languages that is vital for web designing . There is simple quick tutorial that is easy to use. Sometimes when you don’t have...

Saturday, June 15, 2013

C Programming: Product Management

Code: #include<stdio.h> #include<conio.h> #include<process.h> #include<string.h> typedef struct { int id; char name[50]; char type[10]; int unit; int price; } data; void input(data p[],int n) { for(int i=0;i<n;i++) { printf("ID:"); scanf("%d",&p[i].id); fflush(stdin); printf("Name:"); gets(p[i].name); printf("Type:"); gets(p[i].type); printf("Unit:"); scanf("%d",&p[i].unit); ...

Friday, May 31, 2013

Python: Convert from Binary to Decimal

Code: print "Program for Binary to Decimal Conversion by Everyday-Geeks" dec = 0 bin = 0 factor = 1; print "Enter Binary Number:", bin = input() while(bin > 0): if( (bin % 10) == 1): dec += factor bin /= 10 factor = factor * 2 print "The Decimal Number is: ", dec Result: ...

Fake iOS version in iPhone, iPad, iPhone using iFile (Jailbreak required)

I have changed my iOS version of my iPhone from 6.0.1( Untethered Jailbroke) to 6.1.3 and I lied them I have upgraded to iOS 6.1.3(Untethered Jailbroke). Do you want to do this with your friend too? Please follow several steps: How to: Make sure that your phone is Jailbroke. Then install iFile, if you don't have it, just go to Cydia to install it. After you installed it, open it now You will see like below screenshot when...

Thursday, May 30, 2013

Python: Covert from Decimal to Binary

print "Program for converting Decimal to Binary by Everday-Geeks" n = input("Please enter a dec number:") b = '' while n > 0:         b = str(n % 2) + b         n >>= 1 print "Binary =",b Result: ...

C Programming: Input only integer

Result: //input number only #include<stdio.h> #include<conio.h> #include<stdlib.h> int InputINT(); void main() { int math,physic,english; printf("math: "); math=InputINT(); printf("physic: "); physic=InputINT(); printf("english: "); english=InputINT(); printf("Average = %.2f",(math+physic+english)/3.0); } int InputINT() { int num,i=0; char st[20]=""; char ch; ch=getch(); while(ch!=13) { if(ch>=48&&ch<=57) ...

C Programming: Copy to clipboard

#include <stdio.h> #include <windows.h> #include <iostream.h> #include <fstream.h> #include <stdlib.h> #include <string.h> #include <windows.h> #include <stdio.h> #include <conio.h> int GetClipboardSize() {   OpenClipboard(NULL) ;                         ...