It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of countries
| <?php namespace App\Http; | |
| use App\Http\Middleware\VerifyRecaptcha; | |
| use Illuminate\Foundation\Http\Kernel as HttpKernel; | |
| class Kernel extends HttpKernel | |
| { | |
| /** | |
| * The application's route middleware. | |
| * |
| SELECT (t1.id + 1) as gap_starts_at, | |
| (SELECT MIN(t3.id) -1 FROM arrc_vouchers t3 WHERE t3.id > t1.id) as gap_ends_at | |
| FROM arrc_vouchers t1 | |
| WHERE NOT EXISTS (SELECT t2.id FROM arrc_vouchers t2 WHERE t2.id = t1.id + 1) | |
| HAVING gap_ends_at IS NOT NULL | |
| gap_starts_at - first id in current gap | |
| gap_ends_at - last id in current gap | |
| Reference: https://stackoverflow.com/a/6057665/6875460 |
It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of countries