Generation of a self-signed SSL certificate involves a simple 3-step procedure:
STEP 1: Create the server private key
openssl genrsa -out cert.key 2048STEP 2: Create the certificate signing request (CSR)
openssl req -new -key cert.key -out cert.csr| WITH billable_subscriptions AS ( | |
| -- Calendar subscriptions | |
| ( | |
| SELECT | |
| subscriptions.id AS subscription_id | |
| FROM | |
| subscriptions | |
| INNER JOIN plans ON plans.id = subscriptions.plan_id | |
| INNER JOIN customers ON customers.id = subscriptions.customer_id | |
| INNER JOIN organizations ON organizations.id = customers.organization_id | 
| #!/bin/bash | |
| #Generated by JetBrains Toolbox 2.2.3.20090 at 2024-04-10T10:51:26.013119 | |
| declare -a intellij_args=() | |
| declare -- wait="" | |
| for o in "$@"; do | |
| if [[ "$o" = "--wait" || "$o" = "-w" ]]; then | |
| wait="-W" | |
| o="--wait" | 
| upstream puma { | |
| server 127.0.0.1:3000; | |
| } | |
| server { | |
| server_name yolo.com; | |
| client_max_body_size 200m; | |
| gzip on; | |
| gzip_comp_level 4; | |
| gzip_min_length 1000; | 
| <?php | |
| namespace App\View\Components\Admin; | |
| use Illuminate\Support\Facades\Cache; | |
| use Illuminate\View\Component; | |
| class GitDetails extends Component | |
| { | |
| const REPO = 'julienbourdeau/julienbourdeau.com'; | 
| <!DOCTYPE html> | |
| <html lang="en" class="no-js"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Unique page title - My Site</title> | |
| <script type="module"> | |
| document.documentElement.classList.remove('no-js'); | 
| laravel new secret-project | |
| composer require laravel/jetstream | |
| php artisan jetstream:install livewire --teams | |
| composer require barryvdh/laravel-debugbar --dev | 
| #!/usr/local/bin/bash | |
| # function e_header() { printf "\n${yellow}========== %s ==========${reset}\n" "$@" } | |
| # function e_arrow() { printf "➜ $@\n" } | |
| # TODO: Check if current branch is `master` | |
| e_header "Rebuilding assets" | |
| echo | 
| <?php | |
| namespace App\Console\Commands\Dev; | |
| use App\User; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\DB; | |
| use Illuminate\Support\Facades\Hash; | |
| class CreateAdminUserCommand extends Command | 
See: https://www.rubyguides.com/2018/10/delegate-methods-in-ruby/
module Algolia
  module Search
    # Class Index
    class Index
      include CallType
      extend Forwardable # available in ruby 2.2