
I am a PhD student advised by Katia Obraczka. I started in Fall of 2024. I am interested in most things that look systems-y. I got my B.S. of computer science at UCSC, although I will still get lost in the forest if I try to take a shortcut.
So you don’t leave with no cool information, here is a fun fact about C. The []
operator is commutative, so indexing into an array data
can be done as data[5]
or 5[data]
. This is because array[5]
is the same as *(array + 5)
, and pointer addition is commutative.