Hello friends!
Hope you've had a great week so far! I myself have luckily not been too busy, so I've been catching up on projects I've been meaning to work on and playing plenty of Fortnite. Gotta enjoy it while it lasts!
Â
Web links of the week
How to structure your project and manage static resources in React Native
Audio visualisation with the Web Audio API and React
Motion design doesn’t have to be hard
18 CSS Star Ratings
Â
Something that interested me this week
This past week I've finally gotten to do some things I've been meaning to do for a while! Some have been more practical (like getting my inbox down to less than 40 emails... someday I'll get inbox 0 again), and some have been a little more silly. For example, I'm finally building my giant LEGO Bugatti set, and my sister Cami and I have been setting up our Dremel 3D printer! We've been
streaming our antics here, and there will definitely be more to come now that we're not traveling as much. :)
Â
Interview question of the week
Last week, I had you implement a power function! Daniel sent this one in in C#:
static double Pow(double b, double exp)
{
  if (exp == 0) return 1;
  else if (exp > 0) return b * Pow(b, exp - 1);
  else return 1 / Pow(b, -exp);
}
This week's question:
In a linked list, if the next() pointer of the last node points to the head node, it becomes circular linked list. Implement a circular linked list!
Â
Cool things from around the internet
Stan's Quick and Dirty: How Stenography Works
Zlant keyboard with GMK 9009
How to be the best Wristbander
In Praise of Mediocrity
Â
Joke
(P+L)(A+N) = PA+PN+LA+LN
Ha! I just foiled your plan!
Â
That's all for now folks, I hope you have a great weekend. Be safe, make good choices, and check expiration dates before you eat things.
cassidoo