ZeroGravitas
The Destroyer
So I answered a request for help from "SilverDeoxys563" on the Terraria sub-Reddit, trying to fix a "teleporter hoik buffer", but what they were after was a way to prevent the camera from blinking out when teleporting a distance a little beyond the edge of screen: have it just scroll instead by splitting the trip into 2, smaller teleportation steps.
I suggested using gates instead, like so:
◄ Original, broken. | My suggestion. ►
Taking advantage of the game's wire activation order, of doing gates in layers, all within a single wire 'trip' code call. So going either way, player (or whatever) is teleported to the middle plate, the next gate is triggered and thus teleportation out to the appropriate end gate ensues.
And now I was just wondering how far this could be taken, so I made a chain section, wired in such a way that it could easily be copy-pasted in TEdit (while still being 2-way). All the gates (bar the end ones) will smoke, since they get re-triggered by the gate after them in the sequence, every time.
Then I extended it half way across a world. It seemed to work fine, although the camera pans so fast that some sections of the map, in the middle of the scroll, never get rendered at all.
Maybe useful for map makers looking to really polish those transitions. Perhaps the logic gate signal propagation chain could also come in handy for other projects... I'm not sure what. Note that anything stood at the opposite end to the one where the signal starts from (or mid-way) will be shuffled one pad closer to the signal source end (until they get to that end pad and are flung back the whole length. You might be able to shuffle liquids between pump troughs, a step at a time, just for giggles, or something. Maybe have a fiddle, if board... 
I suggested using gates instead, like so:


And now I was just wondering how far this could be taken, so I made a chain section, wired in such a way that it could easily be copy-pasted in TEdit (while still being 2-way). All the gates (bar the end ones) will smoke, since they get re-triggered by the gate after them in the sequence, every time.

Then I extended it half way across a world. It seemed to work fine, although the camera pans so fast that some sections of the map, in the middle of the scroll, never get rendered at all.
Not an especially technical trick. Just thought I'd share, for fun.