Skip to content

Instantly share code, notes, and snippets.

View bayareawebpro's full-sized avatar
✔️
Available for Consulting

Dan Alvidrez bayareawebpro

✔️
Available for Consulting
View GitHub Profile

Show Active Modules

iconv -l | grep -E 'CN-?EXT'

Find Config Path:

Older Systems:

find / -name gconv-modules

Common Phrases used by AI language models.

Credit To: u/gamergdotone

  • It's important to note
  • Delve into
  • Tapestry
  • Bustling
  • In summary
  • Remember that…
<?php declare(strict_types=1);
namespace App\Tenant;
use App\Models\User;
use Illuminate\Config\Repository;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Database\Eloquent\Model;
use \Illuminate\Database\DatabaseManager;
<?php declare(strict_types=1);
namespace App\Services;
use Illuminate\Http\Request;
use Illuminate\Validation\Rule;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\App;
use Illuminate\Database\Eloquent\Builder;
<?php
use Illuminate\Support\Collection;
/**
* @method self registerCustomer(Closure $query, Closure $filter)
* @method self registerAccounts(Closure $query, Closure $filter)
*/
class Manager
{
// Allowed virtual methods.
private array $methods = [
return Resource::fromQuery(Page::query())
  ->additional($this->compileActions('pages'))
  ->resource(PagesResource::class)
  ->sortable([
      'id',
      'slug',
      'title',
      'parent_id',
      'created_at',
@bayareawebpro
bayareawebpro / laravel-bitbucket-pipelines.yml
Last active January 4, 2022 05:07
Bitbucket Pipelines for Laravel
# This is a sample build configuration for PHP.
# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples.
# Only use spaces to indent your .yml configuration.
# You can specify a custom docker image from Docker Hub as your build environment.
# run composer check-platform-reqs for a list of required extensions.
image: php:7.2-fpm
pipelines:
default:
# Not needed unless you're doing feature tests.
# - step:
/**
* Plugin Menu & Defaults
*/
var PluginParameters = [
{
type:"menu",
name:"Channel",
defaultValue:1,
numberOfSteps:16,
valueStrings: [

Boss Pedals - Configuration Notes

Map ES-5 Bank to DD-500 Phrase Sampler

This configuration will allow you to bank-select switch #1 which toggles the phrase recorder and provides mappings that control the DD-500's phrase recorder in a "fumble-free" way with one switch for each function while the rest of your gear can be switched on or off by banking to other patches once a loop has been recorded. Banking back to switch #1 will exit the recorder.

Note: The DD-500 will ignore some CC midi messages while the phrase recorder is displayed and for a

<?php declare(strict_types=1);
namespace App\Repositories;
use Illuminate\Contracts\Config\Repository as Config;
use Illuminate\Contracts\Cache\Repository as Cache;
use Illuminate\Contracts\Pagination\Paginator;
use Illuminate\Database\Eloquent\Collection as EloquentCollection;
use Illuminate\Database\Eloquent\Builder;