Pages

Monday, November 5, 2012

SMpool - Study Material Pool


Hi all,

we have created new public website http://SMpool.com . to provide free service for everyone to Share - Search - Download any study material.. I need all of your support and encouragement to reach one who needs it..

Also it has free webhosting service with many free features. To know more about thease, please visit below links

Show your Encouragement by subscribing to below social networks,






Tuesday, October 23, 2012

C# code for ADFLY API and it works for similar services

Do you want program to create dynamic short url from your application?? Then here is the class file written in C# programming language. This is very simple code and any one can modify and reuse this code. Also enhancement are appreciated if you have done on top of this code. This is specifically written and tested for adf.ly short url service. Just by modifying APP_ID and USERID you can use it for your url shortner account.

Here i provided full class file written in C#.NET technology. Below this class program, i have provided how to call this class. Calling this service is pretty much simpler and just two line needed. Use GenerateShortUrl function under try catch block, you can see any error occurred in class file as an exception; otherwise you will get short url successfully obtained from adf.ly website.

Code C#


using System.Net;
using System.IO;

 public class UrlShortService
    {
        private string _APIKEY;
        private string _UID;
        public enum AdvertType {Banner, FullPage};
        public enum Domain {Adf_ly,q_gs};
        private string  _AdvType;
        private string  _Domain;
        private string _UrlBaseAddress;
        private string _RequestURL;
        private string GetAdvType(AdvertType adv)
        {
            string tmpAdType;
            if (adv == AdvertType.FullPage)
                tmpAdType = "int";
            else
                tmpAdType = "banner";
            return tmpAdType;
        }
        public UrlShortService(string APPKEY, string UID, AdvertType AdvType, Domain DomainType)
        {
            _UrlBaseAddress = "http://api.adf.ly/api.php";
            _APIKEY = APPKEY;
            _UID = UID;
            _AdvType = GetAdvType(AdvType);
            _Domain = GetDomainName(DomainType);
            _RequestURL = string.Format("{0}?key={1}&uid={2}&advert_type={3}&domain={4}&url=", _UrlBaseAddress, _APIKEY, _UID, _AdvType, _Domain);
        }

        public UrlShortService(AdvertType AdvType)
        {
            _UrlBaseAddress = "http://api.adf.ly/api.php";
            _APIKEY = "1a01cb1aa861a0d11f293beba530e6a7"; //provide your appkey
            _UID = "2655514"; // provide your User ID
            _AdvType = GetAdvType(AdvType);
            _Domain = GetDomainName(Domain.Adf_ly);
            _RequestURL = string.Format("{0}?key={1}&uid={2}&advert_type={3}&domain={4}&url=", _UrlBaseAddress, _APIKEY, _UID, _AdvType, _Domain);
        }

        public UrlShortService()
        {
            _UrlBaseAddress = "http://api.adf.ly/api.php";
            _APIKEY = "1a01cb1aa861a0d11f293beba530e6a7";
            _UID = "2655514";
            _AdvType = GetAdvType(AdvertType.Banner);
            _Domain = GetDomainName(Domain.Adf_ly);
            _RequestURL = string.Format("{0}?key={1}&uid={2}&advert_type={3}&domain={4}&url=", _UrlBaseAddress, _APIKEY, _UID, _AdvType, _Domain);
        }

        
        public string GenerateShortUrl(string UrlName)
        {
            string Result;
            try
            {
                HttpWebRequest httpReq = (HttpWebRequest)HttpWebRequest.Create(_RequestURL+UrlName);
                HttpWebResponse httpResp = (HttpWebResponse)httpReq.GetResponse();

                Result = new StreamReader(httpResp.GetResponseStream()).ReadToEnd().Trim();

                if (Result.ToLower() == "error")
                {
                    throw new Exception("ShortUrl Response Error");
                }
            }
            catch (Exception err)
            {
                throw new Exception("ShortUrl Conversion Error: " + err.Message);
            }

            return Result;
        }        
        
        }

How to Use:


            UrlShortService urlshort = new UrlShortService();
            string ShortUrl = urlshort.GenerateShortUrl("http://intbuzz.blogspot.com");

ShortUrl contains value
 http://adf.ly/DxO9t

Please feel free to ask any doubts in your mind. Also provide comment if it is useful to you.

Wednesday, July 11, 2012

Ainol NOVO 7 ELF II Detailed Specification and Review

Ainol NOVO 7 ELF II Detailed Specification:

