Friday, October 24

Gmail Next Step is 'Inbox'

Google has been release their new solution to the gmail and it call "Google Inbox". Google inbox available as an app for a web and mobile device (iOS and Android). 

To use this new app Gmail users have to get invitation from Google, you can request a invitation by sending a mail to this e-mail address inbox@google.com. It is a good thing this app isn't mandatory, because it will take some time for the world to get used to it.

       
  

Thursday, October 2

Windows 10

Microsoft announced the next version of its Windows operating system: Windows 10. 

Yesterday Microsoft launch Windows Insider Program which will offer to download windows 10 beta in free. In Windows 10 Microsoft introduce lot of new features but most of them already use in GNU/Linux, so I think Microsoft still behind the game. But we have to wait until release its final product. 

Thursday, September 18

iOS 8 upgrade waiting for you.

If you are an iPhone user and who is not with the latest iPhone, still you can enjoy some of new features with your old apple mobile device. For that you need to upgrade your old iPhone OS to latest iPhone 6 OS which is call iOS 8. 

On Wednesday Apple Inc released their latest mobile operating system to public, it will support most of the old iPhone and iPad models. iOS 8 support some magnificent features so some old devices not have capabilities to support those features, but don't worry there are lot of other updates in iOS 8 to boost your old apple mobile device. 

Below is the list old apple device that support iOS 8.

  • iPhone 4S
  • iPhone 5
  • iPhone 5S
  • iPhone 5C
  • iPad 2
  • iPad 3
  • iPad 4
  • iPad Air
  • iPad Mini
  • iPad Mini 2
  • iPod Touch 5G     




Wednesday, September 17

Strange looking calendar

Today when I surf the internet I found a new calendar design and it is bit strange to me so I thought to share it with you. 

  

iPhone 6 first day orders

Apple Incorporation said "Many customers will need to wait until next month for their new iPhones" because of first day pre-orders made by customers. 

In the launching day pre-orders hit the 4 million record and its double the number for the iPhone 5 launch. According to the analysts Apple expect to 10 million orders in first week. 

Apple said reason for this demand is because of the larger display and longer batter life on new iPhone 6.
      

Tuesday, September 16

Microsoft pays $2.5 billion for Minecraft maker Mojang

Microsoft going to acquire the main developer of the game call "Minecraft", that is a long-running hit game. This lego-style game released 2009 and so far 100 million users are downloaded to their PC. It is the top paid app for apple iOS and android operating system in United State.

This deal is expected to close in late 2014 and this deal is worth $2.5 billion. Microsoft expects the acquisition to be break-even in fiscal 2015. 


This acquisition going to change Microsoft gaming development and it will help to expand the Microsoft gaming division.  

Monday, September 15

Bacteria Work as Hard Drives

A group of Chinese students have developed a method to store complex data in the living bacteria. This discovery help to saving text, images, music and video in a living cells. This might be the safest way to store data, because bacteria constantly reproduce. A group of single-celled organisms could store a piece of information for thousands of years.

Bio-storage, the term for storing and encrypting information in organisms, has only existed for close to a decade, but new discovery allow to store more complex information in organisms. 

Most amazing part of this discovery is "Capacity", one gram of this type of bacteria can hold the same amount of information as 450, 2,000 GB hard drives.  





  

Friday, September 12

It's time to change your Gmail password



Around 5 million Gmail usernames and associated passwords were leaked on a Russian Internet forum on Tuesday.

Thankfully, less than 2 percent of real, current username and password combinations, or about 100,000, were released, Google's Spam & Abuse Team wrote in a blog post. Many are old and many don't match -- for example, the user name is for Gmail, but the password is for Facebook.

If your current Gmail password and username were compromised, Gmail would have let you know by now.

if you doubt about your Gmail account security please change your Gmail account password and activate 2-Step Verification.


Wednesday, September 10

Good download manager

