Nikhil AkkiPronikhilakki.in·Sep 16, 2023Python Async IO 101Intro Asyncio is a Python library that provides a framework for writing asynchronous, concurrent, and non-blocking code. It was introduced in Python 3.5 and has since become an essential tool for building efficient and responsive applications. At its...DiscussPython DevelopmentPython 3
Bibhuti Ranjan Sinhabibhutiranjansinha.hashnode.dev·Sep 14, 2023Coroutine behind the sceneCoroutines are a new emerging concept for modern software development. But the majority of developer concepts or we can say internal of coroutine are pretty unfamiliar. For most developers, coroutine works like magic, but there is no magic. To use co...Discusscoroutines
Abou Zuhayrblog.zuhayr.codes·Sep 14, 2023Building a Bare-Bones App with MVVM in Android: (Day 02)Hello Android developers! Today, we are going to walk through building a bare-bones Android application using the MVVM architectural pattern, Kotlin, and data binding. We'll go through each line of code to understand the underlying principles behind ...DiscussArchitecture Patterns in AndroidMVVM
peternjuguna muniupeterandroid.hashnode.dev·Sep 9, 2023Android Activity Lifecycle: A Developer's GuideIntroduction: Android app development is a dynamic and multifaceted process, and understanding the Android Activity Lifecycle is fundamental to creating responsive and user-friendly applications. An Android activity is a crucial building block of an ...Discuss·3 likesAndroid
Mia Temmapicolisp-explored.com·Sep 9, 2023PicoLisp Explored: Discrete Event SimulationThe last post was about coroutines. Now we will show how these coroutines can be used for Discrete Event Simulation (DES). Discrete Event Simulation in PicoLisp As the name suggests, Discrete Event Simulation (DES) models systems by focusing on a se...Discuss·1 like·1.2K readsPicoLisp Exploredpicolisp
Shubhankar Mahajanshubhcode.hashnode.dev·Aug 19, 2023Coroutines: Making Async Less Stress, More Progress!Hey fellow Android developers! Today, let's dive deep into a powerful tool that can significantly improve the way we handle asynchronous tasks in our apps - coroutines. You've probably heard about them, but I want to take you beyond the basics and ex...DiscussAndroid
Mia Temmapicolisp-explored.com·Aug 13, 2023PicoLixp Explored: On CoroutinesIn this post, we will introduce the concept of co-routines and how they are handled in PicoLisp. This will be the foundation for the subsequent posts on Discrete Event Simulation and finally a couple of examples, including an ASCII model railway simu...Discuss·1 like·3.5K readsPicoLisp Exploredpicolisp
Odhiambo Brandybrandyodhiambo.hashnode.dev·Aug 1, 2023Kotlin CoroutinesIntroduction Many times one may want to perform long-running tasks, like fetching data from a database or even uploading data, which often take so much time to be completed, what can I do so that even as I perform this long-running task I can continu...Discuss·1 like·113 readscoroutines
DroidNotesdroidnotes.com·Jul 26, 2023Kotlin Coroutines Simplified Part 1: Coroutine ScopeCoroutines provide a flexible and easy way to do asynchronous programming. Unlike threads, coroutines support structured concurrency, which means they provide more control over handling multiple coroutines. In simple words, this makes the process of ...Discuss·33 readsKotlin
Noman Sadiqdevelopwithnomi.hashnode.dev·Jul 22, 2023Flows and CoroutinesComing Soon!DiscussKotlin Coroutines - FlowsKotlin