Skip to content

Instantly share code, notes, and snippets.

View zhuharev's full-sized avatar
🏠
Working from home

Kirill Zhuharev zhuharev

🏠
Working from home
View GitHub Profile
@zhuharev
zhuharev / Sites-table.md
Last active August 29, 2015 14:26
CS:GO loterry sites
domain created https fairplay backend
csgo-rich.ru 2015.06.30 - - php+ws
@zhuharev
zhuharev / follower.go
Created September 21, 2015 22:15
vk.com autofollower by max mutual friends
package main
import (
"github.com/zhuharev/flagdb"
"github.com/zhuharev/vk"
"github.com/zhuharev/vkutil"
"log"
"math/rand"
"os"
"time"
@zhuharev
zhuharev / main.cs
Last active October 12, 2015 19:30
c# integer count
using System;
public class HelloWorld
{
static public void Main ()
{
var k = 0;
Console.WriteLine("Введите три произвольных числа числа: ");
Console.WriteLine("here");
double a = Convert.ToDouble(Console.ReadLine());
@zhuharev
zhuharev / main.cs
Created November 2, 2015 17:16
3 задача
using System;
public class ClassName
{
static public void Main()
{
Console.WriteLine("Введите последовательность через Enter. Закончите 0.");
int n = 0, k = 0, t = 0, last = 0;
bool f = false;
while (!f)
@zhuharev
zhuharev / main.cs
Last active December 5, 2015 18:37
Increment sort
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
// Длинна массива
@zhuharev
zhuharev / main.cs
Created December 7, 2015 19:04
pyramid sort c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication22
{
class PyramidSorting
{
//добавление элемента к пирамиде
@zhuharev
zhuharev / main.cs
Created December 7, 2015 19:41
lab
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Test
{
static void Main(string[] args)
@zhuharev
zhuharev / main.cs
Created December 7, 2015 19:54
lab
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication22
{
class Test
{
static void sort(int[] arr)
@zhuharev
zhuharev / main.cs
Created December 13, 2015 13:44
bin sort c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication22 {
class App {
static void Main(string[] args)
{
InsertBin();
@zhuharev
zhuharev / XmlHTTPRequest.js
Last active April 17, 2016 20:48
JavaScript test suport functional
function xhrSupport() {
var xhr = new XMLHttpRequest();
return !!('onprogress' in xhr);
}