Prepared by: Ibrahim Elsherbini
For: Jason Vanderheyden
Date: February 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| # ============================================ | |
| # Dublyo PaaS — Server Provisioning Script | |
| # Sets up Docker, Traefik v3.6, Portainer CE | |
| # on a fresh Ubuntu 24.04 server | |
| # ============================================ | |
| echo "========================================" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #============================================================================== | |
| # PostgreSQL Multi-Tenant SaaS - Complete Uninstall Script | |
| #============================================================================== | |
| # This script completely removes PostgreSQL, PgBouncer, and all configurations | |
| # WARNING: This will DELETE ALL DATABASES and data! | |
| #============================================================================== | |
| set -e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # PostgreSQL 16 Server Setup for Multi-Tenant SaaS | |
| # DNS Challenge Edition - Compatible with Nginx Proxy Manager | |
| # Complete installation with SSL via Cloudflare DNS, control database, and management utilities | |
| # Run on Ubuntu 24.04 as root | |
| # | |
| set -euo pipefail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # PostgreSQL 16 Server Setup for Multi-Tenant SaaS | |
| # Complete installation with SSL, control database, and management utilities | |
| # Run on Ubuntu 24.04 as root | |
| # | |
| set -euo pipefail | |
| # Colors for output |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ################################################# | |
| # PostgreSQL 16 + TimescaleDB + pgAdmin 4 Setup | |
| # Optimized Self-Hosted Stack with IP Whitelisting | |
| # Version: 2.0.0 - Fixed pgAdmin email validation | |
| ################################################# | |
| set -e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Colors | |
| GREEN='\033[0;32m' | |
| YELLOW='\033[1;33m' | |
| NC='\033[0m' | |
| echo -e "${GREEN}=== Starting Proxmox Installation on Debian 12 ===${NC}" | |
| # Set hostname |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState } from 'react'; | |
| import { Shield, Wind, Paintbrush, Car, ChevronDown, Search, CheckCircle, X, Filter } from 'lucide-react'; | |
| const ProtectionPackages = () => { | |
| const [activeTab, setActiveTab] = useState('all'); | |
| const [searchTerm, setSearchTerm] = useState(''); | |
| const [showFilters, setShowFilters] = useState(false); | |
| const [selectedBrands, setSelectedBrands] = useState([]); | |
| const [language, setLanguage] = useState('dual'); // 'en', 'ar', or 'dual' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /lib/ecommercelixir_web/components/home/featured_categories_component.ex | |
| defmodule EcommercelixirWeb.Components.Home.FeaturedCategoriesComponent do | |
| use EcommercelixirWeb, :html | |
| # Define the featured_categories component | |
| def featured_categories(assigns) do | |
| # Ensure assigns is a map | |
| assigns = if is_list(assigns), do: Map.new(assigns), else: assigns |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Plugin Name: WooCommerce Installation Service Add-on | |
| * Description: Adds installation service option for specific product categories | |
| * Version: 1.1 | |
| */ | |
| if (!defined('ABSPATH')) { | |
| exit; | |
| } |
NewerOlder