This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Windows 8: Show or Hide Hidden Files


metro

In order to change and tweak Windows 8, accessing the hidden and system files is essential.

With the newly integrated ribbon at the top of Windows Explorer, toggling the viewing of hidden files on or off has become easier than ever. For advanced settings, users may still need to access the Folder options similar to prior versions of Microsoft Windows.
1.Open Windows Explorer by clicking the Explorer icon in the taskbar. Alternatively, this can be performed through the Win key + E shortcut.
2.In the Explorer window, switch to the View tab.
3.In the Show/hide section, check the box next to the Hidden items option. If you want to reveal all file extensions, choose File name extensions too.
4.For more advanced settings, click the Options icon and choose Change folder and search options.
5.From this step, users may notice that the interface is similar to the previous Windows version. When the Folder Options window appears, make sure you are in the View tab.
6.The Advanced settings section offers similar settings to the previous OS. Options included:Hide empty drives in the Computer folderHide extensions for known file types,Hide folder merge conflicts, and Hide protected operating system files.

Useful Windows Key Shortcuts for Windows 8




Keyboard Shortcut




Details
Windows Key + X
This combination will show the textual menu which allows the user to navigate to the Task Manager, Windows Explorer, Control Panel, Run and other similar system utilities.
Windows key + E
This shortcut opens Windows Explorer on desktop. Most users will start here to browse through drives, folders, and files.
Windows key + F
If you wish to search only for files on your machine, this shortcut will filter your search only for files only.
Windows key + Q
Likewise, this shortcut is a search filter only for Applications.
Windows key + W
Search filtered for Only Settings.
Windows key + <
By holding this keys pair, the user can quickly peep at the desktop.
Windows key + P
This combination will be used if you need to connect to external devices like an external monitor or adjust projector settings.
Windows key + C
Considering Windows 8 is built around charm use, this will be one of the most popular shortcuts. It will show a notification for current date time, battery life and all of the Windows charms on right-side of the screen. These charms will differ depending on your current task.
Windows key +
Print Scrn
This will capture a screenshot of your currently opened screen and it will place the image in your pictures folder. (No more mspaint!)
Windows key + I
This shortcut opens up the Settings Panel. From here users can navigate to areas including the Control Panel, Personalization, PC Info, Network Connectivity, and Power Options for Shutdown or Restart.


These shortcuts were generated on early versions of Windows 8. When Windows 8 is released, additional shortcuts will be added if needed. Additionally, feel free to share your favorite Windows 8 shortcuts in the comments below.

Office 2013: Disable the Start Screen


Previous versions of Office programs would typically start with a blank document. However, programs in Office 2013 suit load up from a Start screen instead. Many users will not like this feature and want to open directly to a blank document. By following these steps, you can disable the Start screen from applications within the Office 2013 suite including Excel, PowerPoint, and Word.

The tutorial works for Office 2013 programs like Word, Excel and PowerPoint. However, the setting is not universal across all the Office applications. For example, changing this setting in Word will not carry over to Excel. You will have to configure the setting in each program to get rid of the Start screen for each respective application.
This Start screen gives a wide variety of options and is different than the Splash screen.
1.Launch the Office program that you want to disable the Start Screen.
2.Click the blue File button to open the Backstage view.
3.In the Backstage view, click the Options button.
4.The Options window will appear on the screen as expected. Make sure that you are currently in the General section.
5.On the right side of the window, find and uncheck the Show the Start screen when this application starts option.
6.Click the OK button to save the setting and dismiss the window.

Windows 8 - Login / Profile Picture , Background,Colour personalization Changer





Most users want to customize the look of the operating system. Tweaking the images associated with the Start and Lock screens along with the user account will personalize the appearance of your Windows 8 installation.

Personalizing the appearance of Windows is one of the first things that most users do after performing a new installation. The heavy graphics appearance of the new Windows 8 Metro environment lends itself well to customization.
About

Remover: Removes desktop water mark and prevents activation notification from appearing.
Personalization: Changes account picture, metro background, start screen picture and background color.

If u want This Change Visit here And Add me 

Join Facebook And Get Rs. 50 talk time


Facebook has silently made a smart move to add new users to the social network from India. The company is enticing users to join the social network by offering Rs. 50 talk time to every new users who signs up using a mobile phone.




So if a user registers himself/herself to Facebook through mobile using the URL - m.facebook.com/tt, his mobile number would get credited by Rs 50. Obviously, this offer is meant for new registrations only and is valid for registrations through mobile only.




Add Me On Facebook And Get My Help


Hello Frnds I'm Ankit Jain , Owner this Blog . This year (2012) is my 2 year of B.C.A . I had a computer at home since i was in 12th class in which i used to apply all computer tricks and always tried to learn new things every day. I also started C programming. 



