Retrofit Tutorial - part 2 Post Requests

Retrofit Tutorial in Android – Part 2 POST Requests

This article is a continuation for the Retrofit Tutorial in Android. To make sure you follow up with the tutorial, I advise that you read my previous article Retrofit Tutorial in …

Read More
Retrofit tutorial in android

Retrofit Tutorial in Android – Part 1 Introduction

Retrofit is the best library that lets you connect to HTTP-based API services from your Android App. It leverages the OkHttp library’s core functionality, adding a bunch of features to …

Read More
5 Amazing Android Studio Tools

5 Amazing Tools in Android Studio

Android studio is an amazing development IDE, that is powered by and built on top of the IntelliJ IDEA Platform by JetBrains. The studio bundles a good number of amazing …

Read More
7-Android-Libraries

7 Android Libraries Every Developer Should Know About

‍In this article am sharing with you 7 Android libraries every developer should use to enhance the application from different perspectives. When developing in Android, usually you have to deal …

Read More
wordpress.com vs wordpress.org

WordPress.com vs WordPress.org: Which to Choose

So you have just made your mind and you want to start writing your own blog. But you don’t know how and where to start. In this article I will …

Read More
Exception Handling in C#

Exception Handling in C#

Exception handling is a very important topic that is sometimes not properly understood or less used. In this article, I will explain to you about the Exceptions, and how to …

Read More
csharp async await tutorial

Your Ultimate async / await Tutorial in C#

You might have already heard about asynchronous programming or async / await, either in .Net or some other language. In this article I will try to explain it to you, …

Read More
Generics in C#

Demystifying Generics in C#

Generics is a great concept in programming languages that was added to .Net 2.0 , it introduces the parameter T to types and methods. Generics improve code reusability, enforces type safety and prevents performance overhead of boxing/unboxing.

Read More
technical-cv

How to Write an Eye-Catching Technical CV

Writing a technical CV should not be a tough task to do but you should prepare it in a proper way to draw the attention. In this article, I show you how you write an eye-catching technical CV

Read More
strings-stringbuilder-csharp

The Difference Between String and StringBuilder in C#

In this article, I will be explaining the difference between using String and StringBuilder when dealing with your string values. and in which cases you should never use String. and other cases where StringBuilder is not the optimal solution.

Read More