Skip to content

Instantly share code, notes, and snippets.

@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();
@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
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)
//
Ionic and ngCordova upload example
@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:
@yurkinx
yurkinx / Ionic and in-app purchase
Last active August 29, 2015 14:18
Ionic and in-app purchase
https://blog.nraboy.com/2014/09/making-ios-app-purchases-ionicframework/
@yurkinx
yurkinx / config.json
Last active August 29, 2015 14:19 — forked from anonymous/config.json
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",
@yurkinx
yurkinx / Install composer on Amazon AMI running on EC2
Last active January 14, 2021 09:50 — forked from asugai/Install composer on Amazon AMI running on EC2
Install composer on Amazon AMI running on EC2
$ cd ~
$ sudo curl -sS https://getcomposer.org/installer | sudo php
$ sudo mv composer.phar /usr/local/bin/composer
$ sudo ln -s /usr/local/bin/composer /usr/bin/composer
then you can run
$ sudo composer install
@yurkinx
yurkinx / ReverseController.php
Created November 9, 2016 21:40 — forked from xskif/ReverseController.php
1) Copy this gist to project/console/controllers. 2) call -- yii reverse/migrate > tmp.migrate.php 3) copy functions to existing migration class.
<?php
namespace console\controllers;
use \Yii;
class ReverseController extends \yii\console\Controller
{
public function actionMigrate() {
// $schema = $args[0];
$tables = Yii::$app->db->schema->getTableSchemas();