To run this demo.
-
Make a new folder
mkdir test && cd test
-
Install packages
npm install
-
Run the app.js file
node app.js
To run this demo.
Make a new folder
mkdir test && cd test
Install packages
npm install
Run the app.js file
node app.js
@implementation AppDelegate { | |
NSInteger lastChangeCount; | |
NSPasteboard *pasteboard; | |
} | |
- (void)applicationDidFinishLaunching:(NSNotification *)notification { | |
pasteboard = [NSPasteboard generalPasteboard]; | |
[NSTimer scheduledTimerWithTimeInterval:0.25 target:self selector:@selector(checkPasteboard:) userInfo:nil repeats:YES]; | |
} |
1. clone the repo | |
git clone git://github.com/pagekit/pagekit.git && cd pagekit | |
2. install composer | |
curl -s getcomposer.org/installer | php -d detect_unicode=Off | |
3. run components install | |
php composer.phar install | |
4. boot local server |
Position : transform: translate(npx, npx);
Scale : transform: scale(n);
Rotation: transform: rotate(ndeg);
Opacity: opacity: 0...1;
// by @itskathuria | |
NSURL *url = [NSURL URLWithString:@"http://hooks.events/hooks/post.php"]; | |
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; | |
[request setHTTPMethod:@"POST"]; | |
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; | |
NSString *apiKey = @"yourAPIKeyShouldGoHere"; | |
NSString *title = @"yourTitleShouldGoHere"; | |
NSString *message = @"yourMessageShouldGoHere"; | |
NSString *query = [NSString stringWithFormat:@"hooksTitle=%@&hooksMessage=%@&hooksApi=%@", title, message, apiKey]; |
import picamera | |
camera = picamera.PiCamera() | |
camera.capture('image.jpg') |
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] |
Getting the following Console error:
http://api.soundcloud.com/resolve.json?callback=angular.callbacks._0&client_id=0d33361983f16d2527b01fbf6408b7d7&url=soundcloudURL
I'm guessing it's because the directive is running before the Firebase call retuns the URL... so how do I reload the plangular directive? Or defer loading the directive until I have the SoundClour URL because the URL will be different for each room.
curl -sS https://getcomposer.org/installer | php
php composer.phar install
php app.php
Sample Output
2015-03-08T15:14:53-0500 // correct
Sunday, 08th April 2015 / 15:14 (America/Chicago) // wrong month
Sunday, 08th March 2015 / 15:14 (America/Chicago) // correct month
:-webkit-autofill
remove autofill input yellow background Demo