I attended and presented at IEEE ICC 2014 in Sydney, Australia. I presented a paper entitled, “[A Ut ...
I just spoke in Victoria, BC at the 28th IEEE conference on Advanced Information Networking and Appl ...
This past week I attended IEEE Canadian Conference on Electrical and Computer Engineering (CCECE2014 ...
A few weeks back I posted about a couple of hackathons I participated in. The first was the OpenData ...
I’ve recently participated in a couple of hackathons to keep brushed up on my coding skills. In both ...
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 ...