Generated by All in One SEO v5.0.0.1, this is an llms.txt file, used by LLMs to index the site. # Gaurav Chandra Transparent Dealing ## Sitemaps - [XML Sitemap](https://www.gaurav.mobi/sitemap.xml): Contains all public & indexable URLs for this website. ## Posts - [Blog](https://www.gaurav.mobi/blog/) - [Freelance mobile app developers vs mobile app development companies](https://www.gaurav.mobi/blog/freelance-mobile-app-developers-vs-mobile-app-development-companies/) - > If you're looking for a reliable developer to help you develop your next mobile application, contact me today to discuss your project. When it comes to developing mobile apps, businesses have two options: hire a full-time freelance mobile app developer or outsource the work to a mobile app development company. While both options have - [How to select a contact in NativeScript Android](https://www.gaurav.mobi/blog/how-to-select-a-contact-in-nativescript-android/) - While working on an app, I came across a requirement to select contact from the phone. I wanted to open the contact picker and select the contact but NativeScript does not have it inbuilt in the platform. So, I decided to try my hand and here is the code: var intent = new android.content.Intent(android.content.Intent.ACTION_PICK, android.net.Uri.parse("content://contacts")); - [What all is needed to build a mobile app?](https://www.gaurav.mobi/blog/what-all-is-needed-to-build-a-mobile-app/) - Almost everytime a prospective client calls me, they are confused as to the exact cost of mobile app development. And I am going to explain as simple as possible so that people have an idea as to what is needed for mobile app to function. You see, mobile app per se does not work in - [Advantages of Hybrid Apps over native apps](https://www.gaurav.mobi/blog/advantages-of-hybrid-apps-over-native-apps/) - As mobile usage continues to skyrocket, businesses are scrambling to create mobile apps to connect with their customers. However, with so many platforms to consider, the decision to create a hybrid or native mobile app can be challenging. In this post, we'll explore the advantages of hybrid mobile apps over native mobile apps, and how - [You do not need a native app in 2020](https://www.gaurav.mobi/blog/you-do-not-need-a-native-app-in-2020/) - I was hired by my old client on retainership 1 month ago. They have a native android app which they got developed from a company and wanted a senior person to take care of their security. Since, I do not make native android apps, I only took the work of managing the project and doing - [Beware of Fake Reviews of Mobile App Freelancers or Mobile App Development Companies on Google](https://www.gaurav.mobi/blog/beware-of-fake-reviews-of-mobile-app-freelancers-or-mobile-app-development-companies-on-google/) - Recently I was contacted by an SEO company for doing SEO of my website. I asked them what they had to offer and they proceeded with their sales pitch. One point they stood out from their sales pitch was that they can get me fake google reviews which pushes the ranking up on google page. - [Learnings from my plumber](https://www.gaurav.mobi/blog/learnings-from-my-plumber/) - Recently I got my house's bathroom redone as the pipes had developed leakages. In India you don't get a trained and certified plumbing professional as they all come in the category of labourers with basic or no formal education. They learn their trade on the job and start their practice. Sometimes, they work as a - [Always ask questions to service providers](https://www.gaurav.mobi/blog/always-ask-questions-to-service-providers/) - Recently I met a prospective client and he told me that while searching for different companies for his requirement, he came across couple of them who marketed themselves saying that they have created apps for fortune 500 companies or major e-commerce players. On asking more, the sales guy told him that they have not actually - [Make the app private when shown in Android task switcher in NativeScript](https://www.gaurav.mobi/blog/make-the-app-private-when-shown-in-android-task-switcher-in-nativescript/) - Many times we need to hide the information of the app when in task switcher. We can do so using the following code in Android: var activity = application.startActivity; activity.getWindow().addFlags(android.view.WindowManager.LayoutParams.FLAG_SECURE); Just call the above code in your pageloaded event. - [Please take note: Do not hire part time freelancers. Period.](https://www.gaurav.mobi/blog/please-take-note-do-not-hire-part-time-freelancers-period/) - Short Version: Do not hire part time freelancers or mobile app developers or web app developers. You will have lot of headaches in coordinating and the time to go live WILL overshoot your timeline. LONG VERSION: I am working on a project for a small company based out of Bangalore. They wanted a mobile app - [Why I hate developing for iOS?](https://www.gaurav.mobi/blog/why-i-hate-developing-for-ios/) - [UPDATE:] Since writing of this post, my subequent app update was approved within 24 hours by apple! I am a mobile app developer and since I code for both iOS and Android, I have figured that Android wins every single time as far as appstore availablility is concerned. Recently a small bug went into the - [Restrict the Text Field to have limited characters](https://www.gaurav.mobi/blog/restrict-the-text-field-to-have-limited-characters/) - In html input we used to put restriction like this on the number of characters: But in nativescript you would need to code it in the code behind file like. var phoneField = view.getViewById(page,'phoneField'); var fArray = []; // 10 is the character length I want to restrict fArray[0] = - [Decoupled architecture](https://www.gaurav.mobi/blog/decoupled-architecture/) - When you are creating a software product these days it is imperative to create a decoupled architecture. Gone are those days when everything was done on one server. With the advent of cloud computing, it is cheaper and reliable to not have a single point of failure. I use the following services to create a - [Clients, you want hand holding? You got to pay for it.](https://www.gaurav.mobi/blog/clients-you-want-hand-holding-you-got-to-pay-for-it/) - I recently had a meeting with a potential client who wants to get an e-commerce business started and was under the awe of mobile apps (Yes, awe. He wanted a mobile app irrespective whether it is needed or not) and I steered him away from it because it was not the right approach for the - [Lock or change orientation on Android using NativeScript](https://www.gaurav.mobi/blog/lock-or-change-orientation-on-android-using-nativescript/) - We need to lock or change the device orientation to see a video or play a game etc. You can do so in Android using NativeScript as follows: function lockOrientation(orientation) { var activity = application.startActivity; switch (orientation) { case 'unlocked': activity.setRequestedOrientation(android.content.pm.ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED); break; case 'portrait-primary': activity.setRequestedOrientation(android.content.pm.ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); break; case 'portrait-secondary': activity.setRequestedOrientation(android.content.pm.ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT); break; case 'landscape-primary': activity.setRequestedOrientation(android.content.pm.ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); break; case - [Show or hide the Android Status Bar in NativeScript](https://www.gaurav.mobi/blog/show-or-hide-the-android-status-bar-in-nativescript/) - I was trying to get the status bar to hide in one of the apps and created a simple code to do that. var application = require('application').android; function statusBar(action){ var activity = application.startActivity; //activity.runOnUiThread(function(){ var win = activity.getWindow(); if(action === 'hide'){ win.addFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN); } else if(action === 'show'){ win.clearFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN); } } Then call statusBar('show') or statusBar('hide') - [What all I can do for you?](https://www.gaurav.mobi/blog/what-all-i-can-do-for-you/) - As you probably know from my website that I work on contract basis for different companies and individuals to develop software or create an IT strategy or IT infrastructure and in this post I will give you a detailed description as to what all I can do for you. If you are a startup: Many times non technical - [Took a sabbatical for 4 months and developed a software to auto trade shares](https://www.gaurav.mobi/blog/took-a-sabbatical-for-4-months-and-developed-a-software-to-auto-trade-shares/) - I took a break from Web and Mobile Development to learn a new skill: Share Trading. Yes, I got fascinated with share trading and how it can be used to build wealth so, I took a decision for sabbatical for 4 months. During these 4 months I studied various techniques for share trading and created - [Why do projects get delayed?](https://www.gaurav.mobi/blog/why-do-projects-get-delayed/) - Software development get delayed. This is the truth. Specially since IT industry is fraught with examples where the project delays by upto 6 months or more. So, why the delay? Why can't we measure the exact requirements and create the time lines accordingly? Lets see the reasons: No planning: Yes, this is the main reason - [Why cross platform mobile development is need of the hour.](https://www.gaurav.mobi/blog/why-cross-platform-mobile-development-is-need-of-the-hour/) - I recently went to a startup meetup where I saw lot of demos for the mobile apps. All the startups were in the mobile app space and strangely enough, they had only Android based app ready for the market. When I asked them as to the status of the iOS app, everyone said that it - [What is web hosting and what are the different types of hosting?](https://www.gaurav.mobi/blog/what-is-web-hosting-and-what-are-the-different-types-of-hosting/) - Many times my clients ask me a question: What is hosting and what are different types of hosting? To answer this question, I simply ask them to spend sometime watching this video. - [Another reason not to use native technology over web hybrid](https://www.gaurav.mobi/blog/another-reason-not-to-use-native-technology-over-web-hybrid/) - Yesterday night my client fanatically called me up and asked that another developer has goofed up on a piece of code and it was pushed to production. He asked me if something can be done about it. I said sure, I can push an over the air update bypassing the app stores so that the - [Difference between other mobile app developers and me](https://www.gaurav.mobi/blog/difference-between-other-mobile-app-developers-and-me/) - Once of my close friends asked me to help his client who wants a mobile app developed. Since, I do not do native mobile app development (I am going to start soon) I decided to contact other mobile app developers or mobile app development companies. I contacted many via their website contact form. Except one - [Minimum time to develop an app is 2 months](https://www.gaurav.mobi/blog/minimum-time-to-develop-an-app-is-2-months/) - > If you are looking to get an app developed in 10 days, please hire somebody else. I have been getting lot of queries since the lockdown asking me if I can develop an app for both iOS and Android in less than 10 days. Sorry, I can't. It is not possible if you want - [Freelancers are their own worst enemy](https://www.gaurav.mobi/blog/freelancers-are-their-own-worst-enemy/) - Recently I had a telephonic chat with a prospect and he was a non technical guy who does not know anything as to how a mobile application or a web application works or gets developed. He told me that he wants to meet but will not share anything much about the idea as he is - [Get SIM Card information on Android using NativeScript](https://www.gaurav.mobi/blog/get-sim-card-information-on-android-using-nativescript/) - If you need to know sim card information, you can do so very easily in NativeScript for Android. Use the following code: AndroidManifest.xml NativeScript code function simManage(){ var tm = android.telephony.TelephonyManager; var context = utils.ad.getApplicationContext(); var manager = context.getSystemService(android.content.Context.TELEPHONY_SERVICE); var phoneNumber = manager.getLine1Number(); var countryCode = manager.getSimCountryIso(); var simOperator = manager.getSimOperator(); var - [App Developers in Delhi](https://www.gaurav.mobi/blog/app-developers-in-delhi/) - Are you looking for app developers in Delhi NCR? If yes, then you have come to the right place. I am an app developer who creates mobile apps in Phonegap/Cordova and NativeScript based out of Noida. A Phonegap app is a good framework which lets you spend less and go to market quickly. But there - [Android captures 97% of the market share in India.](https://www.gaurav.mobi/blog/android-captures-97-of-the-market-share-in-india/) - I recently got to know that Android has captured 97% of the market share in India. Source. Out of all the smartphone users in India, they are using some version of the Android app. This means that you definitely need to target Android users first when you are making a mobile app for your business. - [Create an application shortcut in Android NativeScript](https://www.gaurav.mobi/blog/create-an-application-shortcut-in-android-nativescript/) - When installing an app, many times there is a need to show the shortcut Icon on the Android home screen. You can do so in Android by adding the following: AndroidManifest: And in your page loaded event for the main view: var androidApp = applicationModule.android; var context = utils.ad.getApplicationContext(); - [Check if the package/app is installed in Android using NativeScript](https://www.gaurav.mobi/blog/check-if-the-package-app-is-installed-in-android-using-nativescript/) - There are times when you need to open a file in a particular app like Adobe Reader and you want to know whether this app is installed on the device or not. You can do so using the following code in NativeScript: function app_installed(packageName){ var context = utils.ad.getApplicationContext(); var pm = context.getPackageManager(); var app_installed = - [Replace SMS OTPs with Missed Call verification using an Android Phone. Telx.Mobi](https://www.gaurav.mobi/blog/replace-sms-otps-with-missed-call-verification-using-an-android-phone-telx-mobi/) - I have been working on my side project - Telx.Mobi which enables everyone to save money by replacing SMS OTPs with a Missed Call for verifying phone numbers. Check it out at www.telx.mobi. Telx.Mobi is a service which helps you in saving money by replacing SMS OTPs with a Missed Call verification system. You only - [Get IMEI number of device on Android using NativeScript](https://www.gaurav.mobi/blog/get-imei-number-of-device-on-android-using-nativescript/) - There was a small project I did which required the IMEI number to be read. I used the following code to read the IMEI number on Android using NativeScript. AndroidManifest.xml NativeScript code function getIMEI(){ var context = utils.ad.getApplicationContext(); var tm = context.getSystemService(android.content.Context.TELEPHONY_SERVICE); return tm.getDeviceId() } Then call getIMEI() where there is a need. - [Create persistent notification on Android using NativeScript](https://www.gaurav.mobi/blog/create-persistent-notification-on-android-using-nativescript/) - I was experimenting with some background tasks in nativescript for android and I found that one way to ensure that your android app will always run even when it is in background is to use a persistent notification. So, I was able to create this using the following code: NativeScript Code: main.js var APP = - [Always hire trustworthy developers for your project](https://www.gaurav.mobi/blog/always-hire-trustworthy-developers-for-your-project/) - When you search on google with the keyword "Freelance Mobile App Developer" you will get lot of results on the front page. If you see top 3 results, you will see names and websites of 2 developers who are just making their website and content for SEO purpose only. If you see their websites, it - [Mobile App Developers in Delhi](https://www.gaurav.mobi/blog/mobile-app-developers-in-delhi/) - Are you looking for mobile app developers in Delhi NCR? I am a mobile app developer who creates mobile apps in Phonegap/Cordova and NativeScript and I am based out of Noida. A Phonegap app is a good framework which lets you spend less and go to market quickly. But there are some shortcomings as the - [Mobile Apps: Native or hybrid? A business perspective.](https://www.gaurav.mobi/blog/mobile-apps-native-or-hybrid-a-business-perspective/) - If you are a business guy with no technological bent of mind, then this post is for you. Read on. You need a mobile app for your business or your product and when you go in the market looking for a company or a developer, you will come across lot of posts which say native ## Pages - [Home](https://www.gaurav.mobi/) - 20 years experienced web & mobile application developer in Delhi, Noida, Gurgaon, Faridabad, India. Specializing in Android Mobile Application Development. - [Contact](https://www.gaurav.mobi/contact/) - Need an angular application or mobile application developed? WhatsApp me now on +91-9555217771 or email me at mailme@gaurav.mobi. 19 years experienced pplication developer. - [Cost will be between ₹1,00,000 to ₹5,00,000](https://www.gaurav.mobi/pricing/) - I offer very competitive pricing of Web & Mobile Application Development in Delhi, Noida, Gurgaon, Faridabad - [Freelance Android App Developer Noida](https://www.gaurav.mobi/freelance-android-app-developer-noida/) - Expand your business in digital channels with a custom Android app by Freelance Android App Developer Gaurav Chandra, offering effective & interactive solutions - [App Developer in Delhi](https://www.gaurav.mobi/app-developer-delhi/) - Expand your business in digital channels with a custom app by 19+ years experienced App Developer Gaurav Chandra, offering effective & interactive solutions. - [Angular App Developer in Delhi](https://www.gaurav.mobi/angular-app-developer-in-delhi/) - Experienced Angular app developer in Delhi - Gaurav Chandra. I offer affordable, high-quality web application development services. - [Hire Angular Developer](https://www.gaurav.mobi/hire-angular-developer/) - Hire freelance angular developer, Gaurav Chandra, for cost-effective, customized solutions, transparent dealings, and dependable guidance on your projects. - [Mobile Application Development by Gaurav Chandra](https://www.gaurav.mobi/mobile-application-development/) - Looking for a skilled developer for mobile application development? Look no further! I have 19 years of experience with specialisation in Android Development. - [Hire Mobile App Developers](https://www.gaurav.mobi/hire-mobile-app-developers/) - Discover the process to hire mobile app developers for your business. Hire 19+years experienced mobile app developer in Delhi NCR. - [Freelance Web Developer](https://www.gaurav.mobi/freelance-web-developer/) - Top Freelance Web Developer creating tailored, responsive websites. Enhance your digital presence with expertly crafted, user-friendly solutions. Contact me now - [App Developer Near Me](https://www.gaurav.mobi/app-developer-near-me/) - Discover the essential steps to hire an app developer near you. Learn the systematic process for finding skilled talent to bring your app idea to life. - [Android App Developer Delhi](https://www.gaurav.mobi/android-app-developer-delhi/) - Get your Mobile App Developed by 19+ years experienced Android App Developer Delhi. Starting from ₹80,000. - [Work](https://www.gaurav.mobi/work/) - Mobile Applications As You Are - The Indian 🌈LGBTQIA+ App WedHaven - Wedding management app iCow - An App for Farmer Education EduCart - One stop information for education app (Under Development) Nexton - Sell your old Mobile (Under Development) More Mobile Applications Health Bank Life Store Plus - Pharmacist App Life Store - Order - [Freelance mobile app developer in Ghaziabad](https://www.gaurav.mobi/freelance-mobile-app-developer-ghaziabad/) - Looking to develop a high-quality mobile app? Hire Gaurav Chandra, an experienced freelance app developer in Ghaziabad. Exceptional results guaranteed. - [Freelance App Developer in Indore](https://www.gaurav.mobi/freelance-app-developer-indore/) - Expert Freelance App Developer in Indore - Custom, High-Quality Mobile App Development Solutions. Boost Your Business with a Reliable, Experienced Partner. - [Freelance mobile app developer in Greater Noida](https://www.gaurav.mobi/freelance-mobile-app-developer-greater-noida/) - Hire a freelance mobile app developer in Greater Noida to create innovative and cost-effective apps for your business. Contact Gaurav Chandra today! - [Freelance mobile app developer in Bhopal](https://www.gaurav.mobi/freelance-mobile-app-developer-bhopal/) - Hire a freelance mobile app developer in Bhopal to create a custom app for your business. - [Mobile App Development India](https://www.gaurav.mobi/mobile-app-development-india/) - Looking to hire a mobile app development company for your next idea? Think again. Hiring a company comes with its own set of headaches. Let's face it, you are not flush with funds like big companies. You came looking here searching to hire a team or a person who is the right fit for your - [My First Blank Cheque](https://www.gaurav.mobi/blank-cheque/) - The ultimate testimonial is when someone puts so much trust in you that they give you a blank cheque. Hire the best mobile application developer. - [Hire Mobile Application Developer in Noida](https://www.gaurav.mobi/hire/mobile-app-developer/in/noida/) - Want to hire a Mobile Application Developer in Noida? Look no further than me, Gaurav Chandra! I have 19+ years of experience Contact me now. - [Freelance Mobile Application Developer](https://www.gaurav.mobi/freelance-mobile-application-developer/) - As a freelance mobile application developer, I can help you develop cost-effective and tailored mobile app that meets your specific requirement. Contact me now! - [Wedel Express](https://www.gaurav.mobi/mobile-app-wedel/) - [WedHaven](https://www.gaurav.mobi/mobile-app-wedhaven/) - About the WedHaven Mobile App I developed a mobile app for a team of young entrepreneurs who want to make managing weddings fun instead of being a hassle. This app uses lot of featured which actually pushed the system to its limit like background geo tracking and complex image editing. And I am working on - [iCow - An App for Farmer Education](https://www.gaurav.mobi/mobile-app-icow/) - About iCow - An App for Farmer Education One of the most difficult, vast and awesome app I developed for a company based out of Nairobi, Kenya. They wanted an app to spread farming education among the farmer community. Being in Kenya, Africa, the company had a problem which needed an efficient solution. There is - [Mobile App Development Company](https://www.gaurav.mobi/mobile-app-development-company/) - Looking for a skilled mobile app developer? With expertise in Android, and cross-platform app development, I can help bring your vision to life. Contact me now! - [Hire app developer in Noida](https://www.gaurav.mobi/app-developer-in-noida) - Looking for an experienced app developer in noida to turn your idea into a reality? Choose Gaurav Chandra, with almost 20 years of expertise in the field. - [As You Are](https://www.gaurav.mobi/mobile-app-asyouare/) - About the As You Are Mobile App I worked as a CTO for As You Are. And one of the main responsibilities was to develop the mobile app. Yes, even a CTO has to work as a developer. It was a very difficult project as when I took over, there was a native mobile app - [Why limited mobile apps in my portfolio?](https://www.gaurav.mobi/why-limited-mobile-apps-in-my-portfolio/) - Recently one of the potential clients asked me as to why I have so fewer mobile apps listed under my work. I am going to explain as to why there are limited mobile apps in my portfolio. Most Important Reason: If I take every project that comes my way, I cannot control the quality. By - [I maintain full transparency when it comes to your work.](https://www.gaurav.mobi/i-maintain-full-transparency-when-it-comes-to-your-work/) - I do not make a fool out of my clients. What does it mean? When you work with me, I believe in being honest and upfront. I won't tell you any lies. If there are any delays in your project, I'll let you know right away. And if there's something I can't do, I'll be - [Why I charge so much?](https://www.gaurav.mobi/why-i-charge-so-much/) - I know that it is very hard for us to part with our hard-earned money and we wish that we get everything for free but it is not possible. So, for any service we take, we need to pay money for it. I am going to explain and try to justify my charges so that - [How do Freelance Developers and Companies earn money?](https://www.gaurav.mobi/how-do-freelance-developers-and-companies-earn-money/) - Don't be fooled by the price of mobile app development. Look at the long-term costs. Recently I got a call from a prospect. He wanted to get a mobile app developed and was shopping around for a freelancer or a company. I quoted him my price and he countered by stating that they already had - [My clients are under my protection](https://www.gaurav.mobi/my-clients-are-under-my-protection/) - My clients are under my protection. - Gaurav Chandra What do you mean protection? It means that I am available promptly to help you out with technology and save money. I will always keep your interests in mind when I suggest something. There are various ways in which freelancers and companies earn money and one - [Hybrid vs Native Apps](https://www.gaurav.mobi/hybrid-vs-native-apps/) - Nowadays, mobile applications have become an essential part of our lives as they provide a variety of services at our fingertips. Mobile application developers are constantly trying to improve the user experience by developing more efficient and versatile applications. Two types of mobile applications are Native and Hybrid. Native mobile applications are specific to a - [My Health History](https://www.gaurav.mobi/mobile-app-myhealthhistory/) - About the My Health History Mobile App I developed a hybrid mobile app and website for the company. It’s a cloud-based system in which medical history of all the users will be stored and same can be used in case of a patient visits a Dr. for some illness. I created a proprietary system to - [Life Store](https://www.gaurav.mobi/mobile-app-lifestore/) - About the Life Store Mobile App I developed a hybrid mobile app for the company which would enable the users to buy medicines from the pharmacists nearby. Users would write or take a photo of the medicine and upload their prescription. Then their order is matched with the pharmacist near by who would supply their - [Life Store Plus](https://www.gaurav.mobi/mobile-app-lifestoreplus/) - About the Life Store Plus Mobile App I developed a hybrid mobile app for the company which would allow the pharmacist to accept the medicine orders and supply that order to the people who use Life Store App. This is a companion app to Life Store App which is run as a service. Unfortunately, this - [Health Bank](https://www.gaurav.mobi/mobile-app-healthbank/) - About the Health Bank Mobile App I developed a hybrid mobile app for the company which would enable the pathology labs to upload the blood reports of the patients online to cloud and these reports would be available to the patients via a mobile app. Using the app, the patients can share the reports with - [EduCart](https://www.gaurav.mobi/mobile-app-educart/) - About the EduCart Mobile App I developed a hybrid mobile app for a company looking to enter the education market. This app uses In App Purchases which can be used to unlock certain paid features of the app. They are starting with information for colleges but will soon forey into accomodation and schools. The iOS - [YoYo App](https://www.gaurav.mobi/mobile-app-yoyoapp/) - About the YoYo App Mobile App I developed a hybrid mobile app for the company which would connect people with businesses, bid for products, and chat internally. Yo Yo App is a platform for the businesses to list their Products/Services and connect to the potential customers. I also created the companion website for the app - [Testimonials](https://www.gaurav.mobi/testimonials/) - Ultimate Testimonial - My First Blank Cheque. Click here for the story. We hired Gaurav to build a mobile app and even before the 1st launch, we had made up our mind to continue working with him for the next launch as well. Gaurav is a self-driven, punctual and trustworthy developer whom you can rely ## Robo Gallery - [WorkGallery](https://www.gaurav.mobi/blog/gallery/5399-2/) ## Categories - [Uncategorized](https://www.gaurav.mobi/blog/category/uncategorized/) - [Development](https://www.gaurav.mobi/blog/category/development/) - [Business](https://www.gaurav.mobi/blog/category/business/)