spanugan.hashnode.devOAuth in React Native with ExpoPurpose We had some issues with the OAuth libraries in Expo React Native for Android. The Native libraries were working on iOS without any issues but not on the Android. In this article, I would like to elaborate how we could overcome the issues. The...Apr 14, 2022·4 min read
spanugan.hashnode.devCORS ExplainedIf you are a developer, you might have seen the following error many times especially when dealing with APIs. For security reasons, browser blocks the cross-origin HTTP requests. It allows requests that are originated from the same origin. Browser...Jul 28, 2020·2 min read
spanugan.hashnode.devCSS SpecificityBefore jumping into the topic, let's see an example. Can you guess the color of the paragraph? /* CSS */ p{ color: green;} p{ color: red;} <!-- HTML --> <p class="msg" id="intro"> Welcome to CSS specificity tutorial. </p> If you said RED, yes it's...Jul 28, 2020·2 min read
spanugan.hashnode.devCSS Selectors For BeginnersYou can't imagine a web page without styles (CSS). They play a key role in page beautification. The key to understanding the CSS is understanding the Selectors. Selectors are the patterns used to select specific HTML elements and apply styles. Here I...Jul 27, 2020·2 min read
spanugan.hashnode.devStep-by-step Guide: Deploy your static site from GitHub to NetlifyThis is a beginner’s guide to how to deploy a static website from GitHub to Netlify. Netlify is a service which provides an easy way to deploy the static sites from GitHub or GitLab or Bitbucket. Moreover, it’s free (unlimited projects) for one user....Nov 23, 2018