This past week I attended IEEE Canadian Conference on Electrical and Computer Engineering (CCECE2014 ...
The last few months have been crazy. I’ve had a couple of job interviews with tech companies in Cal ...
This past week I travelled to the UK to present at my first International Conference – Advanced Info ...
On December 2nd and 4th 2008, Research Day for the Computer Science Department at the University of ...
Today I completed the listing page for all of the presentations our research group PerWin at the Uni ...
My research is becoming more focused as of late towards the area of fair scheduling and load balanci ...
Today I came across a great article on passion in research on Paul Ward’s website at the University ...
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 ...