I hereby claim:
- I am ntnmrndn on github.
- I am ntnmrndn (https://keybase.io/ntnmrndn) on keybase.
- I have a public key whose fingerprint is 6CF6 F1DD 8DA2 6027 DA4B A306 AC72 81E5 5AD8 2AE3
To claim this, I am signing this object:
| #include <stdio.h> | |
| int main () { | |
| char str[-~5]; | |
| int i=42^42; | |
| str[sizeof(str)+--i]=i+++i; | |
| *(int*)str=015734060512,++i; | |
| i<<=!i<=i; | |
| str[i*i] = *(str+i*i-1)^!!i; | |
| printf("%s!\n", str); | |
| } |
| // | |
| // NSString+Levenshtein.h | |
| // PyHelp | |
| // | |
| // Modified by Michael Bianco on 12/2/11. | |
| // <http://mabblog.com> | |
| // | |
| // Created by Rick Bourner on Sat Aug 09 2003. | |
| // rick@bourner.com |
| -(void)panGestureCallback:(UIPanGestureRecognizer *)panGesture{ | |
| static MMDrawerSide plow = MMDrawerSideNone; | |
| switch (panGesture.state) { | |
| case UIGestureRecognizerStateBegan: | |
| NSLog(@"BEEEGAAAN"); | |
| plow = MMDrawerSideNone; | |
| self.startingPanRect = self.centerContainerView.frame; | |
| case UIGestureRecognizerStateChanged:{ | |
| NSLog(@"CHAAAAANGE"); | |
| CGRect newFrame = self.startingPanRect; |
| // | |
| // UIImage+convertToGreyScale.swift | |
| // itooch | |
| // | |
| // Created by Antoine Marandon on 15/01/2015. | |
| // Copyright (c) 2015 eduPad. All rights reserved. | |
| // | |
| import Foundation |
| Sampling process 45540 for 3 seconds with 1 millisecond of run time between samples | |
| Sampling completed, processing symbols... | |
| Analysis of sampling Safari (pid 45540) every 1 millisecond | |
| Process: Safari [45540] | |
| Path: /Applications/Safari.app/Contents/MacOS/Safari | |
| Load Address: 0x10d6fb000 | |
| Identifier: com.apple.Safari | |
| Version: 8.0.3 (10600.3.18) | |
| Build Info: WebBrowser-7600003018000000~1 | |
| Code Type: X86-64 |
I hereby claim:
To claim this, I am signing this object:
| // you can write to stdout for debugging purposes, e.g. | |
| // printf("this is a debug message\n"); | |
| int cost(int A[], size_t P, size_t Q) { | |
| return A[P] + A[Q]; | |
| } | |
| size_t smallest(int A[], size_t P, size_t N) { | |
| size_t i = P; |
| # coding: utf-8 | |
| require 'active_support/core_ext/array' | |
| require 'active_support/core_ext/string/inflections' | |
| module Pod | |
| # Validates a Specification. | |
| # | |
| # Extends the Linter from the Core to add additional which require the | |
| # LocalPod and the Installer. | |
| # |
Paris is small. Most point of interest are within walking/biking distance of each other. Don't hesitate to rent a bike in one of the numerous spots all around the city. Here how it works:
| /// Last in First Out Operation queue. | |
| class LIFOOperationQueue { | |
| enum Priority { | |
| case high | |
| case low | |
| } | |
| private let queue: DispatchQueue | |
| private var highPriorityOperations = [Operation]() | |
| private var lowPriorityOperations = [Operation]() |