RRohitingit-0r.hashnode.dev路Dec 30, 2022 路 1 min readFixing the 'Device is Offline' Issue in Android EmulatorIf you're seeing the "device is offline" error in Android Studio, it can be frustrating and make it difficult to test your app. However, there is a solution that helped me fix this issue. The solution is to use the following command: "bcdedit /set hy...00
RRohitingit-0r.hashnode.dev路May 20, 2022 路 2 min read{ Objects in Javascript }What's an Object? Objects are JavaScripts most fundamental datatype. An object in javascript is a collection of unordered key-value pairs, and those values can be other primitve types or other objects. // ... { "type": "articles", "id": "1", "a...00
RRohitingit-0r.hashnode.dev路Aug 17, 2021 路 3 min readWhat's inside HTTP request ?馃Hello readers! if you are new to programming or web development, you must have heard the words request and response probably when consuming third party API to get data for your projects and tutorials, but do you know what's inside the request or resp...00
RRohitingit-0r.hashnode.dev路Aug 16, 2021 路 2 min readWeb Storage API - localStoragelocalStorage馃 what's that? HTML5 introduced localStorage as a way to store data without any expiry date in the web browser. localStorage is a property that allows apps and websites to store date across browser sessions. Data stored in localStorage h...00