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
| jQuery.widget("shovelapps.buildable", { | |
| options: { | |
| platformBaseUrl: "" | |
| }, | |
| _create: function() { | |
| var _this = this, | |
| box = this.element; | |
| this.styleBox(); | |
| box.on('dragenter', doNothing); |
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
| //para probar, correr con node y en otra consola consolear: | |
| //curl --request PUT 'http://localhost:8000/put' --upload-file archivo.zip | |
| var http = require('http'); | |
| var fs = require('fs'); | |
| http.createServer(function(request,response){ | |
| response.writeHead(200); | |
| var destinationFile = fs.createWriteStream("destination.zip"); | |
| request.pipe(destinationFile); // aca esta la magia, use wisely |
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 lang="es"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> | |
| <script src="http://code.jquery.com/jquery-1.8.2.js"></script> | |
| <script type="text/javascript" src="http://www.ign.gob.ar/argenmap/argenmap.jquery.min.js"></script> | |
| <script> | |
| $(function() { |
NewerOlder