<?php
/**
* When we want to perform a bulk insert we will not found support for this action in Eloquent or Query Builder
* To avoid performance issues i have to drop my preference to be database agnostic in my Apps
* To be used like:
* $table = 'table_name';
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# @author Exadra37 <exadra37ingmailpointcom> | |
# @since 2015/03/18 | |
# @link exadra37.com | |
# @see Heavily inspired in http://stackoverflow.com/a/7244456 | |
# | |
# | |
# I use this script to update my Prestashop fork when i want to make a contribution | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The helper function inside section DEBUG will allow to use var_dump and print_r | |
* with an formatted output. | |
* | |
* The functions ddv(), ddp(), dv(), dp() will cal dump(), | |
* that for is turn will call isAllowedToDebug() to check if we need to check the ip address | |
* and in that case if the remote ip address is in the allowed ip addresses. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @author Exadra37 <exadra37atgmailpointcom> | |
* @since 2014/01/03 | |
*/ | |
if (!function_exists('debugOnScreen')) { | |
function debugOnScreen(array $vars, $print_r = false, $die = false) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set statusline="%f%m%r%h%w [%Y] [0x%02.2B]%< %F%=%4v,%4l %3p%% of %L" | |
nnoremap <F2> :set invpaste paste?<CR> | |
set pastetoggle=<F2> | |
set showmode | |
set nu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# by Exadra37 | |
# this will allow gtilab to process hudge diffrences | |
# restart gitlab to apply changes | |
# change from 30 to 300 | |
timeout 300 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# @author Paulo Silva <exadra37atgmailpointcom> | |
# @since 2014/08/20 | |
echo -e "\n Import CSV File to Database \n"; | |
error=0; | |
if [ "$1" != "-h" ] || [ "$1" != "--help" ] | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Will uninstall / remove completely mysql from your system | |
# This script was done to work in Ubuntu 13.10, but can be easily modified to work in other distributions | |
# | |
# @author Exadra37 | |
# @version 1.0.0 | |
# @since 14/10/2014 | |
# @see http://askubuntu.com/a/172516 | |
# http://stackoverflow.com/a/16178696 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* @author Exadra37 | |
* @package exadra37/tools | |
* @version 1.0.0 | |
* @since 1.0.3 - 19/09/2014 | |
* 1.0.2 - 15/09/2014 | |
* 1.0.1 - 15/09/2014 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- http://silviomoreto.github.io/bootstrap-select/ --> | |
<select id="compare" class="selectpicker" data-style="btn-success" data-max-options="2" title="Compare Settings" data-width="25em" multiple> | |
<optgroup class="multiple-options" label="Compare" data-max-options="1"> | |
<option class="exadra37-1-selection-by-group exadra37-group-compare" title="Compare Daily" selected>Daily</option> | |
<option class="exadra37-1-selection-by-group exadra37-group-compare" title="Compare Weekly">Weekly</option> | |
<option class="exadra37-1-selection-by-group exadra37-group-compare" title="Compare Monthly">Monthly</option> | |
</optgroup> | |
<optgroup class="multiple-options" label="Against" data-max-options="1"> | |
<option class="exadra37-1-selection-by-group exadra37-group-against" title="Against Previous Week" selected>Previous Week</option> | |
<option class="exadra37-1-selection-by-group exadra37-group-against" title="Against Last Year">Last Year</option> |