This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2006 - Agreeing to Agree - Conflict Resolution for Optimistically Replicated Data | |
2007 - Designing a Commutative Replicated Data Type | |
2009 - CRDTs - Consistency without Concurrency Control | |
2011 - A Comprehensive Study of Convergent and Commutative Replicated Data Types | |
2011 - Conflict-free Replicated Data Types | |
2011 - Optimistic Concurrency Control by Melding Trees | |
2012 - A Lattice-Theoretical Approach to Deterministic Parallelism with Shared State | |
2012 - An Optimized Conflict-free Replicated Set | |
2012 - Brief Announcement: Semantics of Eventually Consistent Replicated Sets | |
2012 - Key-CRDT Stores |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Introduction to Pedestal --- They finally had a recruiter. | |
Rentpath is looking for a senior clojure and senior ruby | |
CareerBuilder is looking for a clojure person. They're moving a lot of stuff to clojure. | |
Stuart Hinson, asked about familiarity with Ring, works at RentPath | |
Aims to be simple. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (NSString *)tableView:(UITableView *)tableView titleForSwipeAccessoryButtonForRowAtIndexPath:(NSIndexPath *)indexPath { | |
return @"More"; | |
} | |
- (void)tableView:(UITableView *)tableView swipeAccessoryButtonPushedForRowAtIndexPath:(NSIndexPath *)indexPath { | |
NSLog(@"I wanted to be a pretty public API, but then time ran out and they forgot me..."); | |
// Hide the More/Delete menu. | |
[self setEditing:NO animated:YES]; | |
} |