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
Quien es tu cliente? | |
Desarrolladores | |
Cual es tu propuesta de valor? | |
Facilitar la comunicación browser-servidor en tiempo real | |
Ofrecer tecnologia para procesar datos en tiempo real y presentarlos al instante al usuario. | |
Cuales son tus fuentes de ingresos? | |
SaaS Software as a Service |
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/local/bin/ruby | |
# encoding: UTF-8 | |
require 'rubygems' | |
gem 'mechanize' | |
gem 'main' | |
gem 'highline' | |
gem 'money' | |
gem 'change_watcher' |
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 | |
# https://pve.proxmox.com/wiki/Package_Repositories | |
# Tested on Proxmox 8.1.3 | |
# https://gist.github.com/ngadmini/7f9df377999cc78c1b58e361d5425ac4 | |
# Disable commercial and ceph | |
sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list | |
sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/ceph.list | |
# Enable community | |
echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list | |
# Update and upgrade |