Skip to content

Instantly share code, notes, and snippets.

View zspine's full-sized avatar
🎯
Focusing

M#3 zspine

🎯
Focusing
View GitHub Profile
@zspine
zspine / MySQL dump Gzip
Created November 1, 2014 15:52
MySQL command line import gzip file
zcat DATABASE_BACKUP.sql.gz | mysql -u DB_USERNAME -p DB_NAME
@import "https://fonts.googleapis.com/css?family=Lato:400,300,400italic,700,700italic";
@import "https://fonts.googleapis.com/css?family=Roboto+Slab:700,400";
#header .aui-header
{
background-color: #343131;
border-bottom: 1px solid #222222;
}
#title-text a
{
http://blog.anorgan.com/2015/01/15/using-google-analytics-api-with-php/
@zspine
zspine / app.js
Created November 4, 2015 04:19 — forked from jrmoran/app.js
AngularJS - Charting with Flot
var App = angular.module('App', []);
@zspine
zspine / Vagrantfile
Created November 20, 2017 06:13
Ubuntu, Setting up a docker development env with Vagrant
$script = <<SCRIPT
# Set up the repository
echo “Update the apt package index...”
sudo apt-get update -y
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
from twisted.internet import defer, reactor
from jasmin.vendor.smpp.pdu.operations import DeliverSM
from jasmin.queues.configs import AmqpConfig
from jasmin.queues.factory import AmqpFactory
from jasmin.routing.jasminApi import SmppServerSystemIdConnector
from jasmin.routing.content import RoutedDeliverSmContent
from jasmin.queues.test.test_amqp import waitFor
@defer.inlineCallbacks
def connect_and_publish(pdu, dc):
@zspine
zspine / codeception-commands.md
Last active August 1, 2018 13:22
Codeception Console Commands

Run Tests

php bin/codecept run
php bin/codecept run unit
php bin/codecept run acceptance
php bin/codecept run functional

Acceptance Test with PhantomJs

@zspine
zspine / CallerPermission.php
Created August 30, 2015 16:19
BeatSwitch lock doctrine example
<?php
//src/library/App/Entity/CallerPermission.php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="lock_caller_permission")
*/
#restart
sudo reboot
#shutdown
sudo poweroff
#copy from local to remote server
#scp target file user@ip-address destination
scp /home/migration/backup/example.txt root@1.1.1.1:/var/www/vhosts/example.com/backup
@zspine
zspine / rabbitmq-ubuntu-16.04.sh
Created April 29, 2019 09:13
Quick Install RabbitMQ Server on Ubuntu 16.04
sudo apt-get update
sudo apt-get upgrade
#Instruct apt to trust packages signed by rabbitmq signing key
wget -O - "https://github.com/rabbitmq/signing-keys/releases/download/2.0/rabbitmq-release-signing-key.asc" | sudo apt-key add -
#Enable apt HTTPS Transport
sudo apt-get install apt-transport-https
#Add the apt repository to the source list directory