This file contains 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
blueprint: | |
name: ZWaveJS - Aeotec WallMote Duo scene controller | |
description: | | |
Perform actions when Aeotec WallMote Duo buttons are interacted with. | |
The release action is equivalent to a long tap. | |
A release action is always triggered after a hold action, which makes | |
them a bit tricky to use. The hold action is repeated as long as the | |
button is held down. |
This file contains 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
<div class="slides"> | |
<section class="stack" data-id="5b6017fc19d2dc9bd0ef1941599c2b06"> | |
<section class="" data-id="804766a6f962e5c8775b03e1e0051489"> | |
<h1> | |
<span style="font-size: 115.362px;">#BPMAC</span> </h1> | |
<div>Bastion Point Model Aircraft Club</div> | |
<img src="https://s3.amazonaws.com/media-p.slid.es/uploads/sammcewan/images/512590/launch.gif" style="width: 763.1456608497309px; height: 430.48994444596957px; max-height: none; max-width: none;"> | |
</section> | |
<section class="" data-id="b163e69ae6cf9330cd68a338a9017a23"> | |
<h2>Sam</h2> |
This file contains 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
Pod::Spec.new do |m| | |
m.name = 'Mapbox' | |
m.version = '1.1.0' | |
m.summary = 'Open source alternative to MapKit.' | |
m.description = 'Open source alternative to MapKit supporting custom tile sources, offline use, and complete cache control.' | |
m.homepage = 'http://mapbox.com/mobile' | |
m.license = 'BSD' | |
m.author = { 'Mapbox' => '[email protected]' } |
This file contains 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
// Initialize RestKit | |
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url]; | |
RKObjectManager *objectManager = [[RKObjectManager alloc] initWithHTTPClient:httpClient]; | |
[AFNetworkActivityIndicatorManager sharedManager].enabled = YES; | |
// Complete Core Data stack initialization | |
NSManagedObjectModel *managedObjectModel = [NSManagedObjectModel mergedModelFromBundles:nil]; | |
RKManagedObjectStore *managedObjectStore = [[RKManagedObjectStore alloc] initWithManagedObjectModel:managedObjectModel]; | |
objectManager.managedObjectStore = managedObjectStore; |