Skip to content

Instantly share code, notes, and snippets.

{
"routes": [
{
"bounds": {
"northeast": {
"lat": 53.38149,
"lng": -1.42853
},
"southwest": {
"lat": 53.35274,
data = {
"pair_1":
[
{ # Sentence 1
("the","cat","sat") : set([]),
("cat","sat","on") : set([])
},
{ # Sentence 2
("the","cat","sat") : set([]),
("cat","sat","on") : set([])
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *StoreCellIdentifier = @"StoreCellIdentifier";
static BOOL nibsRegistered = NO;
if (!nibsRegistered) {
UINib *nib = [UINib nibWithNibName:@"StoreLocationCell" bundle:nil];
[tableView registerNib:nib forCellReuseIdentifier:StoreCellIdentifier];
nibsRegistered = YES;
}
Test
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://tempuri.org/">
<soap:Body xmlns:a="http://schemas.datacontract.org/2004/07/WebServices.DataContract" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<SaveQualityInspections>
<qualityInspections>
<a:QualityInspections>
<a:QualityInspection>
<a:Answers>
<a:QualityInspectionAnswer>
<a:QuestionId>b505bbc0-c9d3-4f28-ab43-d12a498a229d</a:QuestionId>
@blork
blork / gist:4344713
Created December 20, 2012 11:11
Gmail Modal
//On presenting the modal...
UIImageView *backView = [[UIImageView alloc] initWithImage:[self.navigationController.view screenshot]];
[backView setTag:1338];
[self.navigationController.view addSubview:backView];
UIView *maskView = [[UIView alloc] initWithFrame:self.navigationController.view.frame];
[maskView setBackgroundColor:[UIColor blackColor]];
[maskView setTag:1337];
[self.navigationController.view addSubview:maskView];
@blork
blork / Pinner 1.1-beta1.md
Last active December 12, 2015 09:19
Pinner 1.1-beta1 change log

Pinner 1.1-beta1

Change log:

  • Removed old info button.
  • Moved 'extended' text to pullable drawer.
  • Hide toolbar/navigation on scroll, instead of fullscreen mode.
  • Only sets description on a new bookmark if contents of pasteboard are new.
  • Can now edit from detail page.
  • Better tag matching.
  • New app icon.
@blork
blork / git-changelog.sh
Last active December 15, 2015 15:19
A shell script which generates a nicely formatted change log between two git commit hashes. To be added as a custom action in Sourcetree.
#! /bin/bash
git log $1...$2 --pretty=format:'• %s' --reverse | grep -v Merge
@blork
blork / StackIntentService.java
Last active December 15, 2015 19:29 — forked from SeanPONeil/BlockingIntentService.java
Works as IntentService, based on code from AOSP. Adds intents to a LIFO stack, executes most recently added first. onHandleIntent returns boolean indicating whether the intent has already been added.
package com.threesquared.axawellbeing.web.services;
import android.app.Service;
import android.content.Intent;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.IBinder;
import android.os.Looper;
import android.os.Message;
@blork
blork / SquareImageView.java
Created May 21, 2013 13:19
Android imageview subclass which maintains a square aspect ratio.
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
public class SquareImageView extends ImageView {
public SquareImageView(Context context) {
super(context);
}