Skip to content

Instantly share code, notes, and snippets.

View amka's full-sized avatar
🚏
Working from …

Andrey M amka

🚏
Working from …
View GitHub Profile
@amka
amka / waterfill.py
Last active February 26, 2016 08:52
class Solution(object):
def trap(self, height):
"""
:type height: List[int]
:rtype: int
"""
water = 0
height_len = len(height)
if height_len < 3:
return water
@amka
amka / NSSplitView Delegate.mm
Last active December 22, 2015 12:38
NSSplitView Delegate
#define kSnapToDelta 8.0
#define kMinSourceListWidth 150.0
#define kSnapSourceListWidth 250.0
#define kMinContentWidth 150.0
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark - NSSplitView Delegate
- (void) splitView:(NSSplitView*) splitView resizeSubviewsWithOldSize:(NSSize) oldSize
{
if (splitView == _splitView)
//
// CustomView.m
// MaskTest
//
// Created by Sean Christmann on 12/22/08.
// Copyright 2008 EffectiveUI. All rights reserved.
//
#import "MagnifierView.h"
@amka
amka / soap_test.py
Created December 4, 2012 12:31
soap test
from datetime import datetime
import pprint
import socket
import ssl
from suds.client import Client
from mtse.connectors.transport import HTTPSClientCertTransport