#Simple MongoDB Security Tutorial
###1 - Start mongod without any "security option"
$ mongod --port 27017
#Simple MongoDB Security Tutorial
###1 - Start mongod without any "security option"
$ mongod --port 27017
| ########################################## | |
| # To run: | |
| # curl -sSL https://gist.githubusercontent.com/sirkkalap/e87cd580a47b180a7d32/raw/d9c9ebae4f5cf64eed4676e8aedac265b5a51bfa/Install-Docker-on-Linux-Mint.sh | bash -x | |
| ########################################## | |
| # Check that HTTPS transport is available to APT | |
| if [ ! -e /usr/lib/apt/methods/https ]; then | |
| sudo apt-get update | |
| sudo apt-get install -y apt-transport-https | |
| fi |
| // This example shows how to render pages that perform AJAX calls | |
| // upon page load. | |
| // | |
| // Instead of waiting a fixed amount of time before doing the render, | |
| // we are keeping track of every resource that is loaded. | |
| // | |
| // Once all resources are loaded, we wait a small amount of time | |
| // (resourceWait) in case these resources load other resources. | |
| // | |
| // The page is rendered after a maximum amount of time (maxRenderTime) |
| // selecting the ul and children | |
| var $categories = this.$el.find('ul.sortable'), | |
| $categoriesli = $categories.children('li'); | |
| // sorting the list | |
| $categoriesli.sort(function(a,b){ | |
| var an = $(a).find('div.sort-arrows').data('index'), | |
| bn = $(b).find('div.sort-arrows').data('index'); | |
| if(an > bn) { |
| return View.extend({ | |
| initialize: function () { | |
| this.el.attr("draggable", "true") | |
| this.el.bind("dragstart", _.bind(this._dragStartEvent, this)) | |
| }, | |
| _dragStartEvent: function (e) { | |
| var data | |
| if (e.originalEvent) e = e.originalEvent | |
| e.dataTransfer.effectAllowed = "copy" // default to copy |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Slider CSS</title> | |
| <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | |
| <!--[if gte IE 9]> |
| <?php | |
| class Crawler | |
| { | |
| protected $_url; | |
| protected $_depth; | |
| protected $_seen = array(); | |
| protected $_host; | |
| protected $_sitemap; | |
| protected $_curl; | |
| protected $_limitUrls; |
| public function recursiveCall($url, $depth) | |
| { | |
| if(!$this->isValid($url,$depth)) { | |
| return; | |
| } | |
| $this->_seen[$url] = true; | |
| $request = new AsyncWebRequest($url); | |
| if($request->start()) { | |
| while($request->isRunning()) { |
| use GuzzleHttp\Client; | |
| $request = new AsyncWebRequest($this->_url,$url); | |
| if($request->start()) { | |
| while($request->isRunning()) { | |
| usleep(30); | |
| } | |
| if($request->join()) { |