Skip to content

Instantly share code, notes, and snippets.

View linkov's full-sized avatar
💭
FUCK PUTIN

aleksejlinkov linkov

💭
FUCK PUTIN
View GitHub Profile
@linkov
linkov / Clientcode.m
Created May 8, 2012 21:08
UIImage Category for efficient thumbnail gen
cell.imageView.image = [UIImage imageThumbnailNamed:@"example.jpg" width:20];
@linkov
linkov / hashtable.swift
Created December 30, 2014 20:54
Simle hash table implementation in Swift
import Foundation
class SDWHashTable {
var arr:[Array<String>] = [];
var maxArraySize = 5;
convenience init(maxSize: Int) {
self.init()