But after getting my laptop, my life has changed. I started learning programming and hacking as a part of my daily life. I have knowledge in every field of computer (Hardware, software, networking, programming  etc.) but still i am a noob and have a long way to go. I have no certification in computers. Neither in programming nor hacking. This is my interest and google which helps me to improve myself. 

If U Want To Any Help 
Add Me Or Subscribe Me


(1) Add only 


(2) Subscribe only 



Prime Number Tester VB Progrom




In this program, I use the Select Case And Select statement to determine whether a number entered by a user is a prime number or not. 

Case 1- all numbers that are less tha 2 are prime. 

Case 2, if the number is 2, it is a prime number. In the last case, if the number N is more than 2, I need to divide this number by all the numbers from 3,4,5,6,........up to N-1, if it can be divided by any of these numbers, it is not a prime number, otherwise it is a prime number. I use a Do......Loop While statement to control the program flow. Here I also used a tag="Not Prime' to identify the number that is not prime, so that when the routine exits the loop, the label will display the correct answer.




Private Sub Command1_Click()
Dim N, D  As  Single
Dim tag As String

N = Val(TxtNumber.Text)

Select Case N
Case Is < 2
Lbl_Answer.Caption = "It is not a prime number"

Case Is = 2
Lbl_Answer.Caption = "It is a prime number"

Case Is > 2
D = 2
Do
If N / D = Int(N / D) Then
Lbl_Answer.Caption = "It is not a prime number"
tag = "Not Prime"
Exit Do
End If
D = D + 1

Loop While D <= N - 1
If tag <> "Not Prime" Then
Lbl_Answer.Caption = "It is a prime number"
End If
End Select
End Sub

Traffic Light Visul Basic Program

This Traffic Light program is a Visual Basic program designed by Ankit Jain that works like the actual traffic light. It is a nice little program. In this program, you have to insert one timer and set its interval according to your wish. Here I set it to 5000, which is equivalent to 5 seconds. Next you insert three shapes and set their shape properties to circle and fill the colors. There it goes, your traffic light is working!




The Code


Private Sub Timer1_Timer()
If Shape1.Visible Then

Shape2.Visible = True
Shape1.Visible = False
Shape3.Visible = False

ElseIf Shape2.Visible Then

Shape3.Visible = True
Shape2.Visible = False
Shape1.Visible = False

Else

Shape1.Visible = True
Shape2.Visible = False
Shape3.Visible = False

End If
End Sub

Downlaod Facebook SDK 3.0 for iOS


The Facebook SDK for iOS is coming out of beta today and is ready for use in your iOS apps. This release enables severalnew features: ready-to-use native UI controls, better session management, improved support for calling Facebook APIs and support for modern Objective-C language features.
The SDK also includes a variety of pre-built user interface (UI) components for common functions, such as Login, Friend Picker and Place Picker. Simply drop them into your apps for a fast, native and consistent way to build common features.

Login UI

Place Picker UI
Since launching the SDK in beta, we’ve received great feedback from all of you. We've taken your suggestions seriously and made several enhancements based on what you’ve said is useful to you. Here’s a rundown of the key updates:
  • Updated native UI components and added internationalization support
  • Refined and simplified core APIs, including session and request objects
  • Bug fixes and increased stability
The 3.0 release is the most significant overhaul of our SDK yet. We’ll continue updating the SDK to address bugs and feedback in the coming months. At this point, we’ll maintain two versions of the SDK: a master version that reflects our production codebase, and a beta version that also includes the forthcoming iOS 6 integration.
Start developing today to take advantage of these powerful new tools and resources. Share your feedback with us on Facebook's StackOverflow page with the tag: Facebook-iOS-sdk.
Download the SDK now.

Join Facebook and Heroku to HACK the Social Web


Join the Facebook and Heroku teams for HACK the Social Web, August 18th-19th at Heroku HQ, 321 11th Street in San Francisco.
In addition to hacking, on Saturday evening, you will have the opportunity to demo your product to the whole crowd for feedback. You can give and get real time, actionable input on what you've been working on and connect with the other developers. You'll have plenty of time on Sunday to improve your app before the judging round Sunday evening.
New to developing on Facebook? No problem. We'll have a workshop to get you started. Not sure what to build? We'll have some suggestions for you.
Registration is free. Sign up now. We hope to see you out there!

HOw to hack facebook account using cookies




Today, I am going to inform you the method to hack a Facebook account using Cookie Stealing. If you have not yet gone through my previous Cookie stealing articles, please read them before you proceed further in this article on how to hack a Facebook account.

