Skip to content

Instantly share code, notes, and snippets.

View matthewsuan's full-sized avatar

Matthew Suan matthewsuan

View GitHub Profile
@matthewsuan
matthewsuan / axios.js
Last active March 28, 2024 12:36
Axios request queue-like that limits number of requests at any given time
import axios from 'axios'
const MAX_REQUESTS_COUNT = 5
const INTERVAL_MS = 10
let PENDING_REQUESTS = 0
// create new axios instance
const api = axios.create({})
/**
@matthewsuan
matthewsuan / dont-delete-private-files.php
Created May 8, 2017 11:43 — forked from Shelob9/dont-delete-private-files.php
One way to prevent files, uploaded through Caldera Forms file fields, not set to be added to media library, from being deleted.
<?php
/** Wait until caldera_forms_core_init hook so we know all actions were added **/
add_action( 'caldera_forms_core_init', function() {
//File delete is attempted first here, but if an email should send, the file isn't deleted//
remove_action( 'caldera_forms_submit_complete', array( 'Caldera_Forms_Files', 'cleanup' ) );
//If email is set to be used, we wait until email is sent to delete on these hooks:
remove_action( 'caldera_forms_mailer_complete', array( 'Caldera_Forms_Files', 'delete_after_mail' ), 10, 3 );
remove_action( 'caldera_forms_mailer_failed', array( 'Caldera_Forms_Files', 'delete_after_mail' ), 10, 3 );
@matthewsuan
matthewsuan / laravel-slug.php
Created June 19, 2016 18:52
Improved Unique Slug Generator from @ericbarnes, @AucT
<?php
namespace App\Services;
class Slug
{
private $entity;
private $slugAttr;
public function __construct($entity = \App\Post::class, $slugAttr = 'slug')