Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| CREATE TABLE IF NOT EXISTS `country` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `iso` char(2) NOT NULL, | |
| `name` varchar(80) NOT NULL, | |
| `nicename` varchar(80) NOT NULL, | |
| `iso3` char(3) DEFAULT NULL, | |
| `numcode` smallint(6) DEFAULT NULL, | |
| `phonecode` int(5) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
| [ | |
| /*{ | |
| "in": "/25671928/tamilwin.banner//header", | |
| "sz": [ | |
| [970, 250], | |
| [970, 90], | |
| [728, 90], | |
| [320, 100] | |
| ], | |
| "sl": "dfp_banner_header", |
I have following object:
var cities={10:'Tashkent', 14:'Karakalpakiya', 16:'Andijan'};I want sort it by city names, so after sort it should be:
var cities={16:'Andijan', 14:'Karakalpakiya', 10:'Tashkent'};But I can't sort object properties, instead can convert object into array, then sort items.
| // MySQL to Google Spreadsheet By Pradeep Bheron | |
| // Support and contact at pradeepbheron.com | |
| function myMySQLFetchData() { | |
| var conn = Jdbc.getConnection('jdbc:mysql://127.0.0.1:3306/employee_db', 'username', 'pass'); // Change it as per your database credentials | |
| var stmt = conn.createStatement(); | |
| var start = new Date(); // Get script starting time | |
| #!/usr/bin/env bash | |
| # | |
| # Sync Amason S3 Bucket with Akamai NetStorage | |
| # | |
| # Dependency: | |
| # "aws" command : AWS CLI | |
| # "rsync" command :yeah, the one. | |
| # .aws/credentials : AWS Credential file (for aws command) | |
| # .ssj/netstorage.ppk : Private Key for your NetStorage account |
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfsWjLFom9vy5T5LUYXI/M2ayJmuMwivsWpms3ky8DSxldzbOO/r7R7P1Em+EyOgNSF6pyVLrnzG6jYY72B+CAwdBwSEymcE497x+70PXnCkkjE0A5kNxjpn0PP4VwuMCshpOTAVbwSTQ9H1H/xWiXGllwniY5SPR646I542UBL+nk3/NdNRVv6yyQxl0JTWaL3jXPA1eGnUMSjDq/wa15ssVz6o174BAESlOmUWnzJAv1MYb3NdhGXah/zP2wziP1kiBNJCH/EnZVshqfiagMKew3evbpQpcShVT3iVwbzadXpgxbH6AJO3pGmI4+orvvQbDooILUvrgCVGRA4JbL [email protected] |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" | |
| xmlns:xhtml="http://www.w3.org/1999/xhtml"> | |
| <url> | |
| <loc>https://mydomain.com/uk</loc> | |
| <xhtml:link | |
| rel="alternate" |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
| <meta itemprop="name" content="Friends Matrimony"> | |
| <meta itemprop="image" content="https://www.friendsmatrimony.com/images/logo.png"> | |
| <meta itemprop="description" content="Exclusive Matrimony services for Indian Brides and Grooms Around the World, Friendsmatrimony.com is a Great Place to find your Life Partner."> |
| public function refreshAdminToken(Request $request) | |
| { | |
| if($this->validRefreshRequest($request)) | |
| { | |
| $admin_user_token = $request->input('admin_user_token'); | |
| $secretKey = config('jwt.admin'); | |
| try{ | |
| $decoded = JWT::decode($admin_user_token, $secretKey, ['HS512']); |