We’ve published a celebration post on our blog to recognize the 5 year anniversary of official support for Kotlin on Android. In the making of that post, I had the chance to interview some great people who were involved in the Kotlin story, and the blog post could only include small bits of what they […]
In 2015, I wrote a post about sharing code between unit tests and instrumentation tests on Android. Iain Cunningham just pointed out that the method I outlined no longer works. That’s fine for me because I haven’t used that method in years! Nowadays I use modules, which provide a far superior method of solving the […]
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful. Source link
For a long time at Trello Android, we used the same class for parsing API calls (via Gson), making DB transactions (via OrmLite), and displaying data in the UI. Here’s a pseudo-code-y example of a board: @DatabaseTable(tableName = “boards”) data class Board( @DatabaseField(columnName = “name”) @SerializedName(“BoardName”) private var boardName: String?, private var cards: List<Card>?, private […]
You hear the phrase “the game of life” all the time. There are books on Amazon instructing us on how to win at the “game of life”. Hell, Milton Bradley’s “The Game of Life” from 1860 — still sold today — was the first popular board game in the United States. In the Real World, […]
Neuroscientists study the brain and its various complex capabilities, from memory and learning to human behavior and consciousness. Neuroscientists generally need PhDs to do their work, which often is in a hospital or university setting. But neuroscience is an interdisciplinary field that may require knowledge of artificial intelligence, bioinformatics, and obviously anatomy—it all depends on […]
Gizmodo has partnered with the independent market research provider Statista to identify the top universities within 25 fields of study that we believe will define the 21st century. But which academic disciplines did we look at, and why? The following fields we’ve identified as Degrees of the Future reflect the technologies, cultural shifts, and challenges […]
Today, the Get Rich Slowly summer of books concludes with an excerpt from Cashing Out: Win the Wealth Game by Walking Away from Julien and Kiersten Saunders. Julien and Kiersten are the power couple behind the rich & Regular blog and YouTube channel. The following excerpt from Cashing Out (published by Portfolio/Penguin) is used with […]
We chat with Alexey about Kotlin Design Patterns and Best Practices and his recently released book, “Kotlin Design Patterns and Best Practices.” Alexey on Twitter – https://twitter.com/alexey_soshin 25% OFF THE BOOK use 25ALEXEY code – https://www.packtpub.com/ KotlinConf’23 – https://kotlinconf.com/ Source link
iOS 16 beta 4 is the first SDK release that supports Live Activities. A Live Activity is a widget-like view an app can place on your lock screen and update in real time. Examples where this can be useful include live sports scores or train departure times. These are my notes on playing with the […]