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
# documentation: https://docs.appflowy.io/docs/guides/appflowy-cloud/self-hosting | |
# slogan: Open Source Alternative to Notion - Self-hosted Collaborative Knowledge Base | |
# tags: productivity,notes,knowledge-base,collaboration,document | |
# logo: svgs/appflowy.svg | |
# port: 80 | |
# | |
# Note: This docker-compose.yml file is optimized for deployment with Coolify. | |
# The 'exclude_from_hc' property is a Coolify-specific feature that allows | |
# certain one-time execution services to be excluded from health checks. | |
# This may cause validation warnings with standard docker compose tools. |
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
// terminal command | |
brave-browser --disable-site-isolation-trials --disable-web-security --user-data-dir="~/tmp" | |
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
<pre>{JSON.stringify(data, null, 2)}</pre> | |
// https://stackoverflow.com/questions/30765163/pretty-printing-json-with-react |
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
// Source: https://twitter.com/calebporzio/status/1151876736931549185 | |
<div class="flex"> | |
<aside class="h-screen sticky top-0"> | |
// Fixed Sidebar | |
</aside> | |
<main> | |
// Content | |
</main> |
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 | |
echo -n "Enter Port Number." | |
read port | |
if [[ -n ${port//[0-9]/} ]]; then | |
echo "Invalid Port !!" | |
fi | |
lsof -i tcp:$port |
- Broadway - Infrastructure and testing helpers for creating CQRS and event sourced applications
- EventCentric.Core - Event Sourcing and CQRS in PHP
- LiteCQRS - Small convention based CQRS library for PHP
- predaddy - Common DDD classes including an annotation driven message bus and tools for CQRS and Event Sourcing
- ProophEventSourcing - Provides basic functionality for event-sourced aggregates
- ProophEventStore - PHP 5.4+ EventStore Implementation
- ProophServiceBus - PHP Enterprise Service Bus Implementation supporting CQRS and DDD
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
<?php | |
// ref: http://komunitasweb.com/2009/03/10-practical-php-regular-expression-recipes/ | |
// Validate Email | |
if (filter_var('[email protected]', FILTER_VALIDATE_EMAIL)) { | |
echo "Your email is ok."; | |
} else { | |
echo "Wrong email address format."; | |
} | |
//Validate Username |
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
version: '3' | |
services: | |
traefik: | |
restart: unless-stopped | |
image: traefik:v2.0.2 | |
ports: | |
- "80:80" | |
- "443:443" | |
labels: | |
- "traefik.http.services.traefik.loadbalancer.server.port=8080" |
NewerOlder