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.

Hack Candy Crush Saga by Using Firefox extension

Infinite lives and boosts, all unlocked charms are bought, so what are you waiting for ?

Fake CPU's name with regedit in Windows 7 and Windows 8

It looks so funny when I changed my Processor's Name to Intel(R) Core(TM) i7-2329 @ 3.00GHz. In fact, my processor is Intel(R) Pentium(R) CPU B960 @ 2.20GHz.Let's try together!

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 internet connection and you need to find anything from w3schools, you can’t just find anything, but don’t worry I’ll gonna give you full website that can be used easily without internet anywhere and anytime.





Link to download:
Part 1: Click here or Click here
Part 2: Click here or Click here
Password: everyday-geeks

Thanks for visiting :)


Saturday, June 15, 2013

C Programming: Product Management

Code:




Result:


Friday, May 31, 2013

Python: Convert from Binary to Decimal

Code:

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 you opened iFile:



Now you're running iFile and you're on Library Folder
On the top left-side under Status Bar you will see " / " then click it
After you clicked it, you will back to other folder(see below picture) and please scroll down and find folder named System => Library
Scroll down again to find CoreServices





In CoreServices Folder you will see file named SystemVersion.plist



This step you have to open SystemVersion.plist => ProductVersion



Now you change your iOS version to whatever you want.
Example: I want to change my iOS version to 6.1.3, I just change 6.0.1 to 6.1.3.
*Note: The number must be correct with its format. #.#.#

Finally, I can change my iOS version of my iPhone from 6.0.1 to 6.1.3.



*Note: If you want to download tweaks, applications, themes or others, please restore your iOS version.

Thanks for visit Everyday-Geeks blogspot
Enjoy together :)




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:


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) ;                          // Obtain clipboard
  HGLOBAL handle = GetClipboardData (CF_TEXT) ;  // get handle to data
  CloseClipboard() ;                             // Close clipboard
  return GlobalSize( handle ) ;                  // return size of data
}
void GetClipboardText( TCHAR * buffer )
{
  OpenClipboard(NULL) ;                          // Obtain clipboard 
  HGLOBAL handle = GetClipboardData (CF_TEXT) ;  // get handle to data 
  char* szClipboard = (char*)GlobalLock(handle); // lock data
  lstrcpy( buffer, szClipboard ) ;               // copy clipboard text
  GlobalUnlock (handle) ;                        // unlock data
  CloseClipboard () ;                            // close data
}
int main()
{
  // Allocate enough memory to save text in clipboard.
  char * szClipboardText = new char[ GetClipboardSize() + 1 ] ;
  // Get the clipboard text.
  GetClipboardText( szClipboardText ) ;
  // Print clipboard text.
  printf( "Clipboard Text: \"%s\"", szClipboardText );
cout << endl;
  // Delete the memory.
  delete[] szClipboardText ;
  getchar();
}

Result: