This file contains 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 arc = [[10, 10, 10, 10, 10], | |
[20, 20, 20, 20, 20], | |
[50, 50, 50, 50, 50], | |
[100, 100, 100, 100, 100], | |
[200, 200, 200, 200, 200]]; | |
function verf(arr, x) { | |
for(var y = 0; y < 5; y++) | |
if(arr[x][y] !== 0) | |
return y; |
This file contains 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
{"lastUpload":"2017-01-08T02:08:08.306Z"} |
This file contains 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 | |
title AutoPull Git - 1 minute | |
echo loop start! | |
C: | |
cd \xampp\htdocs\ | |
set /a x = 0 | |
:loop | |
start "" "%SYSTEMDRIVE%\Program Files (x86)\Git\bin\sh.exe" --login -i -c "git pull origin" | |
timeout /t 60 | |
goto loop |
This file contains 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
MemoryStream stream = new MemoryStream(); | |
try | |
{ | |
m_packets.Clear(); | |
int count = m_packetCount; | |
if (count > 0) | |
m_packets.Capacity = count; | |
RawChunkHeader header; |