Skip to content

Instantly share code, notes, and snippets.

@yurkinx
yurkinx / Apple_Push_Notifications
Last active August 29, 2015 14:18
Copy paste tutorial to creat keys for Apple Push Notification service on Mac
Use this: http://docs.aws.amazon.com/sns/latest/dg/mobile-push-apns.html
Prepare:
1. Create folder "Certificates" in the "Documents" folder.
Do:
1. Go: https://developer.apple.com/account/ios/certificate/certificateCreate.action
2. Select: Apple Push Notification service SSL (Sandbox)
3. On your Mac open Keychain Access. In the drop down menu, select Keychain Access >
Certificate Assistant > Request a Certificate from a Certificate Authority.
In the Certificate Information window, enter the following information:
Ionic and ngCordova upload example
git init
git add *
git commit -m "first commit"
git remote set-url origin https://user:server:port/scm/ABC/my_stash_repo.git (git remote -v)
//
@yurkinx
yurkinx / gist:7338922
Last active December 27, 2015 14:09
Amazon EC2 deploy from github to server
use it:
https://gist.github.com/oodavid/1809044
change "apache" user name to whatever your php running on
at the end execute:
git remote set-url origin [email protected]:user/repo.git
@yurkinx
yurkinx / yii2-image
Last active December 26, 2015 04:09
Yii2-image ext example
$file=Yii::getAlias('@app/pass/to/file');
$image=Yii::$app->image->load($file);
header("Content-Type: image/png");
echo $image->resize($width,$height)->rotate(30)->render();