Skip to content

Instantly share code, notes, and snippets.

@webinfinita
webinfinita / helpers.js
Created March 17, 2015 17:55
Common helper functions
$(document).ready(function(){
$('*[data-confirm]').on('click', function(e) {
var conf = confirm($(this).data('confirm'));
if(! conf) e.preventDefault();
});
$('body').on('hidden.bs.modal', '.modal', function () {
$(this).removeData('bs.modal');
});
@webinfinita
webinfinita / gist:e94fdad46b675c18c287
Created May 8, 2015 23:18
Nginex for Wordpress inside Laravel 5 installation
location @wp {
rewrite ^/blog(.*) /blog/index.php?q=$1;
}
location ^~ /blog {
root /home/vagrant/Code/site;
index index.php index.html index.htm;
try_files $uri $uri/ @wp;
location ~ \.php$ {
{
"bold_folder_labels": true,
// "color_scheme": "Packages/User/SublimeLinter/Facebook (SL).tmTheme",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"font_face": "Fira Code",
"font_options":
[
"gray_antialias"
],
server {
listen 80;
server_name domain-name.com;
root /home/forge/domain-name.com/public;
ssl_protocols TLSv1.2;
index index.html index.htm index.php;
charset utf-8;
@webinfinita
webinfinita / imagick-3.4.0-PHP7-forge.sh
Created March 27, 2016 18:50 — forked from pascalbaljet/imagick-3.4.0-PHP7-forge.sh
Install Imagick 3.4.0 on PHP 7.0 server (Laravel Forge)
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
apt-get install pkg-config libmagickwand-dev -y
cd /tmp
wget https://pecl.php.net/get/imagick-3.4.0.tgz
tar xvzf imagick-3.4.0.tgz
@webinfinita
webinfinita / belongs-to-many.sublime-snippet
Created March 27, 2016 18:57 — forked from adamwathan/belongs-to-many.sublime-snippet
Eloquent Relationship snippets for Sublime Text
<snippet>
<content><![CDATA[
public function ${1:relationship}()
{
return \$this->belongsToMany(${1/^(.+)$/(?1\u$1:)/g}::class, {$2:table});
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>belt</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->