Skip to content

Instantly share code, notes, and snippets.

View nachodd's full-sized avatar

Ignacio Durand nachodd

  • Expero
  • Rosario, Santa Fé, Argentina
View GitHub Profile
This is question is old but I found you can do this based on information from a tutorial by Tejas Jasani: http://www.theappguruz.com/blog/upgrading-from-laravel-4-2-to-5-in-web
Here are the key steps:
1 - Add the app/Http/Controllers directory to the "autoload" classmap directive of your composer.json file.
"autoload": {
"classmap": [
"database",
"app/Http/Controllers"
],
@nachodd
nachodd / example-modal.js
Created December 16, 2013 04:01
modal bootstrap & javascript objects
//Modal cargando
var dialogs = (function () {
var cargandoDiv = $('#cargandoDialog');
var avisoDiv = $('#modalAviso');
return {
showCargando: function() {
cargandoDiv.modal();
},
hideCargando: function () {
cargandoDiv.modal('hide');
@nachodd
nachodd / recursive_explore.php
Created November 17, 2016 13:43
Recursively walks a Collection or Array that contains children of the same kind and flatten into an single dimesion Collection or Array
<?php
// Recursively walks a Collection or Array that contains children of the same kind and flatten into an single dimesion Collection or Array.
// Example:
// We have:
// A
// |_B
// |_C
// |_D
// We want:
<?php
class helpers {
public function uniqueCode($length = 10) {
$characters = '0123456789';
$charactersLength = strlen($characters);
while (true) {
// uniqid gives 13 chars, but you could adjust it to your needs.
if (function_exists("random_bytes")) {
$bytes = random_bytes($length);
} elseif (function_exists("openssl_random_pseudo_bytes")) {
@nachodd
nachodd / averange_multidimensional_array.js
Created October 11, 2019 20:21
Average Multidimensional Array Javascript (recursive)
const averange = (input) => {
const {sum, count} = sumAndCount(input)
return sum/count
}
const sumAndCount = (arr) => {
let count = 0
const sum = arr.reduce((acc, element) => {
@nachodd
nachodd / api.js
Created November 19, 2019 17:20
api calls example
import axios from "axios"
export function getSellers() {
return axios({
url: "v1/sellers/",
method: "get",
})
}
export function createInvoice(data) {
@nachodd
nachodd / api.js
Created November 19, 2019 17:37
api calls example, returning promise
// 'request' it's an axios instance, that it has a request interceptor setted on it (to add an auth header)
// This is all done in utils/request.js. So that all api calls made with 'request' had auth header setted on it
import request from "utils/request"
export function getResponsabilities(userId) {
return new Promise(async (resolve, reject) => {
try {
const res = await request({
url: `v1/f12/${userId}/responsabilities`,
method: "get",
@nachodd
nachodd / request.js
Created November 19, 2019 17:57
Axios instance creation, with request and response handling (managing auth header and error responses). (vue.js project)
/* eslint-disable no-unreachable */
/* eslint-disable require-atomic-updates */
// import _ from "lodash"; // LODASH is imported and used globally, configured in webpack
import axios from "axios"
import store from "store" // store is the Vuex store instance
import router from "router" // router is the Vue Router instance
import { warn, warnDialogParse } from "utils/alerts" // helpers to show alerts and error messages
// create an axios instance
@nachodd
nachodd / flatten.js
Last active November 23, 2019 13:46
Simple multidimensional array flatten
/**
* Flatten multidimensional Arrays
* @param {Array} arrayToFlat multidimensional array to be flatten.
* @returns {Array} array flattened
*/
function flatten(arrayToFlat = []) {
const result = []
arrayToFlat.forEach(element => {
if (Array.isArray(element)) {
@nachodd
nachodd / cloudSettings
Created October 25, 2019 14:45
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-10-25T14:45:28.109Z","extensionVersion":"v3.4.3"}