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
| <script type="text/javascript" src="<?php echo base_url(); ?>assets/front/js/jquery-1.11.3.js"></script> | |
| <style type="text/css"> | |
| img.login-social-icons { | |
| width: 80px; | |
| } | |
| .registration{ | |
| margin-top: 65px; |
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
| <!DOCTYPE html> | |
| <!-- | |
| ********************************************************************************************************** | |
| Copyright (c) 2016 Kamleshyadav. | |
| ********************************************************************************************************** --> | |
| <!-- | |
| Template Name: Fixit - Multipurpose Construction & Building HTML | |
| Version: 1.0.1 | |
| Author: Kamleshyadav |
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
| <script> | |
| $('.store').on('click', function () { // something with the class store clicked | |
| var storeStorageKey = []; | |
| $('input[name="pro"]:checked').each(function(i){ | |
| storeStorageKey[i] = $(this).val(); | |
| }); | |
| // store id of the item |
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
| <-- html script --> | |
| <input id="browse" type="file" multiple> | |
| <div id="preview"></div> | |
| <---end html ---> | |
| <-- start script ---> | |
| <script> |
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
| you can use mongodump & mongorestore | |
| 1-> back up a single database | |
| mongodump -h localhost -d database_name -o C:\DestinationFolder (backup to a DestinationFolder ) | |
| 2-> Restore the Database | |
| mongorestore -h localhost C:\DestinationFolder (Restor from the DestinationFolder ) | |
| or |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| function ipLookUp () { | |
| $.ajax('http://ip-api.com/json') | |
| .then( | |
| function success(response) { | |
| console.log('User\'s Location Data is ', response); | |
| console.log('User\'s Country', response.country); | |
| getAdress(response.lat, response.lon) | |
| }, | |
| function fail(data, status) { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Gmail API Quickstart</title> | |
| <meta charset="utf-8" /> | |
| </head> | |
| <body> | |
| <p>Gmail API Quickstart</p> | |
| <!--Add buttons to initiate auth sequence and sign out--> |
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
| pip3 install PyMySQL | |
| or | |
| pip install pymysql | |
| after then |