This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AF Afghanistan | |
| AL Albania | |
| DZ Algeria | |
| AS American Samoa | |
| AD Andorra | |
| AO Angola | |
| AI Anguilla | |
| AQ Antarctica | |
| AG Antigua and Barbuda | |
| AR Argentina |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "100":{ | |
| "name":"CHISINAU mun.", | |
| "list":{ | |
| "172":"Chişinău", | |
| "173":"Consiliul Municipal Chişinău", | |
| "184":"Coloniţa", | |
| "219":"Primăria comuna Tohatin", | |
| "222":"Ghidighici", | |
| "232":"Pretura sectorului Centru", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var seen = {}; | |
| $('.ads-list-photo-item img').each(function() { | |
| var txt = $(this).attr('src'); | |
| if (seen[txt]) | |
| $(this).closest('.ads-list-photo-item').remove(); | |
| else | |
| seen[txt] = true; | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Models; | |
| use Illuminate\Support\Facades\DB; | |
| trait EloquentNamesTrait | |
| { | |
| protected static $tableName = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| protected function sendPushNotificationsToIos($message) { | |
| $message = "test mesaj ".date("Y-m-d H:i:s"); | |
| $ctx = stream_context_create(); | |
| stream_context_set_option($ctx, 'ssl', 'local_cert', $_SERVER['DOCUMENT_ROOT'] . '/key/ebsNotifKey.pem'); | |
| $fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', | |
| $err, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE regions | |
| ( | |
| id SERIAL PRIMARY KEY NOT NULL, | |
| name VARCHAR(500), | |
| uri VARCHAR(250) NOT NULL | |
| ); | |
| INSERT INTO public.regions (id, name, uri) VALUES (1, 'Asia', 'asia'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (2, 'Europe', 'europe'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (3, 'Africa', 'africa'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO client_email_providers (domain) VALUES | |
| ('1033edge.com'), | |
| ('11mail.com'), | |
| ('123.com'), | |
| ('123box.net'), | |
| ('123india.com'), | |
| ('123mail.cl'), | |
| ('123qwe.co.uk'), | |
| ('150ml.com'), | |
| ('15meg4free.com'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (6, 1, 'Bangladesh', 'BD'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (9, 4, 'Brazil', 'BR'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (13, 4, 'Colombia', 'CO'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (67, 2, 'Estonia', 'EE'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (7, 2, 'Belarus', 'BY'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (27, 2, 'Ireland', 'IE '); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (68, 3, 'Angola', 'AO'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (2, 4, 'Argentina', 'AR'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (4, 2, 'Austria', 'AT'); | |
| INSERT INTO public.countries (id, region_id, name, short_name) VALUES (5, 2, 'Azerbaijan', 'AZ'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO public.regions (id, name, uri) VALUES (1, 'Asia', 'asia'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (2, 'Europe', 'europe'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (3, 'Africa', 'africa'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (4, 'Latin America', 'latin-america'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (5, 'Middle East', 'middle-east'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (6, 'Caribbean', 'caribbean'); | |
| INSERT INTO public.regions (id, name, uri) VALUES (7, 'North America', 'north-america'); |
OlderNewer