Skip to content

Instantly share code, notes, and snippets.

@pcgeek86
pcgeek86 / paas_list.md
Last active March 8, 2025 04:34
Heroku Platform as a Service (PaaS) Alternatives with Docker Container Hosting

Open Source

  • 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.
@neshpat
neshpat / web_scraping.py
Created March 7, 2023 11:56 — forked from thatguynef/web_scraping.py
Part 2: Scraping data with Python BeautifulSoup to ChatGPT API
# 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"
/*** Hide WordPress Dashboard Left Menu Items
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/
function wsv_hide_menu_custom(){
global $current_user;
$username = $current_user->user_login;
if( !in_array ( $username, array('User1','User2')) ){
// To remove Posts menu items
remove_menu_page( 'edit.php' );
}