Graham Borland

Results 15 issues of Graham Borland

I just updated RxKotlin from 2.3.0 to 2.4.0 and this code no longer compiles. ```kotlin Observable.just(Unit) .withLatestFrom(this) { _, item: T -> item } ``` Now I have to write...

Upgrading from 10.2.1 to 10.3.0 has caused some of my instrumentation tests to fail at build time. ✅ 10.2.1 ❌ 10.3.0 The tests are using the [macrobenchmark library](https://developer.android.com/topic/performance/benchmarking/macrobenchmark-overview). It's possible...

I'm sure you're well aware of this already, but we've got until May to republish the ThirtyInch artifacts on Maven Central. https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

`RxTiPresenterUtils.deliverLatestCacheToView` caches and re-delivers **all** items emitted by the source. Look at this log output. When the view is detached, several items are emitted by the source, but not delivered....

rx
documentation

When you save a file using the offline workflow editor, it reformats and reorders everything in the file. It gives completely different output from the online version of the editor...

**Description** The camera permission example in [the documentation](https://google.github.io/accompanist/permissions/#usage) doesn't compile. The attempted smart cast is impossible. Accompanist versions: `0.25.1`, `0.26.2-beta` Kotlin version: `1.7.10` **Steps to reproduce** Paste in the sample...

This fixes the pre-commit hook to cope with unstaged binary files. Without this option, the hook fails when there is an unstaged binary file. ``` error: cannot apply binary patch...

Adds a function to convert a `java.time.Clock` to a `kotlinx.datetime.Clock`.

The [`Moment.fromNow()` spec](https://momentjs.com/docs/#/displaying/fromnow/) says > 45 to 319 days | MM | 2 months ago ... 10 months ago implying that a timespan of 319 days should return "10 months...

```kotlin package ynab.slik.data.repository import deezer.kustomexport.KustomExport @KustomExport sealed interface InvalidDataError @KustomExport class InvalidNumber(val number: Int) : InvalidDataError @KustomExport class InvalidName(val name: String) : InvalidDataError ``` This fails to compile: ``` >...