Facebook usually authenticates its user using cookies. So, whenever user logs in to his account, Facebook server sends asession cookie to user browser and this cookie is used by server to authenticate the user. So, if you are possessing the victim account’s cookie, Facebook will grant you the access to victim account.

Facebook Authentication Cookies

The cookie which facebook uses to authenticate it's users is called "Datr", If an attacker can get hold of your authentication cookies, All he needs to do is to inject those cookies in his browser and he will gain access to your account. This is how a facebook authentication cookie looks like:
Cookie: datr=1276721606-b7f94f977295759399293c5b0767618dc02111ede159a827030fc;

How To Steal Facebook Session Cookies And Hijack An Account? 

An attacker can use variety of methods in order to steal your facebook authentication cookies depending upon the network he is on, If an attacker is on a hub based network he would just sniff traffic with any packet sniffer and gain access to victims account.

If an attacker is on a Switch based network he would use an ARP Poisoning request to capture authentication cookies, If an attacker is on a wireless network he just needs to use a simple tool called firesheep in order to capture authentication cookie and gain access to victims account.

In the example below I will be explaining how an attacker can capture your authentication cookies and hack your facebook account with wireshark.

Step 1 - First of all download wireshark from the official website and install it.

Step 2 - Next open up wireshark click on analyze and then click on interfaces.

Step 3 - Next choose the appropriate interface and click on start.




Step 4 - Continue sniffing for around 10 minutes.

Step 5 - After 10minutes stop the packet sniffing by going to the capture menu and clicking on Stop.

Step 6 - Next set the filter to http.cookie contains “datr” at top left, This filter will search for all the http cookies with the name datr, And datr as we know is the name of the facebook authentication cookie.


Step 7 -  Next right click on it and goto Copy - Bytes - Printable Text only.


Step 8 - Next you’ll want to open up firefox. You’ll need both Greasemonkey and thecookieinjector script. Now open up Facebook.com and make sure that you are not logged in.

Step 9- Press Alt C to bring up the cookie injector, Simply paste in the cookie value into it.


Step 10 - Now refresh your page and viola you are logged in to the victims facebook account.




Note: This Attack will only work if victim is on a http:// connection and even on https:// if end to end encryption is not enabled.


Countermeasures

The best way to protect yourself against a session hijacking attack is to use https:// connection each and every time you login to your Facebook, Gmail, Hotmail or any other email account. As your cookies would be encrypted so even if an attacker manages to capture your session cookies he won't be able to do any thing with your cookies. 

HOW TO PROTECT YOUR FACEBOOK ACCOUNT FROM HACKERS

Hello Friends, In this Tutorial i will follow the little different procedure to explain the things, First I will explain the methods used by Hackers to hack the Facebook account or passwords 
Several times a month I learn that one of my friends on Facebook has been hacked.
Here are some simple practices that will help to prevent that from happening

In this Tutorial I will Try to Explain All the Methods that any Hacker Can Use To Hack your Facebook account along with their prevention measures.. So Read It Carefully .. Its really a worth article and also very informative .So Enjoy Reading....



New Nokia Lumia 920 With Wireless Charger And Windows Phone 8 See It's Features




Nokia announces it's new Lumia 920 today with the windows phone 8 operating system. Nokia and microsoft plans to move forward than Apple by releasing Lumia 920. The most impressive feature of this phone is it's wireless charging. It is expected that the wireless charging will bring success to new nokia Lumia 920.


PureView. :- Take blur-free photos every time

PureMotion display. The best touchscreen ever seen on a smartphone

Nokia City Lens. Discover the city around you.

Innovative design. Charge up without plugging in

SkyDrive. All your photos, music and files, completely in sync

Nokia Music. Stream music for free


  • Our most innovative Lumia

    Take bright, blur-free photos and videos in any light conditions with PureView technology – Optical Image Stabilisation and Carl Zeiss lens - and then relive the moment on a 4.5'' PureMotion HD+ display.
  • Capture the magic

    Create perfect group photos with Smart Shoot by picking the best expression for each person.
  • Find your way

    Know more about the neighbourhood than the locals by viewing the world through Nokia City Lens.
  • Designed to wow

    Show off with vibrant colours, a one-piece polycarbonate body, and ceramic zirconium camera detailing and side keys.
10.7 mm
Nokia Lumia 920
70.8 mm
Nokia Lumia 920
130.3 mm

At a glance

  • 8.7 megapixels
    Camera sensor (main camera resolution)
  • Nokia PureView 
    Camera
  • 4.5 ''
    Display size
  • Snapdragon™ S4 
    Processor name
  • 10.0 h
    Maximum 3G talk time
  • 400.0 h
    Maximum 3G standby time
  • 67.0 h
    Maximum music playback time
Available colours




 Want To Full specifications Click Here