Model Name Ainol NOVO 7 ELF II
CPU Dual-Core ARM Cortex-A9 based AMLogic 8726-M6 1.5GHz
GPU Dual Core Mali-400 x 2
Operating System Google Android 4.0.3 ICS
Display 7.0 inch Capacitive Multi-touch Screen(5 Points)
1024 x 600 (16 : 9) pixels high resolution LCD
RAM 1GB DDR3 RAM
Internal Memory Built in 8GB Memory (Android System consumes about 2.2GB)
External TF Card Supported upto 32 GB
Camera 2.0MP Front Facing
Bluetooth No
GPS No
WiFi Support WIFI 802.1 b/g/n
Gravity Senser Built-in 3D gravity sensor, super sensitive.
Flash Support Flash 10.2 (Adobe designed for Amlogic)
Battery 3700 mAh
I/O Ports 1 x TF Card Slot
1 x mini HDMI 1.4
1 x mini USB OTG
1 x Mic
1 x Speaker
1 x Power Input
1 x 3.5 mm Jack
1 x Home Button
1 x Volume +/- Button
1 x Power Button
1 x 2.0 MP Camera
Dimention 189.3 x 120 x 11.2 mm,  330g
Video Format WMV / ASF / MP4 / AVI / MPG / RV10 / DivX / VC-1 / MPEG-2 / MPEG-4 / H.263 / H.264 / 3GP / 3G2M4V / etc…
Audio Format MP3 / WMA / WAV / MIDI / AAC / AAC+ / eAAC+ / AMR-NB / AMR-WB / QCP / M4A / etc...
Photo Format JPG / GIF / BMP / PNG / etc...
Office Format Word / Excel / PDF / Power Point / TXT / ePub / etc...
Android Market Yes, In the name of MID ELF II
USB OTG Keyboard, USB, LAN, Laptop/Desktop
3G Dongle HUAWEI E1750
HUAWEI E1916
HUAWEI E261
HUAWEI E353
HUAWEI EC122
HUAWEI EC1261
HUAWEI EC150
HUAWEI EC156
HUAWEI EC167
HUAWEI EC189
HUAWEI EM770W
ZTE AC2736
ZTE MF110
ZTE MF190

Useful Links:
Read androidbox review
Ainol India website

Ainol NOVO 7 ELF II is a Best Choice in Current Tablet PC Market


When i was searching for alternative tablets to beelabz, i came to know that, our money should be worthier for next few years technology. It should have some good hardware specification so that i can easily upgrade latest android OS to experience its latest features in my tablet itself..

I feel there are two good alternatives tablets exist in this market. One is Manufactured by Google and another is from Ainol NOVO. Google arrival to India might be delayed, may be this year end or beginning of next year and also it has its own drawbacks.. So Ainol novo is left in my option.

Shenzhen Ainol Electronics Co (Ltd) is a Chinese consumer electronics manufacturer and distribution company in Shenzhen, Guangdong province in China since 2004. In December 2011 Ainol launched the world's first Android 4.0 Ice Cream Sandwich tablet called NOVO7 and was marketed with the brand name Ainovo for the United States, Europe and worldwide market. Also they have open forums so that we can get help on any software or hardware issues.

There are several models available in NOVO 7 Series. Out of which i felt NOVO 7 ELF II and NOVO 7 Aurora II models are comes with good configuration. Both the models have same configuration except Display panels, ELF II comes with LCD Display and Aurora II comes with IPS Display panel. Cost wise also Aurora II is 3-4 thousand rupees more than ELF II. But for normal human eye cannot identify LCD display vs IPS panel display so quickly. Also, there no major difference between these two tablet.

After a lot of search and research done on almost all shopping sites and forums, i decided to go with NOVO 7 ELF II model. The next part of model selection is where to buy this model?? Product should be genuine and should be get it with lesser price, also seller should be good enough to understand our problems before and after order placement in their shop.. So finally i chose Trade Radius (now its ainol india official store) shop from Ebay, because i can get protection on my payment from ebay and he is a good seller and he has 100% positive feedback.

Finally, i placed order at Trade Radius (now its ainol india official store) ebay shop on July 2nd and got my tablet on 10th morning. This tablet is genuine AINOL NOVO 7 ELF II from China and shop owner has changed the default language from china to English for our quick access and not to worry about language change problem in first time use. I Dont have much time to explore this tablet so far. Till now i am happy about the performance, display, and interfacing support with external devices..

I am trying to explore much on this tablet. I will post more about this tablet soon on this blog.

Useful Links:
Ainol Novo Official Site (Chinese)
Ainol Novo Official Site (India)
Ainol Novo Official Forum
Ainol Novo Official Store
Shop ELF II @ AinolIndia Ebay Store

Read Detailed Specification and Review of ELF II tablet

Monday, July 9, 2012

INTBuzz is Switching to Power Saving Mode

Recently i came to know that we can save power by switching off the lights in monitors which are not going to help in reading. So I am also switching off lights in all our client systems, which greatly helps in saving power on earth.


This works pretty simple, but first we need to understand how LED/LCD monitors works.. In layman terms we can say, generally all monitors comes with thousand and thousand of LED/LCD bulbs arranged horizontally in many lines.. Usually 3 bulbs (Red, Blue, Green) are used to represent one pixel. When white color needs to be displayed then all 3 bulbs needs to be switched on, If we need black color then all bulbs needs to be switched off. By varying bulb voltages of all three bulbs provide different shades of color.

So in this blog we are switching off many of the monitors bulbs which doesn't provide any useful information (like background) and we will switch on only few bulbs which are going to provide some useful information. In this way I am going to support GO GREEN by switching off monitor lights at my blog viewer end.

Please spread this with your friends and family to save energy on earth.. :) :)

Read Few Articles on Net: