Skip to content

Instantly share code, notes, and snippets.

View hootlex's full-sized avatar

Alex Kyriakidis hootlex

View GitHub Profile
@hootlex
hootlex / gist:1bd760788ad4b4eee28d
Last active January 15, 2016 16:45
jQuery Request to test api
var token = '';


$.ajax({
  method: 'post',
  url: "",
  dataType: 'jsonp',
  data: {
 
@hootlex
hootlex / laravellocal.md
Last active April 19, 2024 10:52
Run laravel project locally

##Windows users:

cmder will be refered as console

##Mac Os, Ubuntu and windows users continue here:

  • Create a database locally named homestead utf8_general_ci
@hootlex
hootlex / install.sh
Last active August 29, 2015 14:19 — forked from stayallive/install.sh
Install PHP 5.6.8 on Plesk 11.5 & 12 (CentOS 6)
#!/bin/bash
# Make sure you are up to date
yum -y update && yum -y install wget
# Install EPEL repository
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# Get us a clean working directory
mkdir /php
@hootlex
hootlex / install.sh
Last active August 29, 2015 14:19 — forked from stayallive/install.sh
Install PHP 5.5.24 on Plesk 11.5 and 12 (CentOS 6)
#!/bin/bash
# Make sure you are up to date
yum -y update && yum -y install wget
# Install EPEL repository
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# Get us a clean working directory
mkdir /php