- http://www.pluralsight.com/courses/meteorjs-web-application
- https://scotch.io/tutorials/learn-meteor-js-from-scratch-build-a-polling-app
- https://scotch.io/courses/building-a-slack-clone-in-meteor-js
- http://angular-meteor.com/tutorials/angular2/bootstrapping
- https://medium.com/@SamCorcos/building-campaignhawk-spacial-analysis-overview-part-16-f10bbf03a862
- https://www.udemy.com/learn-meteorjs-by-building-10-real-world-projects/
- http://react-in-meteor.readthedocs.org/en/latest/tutorial/
- https://github.com/ahmedshuhel/aurelia-meteor/
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
########################################################### | |
# Automation of Everything # | |
# How To Combine Argo Events, Workflows, CD, and Rollouts # | |
# https://youtu.be/XNXJtxkUKeY # | |
########################################################### | |
# Requirements: | |
# - k8s v1.19+ cluster with nginx Ingress | |
# Replace `[...]` with the GitHub organization or the username |
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
application { | |
config { | |
baseName store | |
applicationType gateway | |
packageName com.sat.projectx.store | |
serviceDiscoveryType no | |
authenticationType jwt | |
prodDatabaseType mysql | |
cacheProvider hazelcast |
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
CREATE OR REPLACE FUNCTION url_slug ( | |
s_texto text | |
) | |
RETURNS varchar AS | |
$body$ | |
DECLARE | |
total integer; | |
BEGIN | |
s_texto := regexp_replace(translate(replace(lower(s_texto), ' ', '-'), | |
'áàâãäåāăąÁÂÃÄÅĀĂĄèééêëēĕėęěĒĔĖÉĘĚìíîïìĩīĭÌÍÎÏÌĨĪĬóôõöōŏőÒÓÔÕÖŌŎŐùúûüũūŭůÙÚÛÜŨŪŬŮçÇÿ&,.ñÑ', |
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
# Ansible RDS Multi-AZ Postgres | |
# | |
# Assumes existing Security Group, VPC, and RDS Subnet Groups. | |
# | |
# To install Ansible on OSX: | |
# sudo easy_install pip | |
# sudo pip install paramiko PyYAML jinja2 (might be prompted to install XCode & re-run) | |
# sudo pip install ansible | |
# sudo pip install boto | |
# sudo mkdir /etc/ansible |