Skip to content

Instantly share code, notes, and snippets.

@joeyemery
Created April 28, 2015 14:43
Show Gist options
  • Save joeyemery/e421bce8149052c923ad to your computer and use it in GitHub Desktop.
Save joeyemery/e421bce8149052c923ad to your computer and use it in GitHub Desktop.
Recursive Pedophile Loop
$(document).ready(function() {
RecursivePedofileLoop();
});
// RPL Function.
function RecursivePedofileLoop()
{
// Actual code to go here.
// Call the loop again to make it infinitely recursive.
RecursivePedofileLoop();
}
<?php
// Call it once.
RecursivePedofileLoop();
// RPL Function.
function RecursivePedofileLoop()
{
// Actual code to go here.
// Calls self for recursion.
RecursivePedofileLoop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment