Some quick instructions on how to tether the Blackberry Storm 9530 in Ubuntu 10.04. (Tethering is fo ...
Today I was working on my thesis / QE document and wanted to have IEEE style referencing included in ...
Today I presented a recent paper on “Adaptive Mixed Bias Resource Allocation for Wireless Mesh Netwo ...
Recently I reinstalled my laptop and was hoping to add chromium onto my multiboot setup. I can get i ...
This post is somewhat motivated by [Prof. Andrew Eckford’s post](http://andreweckford.blogspot.com/2 ...
This post is sort of a hodge-podge of random bits, mostly just so I can post something new to the bl ...
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 ...