One of my first Arduino tests was connecting two Uno's via serial & ground, each powered by a different laptop via USB. The first Uno sent simple commands to the second, which then turned the onboard LED on or off accordingly. All worked as expected.
But when I happened to unplug the receiver first, I was rather surprised to see the LED continue responding to Serial commands, absent power. That's when I learned about parasitic power.
In this case, the power was coming from one ATmega328's TX output, to the other ATMega328's RX input. Serial commands very briefly interrupted the parasitic power (not long, a couple of 38400 chars every second), but apparently the bypass caps on the second Uno kept it running. Not just the uC, but the D13 controlled LED, and even the "power" LED on the receiving Uno. That uC can supply up to 40 mA on an output pin, and the uC can run on very little current and much less than the 5V normal supply, so it's not very hard for one uC to power another via connected I/O lines.
Voila - one pin power + signal, using standard Uno's and two jumper cables!
After learning why this worked, I've been surprised people don't run into this all the time, when connecting two uC's via I/O pins, and then removing power from one of them.