Programming

Useful Chrome extensions for developers

If you’re a developer, you probably already have a list of Chrome extensions that you use on a regular basis. Extensions that make life easier, increase productivity, or perform a critical activity more efficiently than a dedicated tool. I made a list of some of the Chrome extensions I use to increase my productivity when …

Useful Chrome extensions for developers Read More »

How to Fix ‘INSTALL_FAILED_USER_RESTRICTED’ on Xiaomi Phones (Android Studio)

USB Debugging grants you a level of access to your device. This level of access is important when you need system-level clearance, such as when coding a new app. It also gives you much more freedom of control over your device. For example, with Android SDK, you gain direct access to your phone through your …

How to Fix ‘INSTALL_FAILED_USER_RESTRICTED’ on Xiaomi Phones (Android Studio) Read More »

What is Axios and how to use it for HTTP request

Axios is a promise-based HTTP client for the browser and Node.js. Axios makes it easy to send asynchronous HTTP requests to REST endpoints and perform CRUD operations. It can be used in plain JavaScript or with a library such as Vue or React. The HTTP protocol is the most common way for frontend programs to communicate with a server. Maybe you are familiar with Fetch API and XMLHttpRequest interface. …

What is Axios and how to use it for HTTP request Read More »

How to get Facebook Profile Photo and Other Data In Flutter

Step 1: You need to setup a permission when creating an instance for Facebook login. FacebookAuth.instance.login(permissions: [’email’, ‘public_profile’]); Step 2: After setting the permission, you can now get the Facebook data of the user easily by simply using the line of code below. You can follow this link Graph API User (facebook.com) to know the …

How to get Facebook Profile Photo and Other Data In Flutter Read More »