openssl req -x509 -newkey rsa:4096 -sha256 -keyout example.key -out example.crt -subj "/CN=example.com" -days 3650 -passout pass:foobar
openssl x509 -x509toreq -in example.crt -out example.csr -signkey example.key -passin pass:foobar
| (function bearClickerStart(global, doc) { | |
| // use strict is a configuration that prevents errors from javascript's older days | |
| 'use strict'; | |
| // This is the root container that will hold everything else | |
| let parent = doc.querySelector('#bear_insertion'); | |
| parent.innerHTML = ''; | |
| let bears = []; | |
| // Create five bears | |
| for (let i = 0; i < 5; i += 1 ) { | |
| bears.push('http://placebear.com/g/200/300'); |
| INSERT INTO public.city (id, name, countrycode, district, population) VALUES (1, 'Kabul ', 'AFG', 'Kabol ', 1780000); | |
| INSERT INTO public.city (id, name, countrycode, district, population) VALUES (2, 'Qandahar ', 'AFG', 'Qandahar ', 237500); | |
| INSERT INTO public.city (id, name, countrycode, district, population) VALUES (3, 'Herat ', 'AFG', 'Herat ', 186800); | |
| INSERT INTO public.city (id, name, countrycode, district, population) VALUES (4, 'Mazar-e-Sharif ', 'AFG', 'Balkh ', 127800); | |
| INSERT INTO public.city (id, name, countrycode, district, population) VALUES (5, 'Amsterdam ', 'NLD', 'Noord-Holland ', 731200); | |
| INSERT INTO public.city (id, name, countrycode, district, population) VALUES (6, 'Rotterdam ', 'NLD', 'Zuid-Holland ', 593321); | |
| INSERT INTO public.city (id, name, countrycode, district, popul |
| .idea |
| <style> | |
| .Alert { | |
| padding: 2em; | |
| } | |
| .Alert-Success { | |
| border: 10px solid green; | |
| } | |
| .Alert-Error { | |
| border: 10px solid red; | |
| } |
| php artisan route:clear | |
| php artisan cache:clear | |
| php artisan debugbar:clear //likely not necessary since it returned "No Debugbar Storage found.." | |
| php artisan config:clear |
openssl req -x509 -newkey rsa:4096 -sha256 -keyout example.key -out example.crt -subj "/CN=example.com" -days 3650 -passout pass:foobar
openssl x509 -x509toreq -in example.crt -out example.csr -signkey example.key -passin pass:foobar
| zend_extension=xdebug.so | |
| xdebug.remote_enable = on | |
| xdebug.remote_connect_back = on | |
| xdebug.idekey = "vagrant" |
| <?php | |
| namespace cellControl\SecurityThrottle; | |
| require_once dirname(dirname(__DIR__)) . '/init.php'; | |
| use \Redis; | |
| use cellControl\RedisSingleton; | |
| use cellControl\IPFilter\IPFilter; | |
| use cellControl\Traits\Environment; | |
| use cellControl\Interfaces\Timer\TimeInterface; | |
| /** | |
| * Class BlackLister |
| [New LWP 1831] | |
| Core was generated by `php-fpm: pool www '. | |
| Program terminated with signal SIGSEGV, Segmentation fault. | |
| #0 0x00007f71a83f8c22 in ?? () |
| <?php | |
| namespace CountryCodesAndAbbr; | |
| require_once dirname(dirname(__DIR__)) . '/init.php'; | |
| use GuzzleHttp\Client; | |
| use GuzzleHttp\ClientInterface; | |
| use cellControl\Traits\StatusCodeTraits; | |
| use Exception; |