- Porter - Kubernetes powered PaaS that runs in your own cloud
- Open Function - cloud-native open-source FaaS (Function as a Service) platform. website
- CapRover - easy to use app/database deployment & web server manager
- Tsuru - Open source and extensible Platform as a Service (PaaS) website
- Kubero - free and self-hosted Heroku PaaS alternative for Kubernetes that implements GitOps
- Dokku - docker-powered PaaS that helps you build and manage the lifecycle of applications
- Piku - tiniest PaaS you've ever seen. Allows you to do git push deployments to your own servers.
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
| <artifacts_info> | |
| The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity. | |
| # Good artifacts are... | |
| - Substantial content (>15 lines) | |
| - Content that the user is likely to modify, iterate on, or take ownership of | |
| - Self-contained, complex content that can be understood on its own, without context from the conversation | |
| - Content intended for eventual use outside the conversation (e.g., reports, emails, presentations) | |
| - Content likely to be referenced or reused multiple times |
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
| # Youtube video: https://youtu.be/dwCe9l_geK4 | |
| import requests | |
| import json | |
| import os | |
| import unicodedata | |
| from bs4 import BeautifulSoup | |
| urls = ['https://www.bigbearcoolcabins.com/big-bear-cabin-rentals/moonridge-cali-bear-cabin/', | |
| 'https://www.bigbearcoolcabins.com/big-bear-cabin-rentals/switzerland', | |
| "https://www.bigbearcoolcabins.com/big-bear-cabin-rentals/pines" |
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
| /* | |
| * Example of related posts repeater for any CPT with taxonomy: | |
| * - Filter query to prevent altering queries inside the repeater items, | |
| * - Retrieve post category slug : I have only one for each post, so I just take first element. | |
| * (You might need to add error tests, of course, if you don't accept empty results, | |
| * for instance if you forgot to set post category.) | |
| * - Set tax_query arg with category slug | |
| * - Set random order | |
| * - Exclude current post | |
| * - Deactivate pagination |