I’m a computer engineering major here at UCSD. I like climbing, ultimate frisbee, skiing, reading on my kindle and surfing. The latest book I read was Sapiens, by Yuval Noah Harai, and a quote I found really interesting was
We moderns have an arsenal of tranquillisers and painkillers at our disposal, but our expectations of ease and pleasure, and our intolerance of inconvenience and discomfort, have increased to such an extent that we may well suffer from pain more than our ancestors ever did.
My favorite programming language is C. I like C because the programs you end up writing can be very elegant. Consider this program that concatenates two strings (which I stole from The C Programming Language by Kernighan and Ritchie).
/* strcat: concatenate t to end of s; s must be big enough */
void strcat(char s[], char t[]) {
int i, j;
i = j = 0;
while (s[i] != '\0') /* find end of s */
i++;
while ((s[i++] = t[j++]) != '\0') /* copy t */
;
}
The code golf people play ends up creating very cool code, such as the last while loop.
I also really like webcomics. My favorite webcomics are xkcd and smbc.
Hey, if you’re bored, here’s a list of things you could do which would be cool:
Here’s the order of how fun those things will be:
By this point, you probably want to get back up to the top of this page and read it again. Click this to do that.