Git Blame

Retry logic powered by denial

🦆 0.0
JavaScript
function retry() {
    return retry();
}
retry();
0 comments 0 corrections
View →

The N+1 festival

🦆 0.0
PHP (Laravel)
$users = User::all();
foreach ($users as $user) {
    echo $user->posts;
}
0 comments 0 corrections
View →

User-controlled WHERE clause

🦆 0.0
SQL
SELECT * FROM users WHERE email = '$email'
0 comments 0 corrections
View →