Archie (@archiecoding) 's Twitter Profile
Archie

@archiecoding

Full Stack (Angular, Spring boot) & Native Android Developer.

ID: 1364879459510288390

calendar_today25-02-2021 10:06:42

23 Tweet

119 Takipçi

2,2K Takip Edilen

Android Dev Notes (@androiddevnotes) 's Twitter Profile Photo

LiveData is no longer recommended. (medium.com/androiddevelop…) The new APIs behave similarly to LiveData and LiveData doesn’t offer any benefits over Coroutines and Flow. New APIs: repeatOnLifecycle / flowWithLifecycle #AndroidDev

LiveData is no longer recommended.
(medium.com/androiddevelop…)

The new APIs behave similarly to LiveData and LiveData doesn’t offer any benefits over Coroutines and Flow.

New APIs: repeatOnLifecycle / flowWithLifecycle

#AndroidDev
Ian Lake (@ianhlake) 's Twitter Profile Photo

Guess what bug just got marked as fixed? Multiple back stacks (for both Fragments, Navigation with Fragments, and Navigation Compose)! See our update on the issue tracker: issuetracker.google.com/80029773#comme…

Matvei Malkov (@matvei_jj) 's Twitter Profile Photo

Happy Сompose launch day! One of the greatest things about compose today is that we have published a public roadmap going forward. Go check it out: developer.android.com/jetpack/androi…

Dave Leeds (@djleeds) 's Twitter Profile Photo

When I first wrote about Inline Classes, it was back in 2018 when they were still an experimental feature. Since they're now stable in #Kotlin 1.5, I updated this introductory article, and also added a section about value classes. typealias.com/guides/introdu…

Manuel Vivo (@manuelvicnt) 's Twitter Profile Photo

💡 Dependency Injection and Hilt STUDY JAM 📅 Thu, Aug 19th 🕙 7PM CET — 9AM PT 🎙️ Manuel Vivo & Danny Thompson Learn DI and Hilt from 0 to 🦸! Code-along with me 🧑‍💻, we have plenty of time to cover the basics of DI and master Hilt! RSVP and join 👇 gdg.community.dev/events/details…

Manuel Vivo (@manuelvicnt) 's Twitter Profile Photo

The Hilt MAD skills series is here 🥳🎉 the next 5 weeks are going to be full of DIncredible content! Go and watch to get some Hilt knowledge injected into your skillset 🎊 ✍️ Prepare your questions and ask us on the live Q&A Hilt session on Sep 23rd 👋

Csaba Kissi (@csaba_kissi) 's Twitter Profile Photo

→ HTTP Codes: 1XX: Informational 2XX: Success 3XX: Redirection 4XX: Client Error 5XX: Server Error → Status Codes: 200 OK 301 Permanent Redirect 302 Temporary Redirect 404 Not Found 500 Internal Server Error (e.g. bad server config) 503 Service Unavailable (e.g. overloaded)

Manuel Vivo (@manuelvicnt) 's Twitter Profile Photo

The second episode of the Hilt MAD Skills series is about testing. Eric Chang—active maintainer of Hilt—explains how to get the best out of Testing with Hilt. You probably don't need most of the mocks/fakes you're using in tests, so please, watch this! youtube.com/watch?v=oBpBWT…

Steve (Builder.io) (@steve8708) 's Twitter Profile Photo

PSA: please stop using strings concatination to create and edit URLs in JS All major browsers have great built-in functionality for URL parsing & manipulation:

PSA: please stop using strings concatination to create and edit URLs in JS

All major browsers have great built-in functionality for URL parsing & manipulation:
Nelson Djalo | Amigoscode (@amigoscode) 's Twitter Profile Photo

6 API Architectural designs You Must Know 1. REST 🌐   Representational State Transfer - REST is like a classic library where you request specific books and receive them as they are. It's simple and widely used for web APIs, like ordering a la carte from a menu 🍽️. 2. GraphQL