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

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) ;                         ...