Skip to content

Instantly share code, notes, and snippets.

View arechesk's full-sized avatar

Aleksandr Kulikov arechesk

View GitHub Profile
@arechesk
arechesk / getfriends
Created September 7, 2013 21:48
vk friends.get
#!/bin/zsh
curl https://api.vkontakte.ru/method/friends.get\?user_id\=$1 | jq '.response[]'
@arechesk
arechesk / tree.md
Created April 24, 2012 07:02 — forked from hrldcpr/tree.md
one-line tree in python

One-line Tree in Python

Using Python's built-in defaultdict we can easily define a tree data structure:

def tree(): return defaultdict(tree)

That's it!

@arechesk
arechesk / oneliners.cs
Created June 6, 2011 11:44 — forked from rbirkby/oneliners.cs
10 C# One Liners to Impress Your Friends
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Xml.Linq;
class TenCSharpOneLiners
{
static void Main()
{