Skip to content

Instantly share code, notes, and snippets.

@albertofwb
albertofwb / restart.bat
Created August 9, 2017 07:30
put this script in "C:\windows\system32" then you can simply type "restart AppName" to restart windows softwares
@echo off
set App=%1
set SleepSeconds=2
set PingIP=127.0.0.1
if "%App%" == "" (
goto usage
)
@bdbai
bdbai / youku_speedup.cs
Created May 14, 2016 16:13
Youku speed up claiming
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) {
@barretlee
barretlee / barretTpl Demo
Created December 3, 2013 08:12
barretTpl Demo
<!DOCTYPE HTML>
<body>
<style type="text/css">
textarea, button, div {
display: inline-block;
vertical-align: middle;
margin-right:30px;
}
textarea {
width:500px;
@wintercn
wintercn / adhocSort.js
Created September 30, 2013 03:19
假期前小玩意,ad-hoc排序
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++)