Posts with Tag: Computer Science

ACM FCA — Progress, Rigolet Project

About a [month and a half ago](https://www.jasonernst.com/posts/2017/06/22/ACM-Future-of-Computing-A ...

Technical Reviewing as Grad Student?

As I’ve published more and more, I’ve been invited to become a reviewer for many conferences and jou ...

Research Progress, Recent News & The Importance of Math in CS

This post is sort of a hodge-podge of random bits, mostly just so I can post something new to the bl ...

Motivation, Passion and Research…

Today I came across a great article on passion in research on Paul Ward’s website at the University ...

CRM-Fields Lecture at University of Toronto

About a week and a half ago I had the opportunity to attend a CRM-Fields Prize lecture by Allan Boro ...

Most Recent Post

Android ClipboardManager Deprecated: How to fix

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 ...