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
| @echo off | |
| set App=%1 | |
| set SleepSeconds=2 | |
| set PingIP=127.0.0.1 | |
| if "%App%" == "" ( | |
| goto usage | |
| ) |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Net.Http; | |
| using System.Threading.Tasks; | |
| namespace HttpWebRequestDemo | |
| { | |
| class Program | |
| { | |
| async static Task<int> Run(string user, string pass) { |
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> | |
| <body> | |
| <style type="text/css"> | |
| textarea, button, div { | |
| display: inline-block; | |
| vertical-align: middle; | |
| margin-right:30px; | |
| } | |
| textarea { | |
| width:500px; |
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 shuffle(array){ | |
| for(var i = array.length-1; i > 0; i--) { | |
| var rnd = Math.floor(Math.random() * (i+1)); | |
| var tmp = array[i]; | |
| array[i] = array[rnd]; | |
| array[rnd] = tmp; | |
| } | |
| } | |
| function isInOrder(array) { | |
| for(var i = 0; i < array.length-1; i++) |