Actually ORBIT Downloader is a good download manager and it is a Free product so anyone can download and use this product.

In this product contain a small application call Grab++ it is a amazing piece of application. By using Grab++ you can download most of the embedded files from site like YouTube.

My Advice is try this software and feel the features of this amazing free product because I get the advantage of this product in my life.


Friday, August 29

Wish we could say more



Apple has confirmed that it's holding an event in Cupertino, California on September 9th near its Silicon Valley headquarters.

Wednesday, August 27

Seagate 8 Tb HDD

Seagate has started to deliver the first ever 8Tb desktop hard drive. These drivers come in the standard 3.5" form factor, but this drivers not go inside to your gaming PC. Right now these devices are destined for data centers where capacity is very concern. Still Seagate does not announce the price of this device but hopefully price will be cheap.


Sample Pic

Tuesday, August 26

The difference between IP4 and IP6 Addressing



The most obvious difference between the two protocols is the length of their source and destination addresses. The whole point of making the switch to IPv6 is to compensate for a global shortage of IP addresses. It only makes sense that the IPv6 protocol has a larger address space than the IPv4 protocol does.

The IPv4 protocol uses a 32-bit source and destination address. These addresses are typically represented as a series of four octets. As I’m sure you know, a typical IPv4 address looks something like this: 192.168.0.1.

In contrast, an IPv6 address is 128 bits in length. This allows for a total of 3.4×1038 (or 340,000,000,000,000,000,000,000,000,000,000,000,000) addresses. There are several different ways of representing an IPv6 address. An IPv6 address is normally written as eight groups of four hexadecimal digits, each separated by colons. For example, an IPv6 address looks like this: 2001:0f68:0000:0000:0000:0000:1986:69af

Monday, August 25

Disable the highlight border on an html input elements (Google Chrome)

Have you ever face to this issue when you develop HTML applications? I think most of the time answer will be "Yes". But don't worry today I am going to teach you how to get-rid-of this Issue.




 Let's see the solution, its pretty easy who know the CSS but for the beginners this will help.

    input[type=text]:focus, select:focus, Textarea:focus
    {
outline: 0;  /*this is how we do that ;) */
    }

if you want to disable only for a few element on your page, you can do it using pseudo class

    input[type=text].yourcssclassname:focus
    {
outline: 0; /*this is how we do that :D */
    }



Tuesday, August 12

Reset HTML Form

I hope this will know some readers but today I am going to teach who don't know about this.

Actually someone can say we can simply use HTML reset button and no need to talk anymore, "Yes you are correct" And at the same time, a huge, resounding "No you are wrong" because when we use reset button it reset to default only the visible form elements so how about hidden fields.


So without further gilding this is how we can do it.


function fn_clearform(){
     var frm_elements = document.yourformname.elements;
     document.yourformname.reset();
     for (i = 0; i < frm_elements.length; i++)
    {
        field_type = frm_elements[i].type.toLowerCase();
        switch (field_type)
        {
            case "hidden":
            frm_elements[i].value = "";
               break;
            default:
               break;
        }
     } 
}



Monday, August 11

If anybody want to know about Storing and Retrieving Images from SQL Server Using Strored Procedures and C#.net Please go to my Article in the codeproject 

below is the link to that article  
Storing and Retrieving Images



Thursday, August 7

Are you wanted to browse fast in windows?


Are You Wanted to Browse fast in windows, Then Remember these commands. This will really save a lot of time of your. There are many Commands which you might have never seen or never knew.


Windows Run Commands

1. Add Hardware Wizard = hdwwiz.cpl
2. Add/Remove Programs = appwiz.cpl
3. Character Map = charmap
4. Clipboard Viewer = clipbrd
5. Computer Management = compmgmt.msc
6. Folders Properties = control folders
7. Fonts = control fonts
8. Keyboard Properties = control keyboard
9. Mouse Properties = control mouse
10. Java Control Panel (If Installed) = javaws