View env.j2
This file contains 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
## LINKACE CONFIGURATION | |
## Basic app configuration | |
# The application name is used internally and may not be changed | |
APP_NAME=LinkAce | |
COMPOSE_PROJECT_NAME={{ docker_compose_project }} | |
# The URL should be set if you notice issues with URLs generated by Laravel, which might be an issue with | |
# nginx configuration or the proxy you use. | |
APP_URL={{ app_url }} | |
# The environment is usually 'production' but may be changed to 'local' for development |
View vars.yml
This file contains 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
--- | |
app_url: "https://linkace.example.com" | |
proxy_port: 8080 | |
site_root: "/var/www/linkace-demo" | |
site_domain: "linkace.example.com" | |
site_ssl_directory: "/" | |
env_source: "env.j2" | |
env_destination: "{{ deploy_helper.new_release_path }}/.env" |
View docker-compose.yml.j2
This file contains 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
--- | |
version: "3" | |
services: | |
db: | |
image: mariadb:10.6 | |
restart: unless-stopped | |
environment: | |
- MARIADB_ROOT_PASSWORD=${DB_PASSWORD} | |
- MARIADB_USER=${DB_USERNAME} |
View playbook.yml
This file contains 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
--- | |
- hosts: linkace | |
vars_files: | |
- vars.yml | |
tasks: | |
- name: Initialize the deploy root | |
deploy_helper: path={{ site_root }} | |
View randomize.php
This file contains 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
<?php | |
// Randomizes the names of all files in the current directory | |
// Use with caution! | |
$files = scandir(__DIR__); | |
$files = array_filter($files, fn($file) => !in_array($file, ['.', '..', 'randomize.php', '.DS_Store'])); | |
echo 'Renaming ' . count($files) . 'files now'; | |
shuffle($files); | |
foreach ($files as $file) { | |
$new = hash('crc32', $file) . time() . '.' . pathinfo($file, PATHINFO_EXTENSION); | |
var_dump("Renaming $file to $new"); |
View php_tip_natsort.php
This file contains 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
<?php | |
// @see https://www.php.net/manual/en/function.natsort.php | |
$numbers = [26, 6, 2, 65]; | |
sort($numbers); | |
// 2, 26, 6, 65 | |
natsort($numbers); | |
// 2, 6, 26, 65 |
View migrateUntil.php
This file contains 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
<?php | |
// Run all database migrations up to a specific migration and stop there. Useful for testing migrations which alter data or mess with your models. | |
function migrateUntil(string $migration): void | |
{ | |
$migrator = app('migrator'); | |
$dbPath = base_path('database/migrations'); | |
$migrations = collect($migrator->getMigrationFiles($dbPath)) | |
->takeUntil($dbPath . '/' . $migration); |
View hackernews-readable.css
This file contains 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
/* reset */ | |
body, td, table, input, textarea, .pagetop, * { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | |
font-weight: 400; | |
-webkit-font-smoothing: antialiased; | |
} | |
body { | |
background: #fafafa; | |
margin: 0; |
View transactional-email-provider-ranking.csv
This file contains 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
Provider | Price per 1000 emails | ||
---|---|---|---|
1. | Amazon SES | $0.10 | |
2. | Sendgrid | $0.374 | |
3. | Sparkpost | $0.40 | |
4. | Mailgun | $0.70 | |
5. | Postmark | $1.00 |
View transactional-email-provider-sparkpost.csv
This file contains 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
Plan: Test | Plan: 50k | ||
---|---|---|---|
Included emails | ? | 50000 | |
Price per month | none | $20 | |
Price per 1000 emails | none | $0.4 | |
Price per 1 email | none | $0.0004 | |
Price per 1000 emails after limit | none | $1.00 | |
Price per 1 email after limit | none | $0.001 | |
Notable restrictions | none | none |
NewerOlder