Posts with Tag: Research

IEEEE CCECE 2014 and Cognitive Agent Simulation

This past week I attended IEEE Canadian Conference on Electrical and Computer Engineering (CCECE2014 ...

Recent Computer Related Events

The last few months have been crazy. I’ve had a couple of job interviews with tech companies in Cal ...

AINA 2009 Conference Presentation

This past week I travelled to the UK to present at my first International Conference – Advanced Info ...

University of Guelph Research Day – Winter ’08

On December 2nd and 4th 2008, Research Day for the Computer Science Department at the University of ...

PerWin Research Group @ the University of Guelph

Today I completed the listing page for all of the presentations our research group PerWin at the Uni ...

Fair Scheduling & Load Balancing in WMN

My research is becoming more focused as of late towards the area of fair scheduling and load balanci ...

Motivation, Passion and Research…

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

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