Docs: https://www.tinybird.co/docs/v2/get-started/install-tinybird/self-managed
- Tinybird account
- Domain name, and ability to update DNS recrods
- 4+ CPUs and 16+ GB virtual machine
- Docker
Sign up to https://cloud.tinybird.co and create your workspace.
Docs: https://www.tinybird.co/docs/v2/get-started/install-tinybird/self-managed
Sign up to https://cloud.tinybird.co and create your workspace.
| <?php | |
| if( function_exists('oxygen_vsb_register_condition') && function_exists('pll_languages_list') ) { | |
| $lang_list = pll_languages_list(); | |
| oxygen_vsb_register_condition( | |
| //Condition Name | |
| 'Locale', | |
This document is an attempt to pin down all the things you don't think about when quoting for a project, and hopefully provide a starting point for some kind of framework to make quoting, working and delivering small-medium jobs more predictable and less stressful.
| /** | |
| * Encryption class for encrypt/decrypt that works between programming languages. | |
| * | |
| * @author Vee Winch. | |
| * @link https://stackoverflow.com/questions/41222162/encrypt-in-php-openssl-and-decrypt-in-javascript-cryptojs Reference. | |
| * @link https://github.com/brix/crypto-js/releases crypto-js.js can be download from here. | |
| */ | |
| class Encryption { |
| #!/bin/bash | |
| # Your system should be 64 bits and check if the last version at https://github.com/danielchatfield/trello-desktop/ is 0.19 | |
| # If the current version is not 0.19 change the file name below accordingly | |
| wget https://github.com/Racle/trello-desktop/releases/download/v0.2.0/Trello-linux-0.2.0.zip -O trello.zip | |
| sudo mkdir /opt/trello | |
| sudo unzip trello.zip -d /opt/trello/ | |
| sudo ln -sf /opt/trello/Trello /usr/bin/trello | |
| echo -e '[Desktop Entry]\n Version=1.0\n Name=Trello Desktop\n Exec=/usr/bin/trello\n Icon=/opt/trello/resources/app/static/Icon.png\n Type=Application\n Categories=Application' | sudo tee /usr/share/applications/trello.desktop |
| <?php | |
| use Aws\Ses\SesClient; | |
| use Illuminate\Mail\Markdown; | |
| // Create SES client | |
| $ses = new SesClient([ | |
| 'credentials' => [ | |
| 'key' => config('services.ses.key'), | |
| 'secret' => config('services.ses.secret'), | |
| ], |
| https://write.corbpie.com/installing-windows-10-pro-iso-with-virtio-on-vultr/ | |
| http://172.245.211.114/Win10Pro.iso |
| /* | |
| * Add our Custom Fields to simple products | |
| */ | |
| function mytheme_woo_add_custom_fields() { | |
| global $woocommerce, $post; | |
| echo '<div class="options_group">'; | |
| // Text Field |
| <?php | |
| declare(strict_types=1); | |
| namespace Example; | |
| // Framework | |
| use Illuminate\Support\Facades\Facade; | |
| /** |