About a [month and a half ago](https://www.jasonernst.com/posts/2017/06/22/ACM-Future-of-Computing-A ...
As I’ve published more and more, I’ve been invited to become a reviewer for many conferences and jou ...
This post is sort of a hodge-podge of random bits, mostly just so I can post something new to the bl ...
Today I came across a great article on passion in research on Paul Ward’s website at the University ...
About a week and a half ago I had the opportunity to attend a CRM-Fields Prize lecture by Allan Boro ...
Recently, I've been getting warnings about the ClipboardManager in Android being deprecated, see: [https://developer.android.com/reference/android/content/ClipboardManager#setText(java.lang.CharSequence)](https://developer.android.com/reference/android/content/ClipboardManager#setText(java.lang.CharSequence)) Previous I had some code something like this for copying a UUID to the clipboard: ``` val clipboardManager = LocalClipboardManager.current Box(modifier = Modifier.clickable { clipboardManager.setText(AnnotatedString(uuid)) } ``` However, searching for how to fix this hasn't really t ...