- OpenWhisk
- AWS / Google / Azure
- Kubernetes
- Helm
- Istio
| Notes for kid's future | |
| You are not welcome | |
| - if you are hardworking | |
| - self-starter | |
| - hustle and goal achiever | |
| - experienced and driven and hungry | |
| - good at your trade | |
| - you do not believe in free-loading | |
| - you don't belong to X,y,Z group |
| # coding: utf-8 | |
| # In[2]: | |
| from base64 import b64encode | |
| import json | |
| <!-- this file is in $USER_HOME/.m2/settings.xml, if its not there, create one --> | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
| <mirrors> | |
| <mirror> | |
| <!--This sends everything else to /public --> | |
| <id>nexus</id> | |
| <mirrorOf>*</mirrorOf> |
| # over Cat 5e with over 10 clients connected | |
| iperf -c 192.168.88.252 | |
| ------------------------------------------------------------ | |
| Client connecting to 192.168.88.252, TCP port 5001 | |
| TCP window size: 85.0 KByte (default) | |
| ------------------------------------------------------------ | |
| [ 3] local 192.168.88.251 port 37608 connected with 192.168.88.252 port 5001 | |
| [ ID] Interval Transfer Bandwidth | |
| [ 3] 0.0-10.0 sec 1.03 GBytes 887 Mbits/sec |
| source 'https://rubygems.org' | |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
| gem 'rails', '4.2.7' | |
| # Use sqlite3 as the database for Active Record | |
| gem 'sqlite3' | |
| # Use SCSS for stylesheets | |
| gem 'sass-rails', '~> 5.0' | |
| # Use Uglifier as compressor for JavaScript assets |
| #From https://gist.github.com/abshkd/92c76ec570d6821dce1ac28c2de8073e | |
| source 'https://rubygems.org' | |
| ruby '2.3.0' | |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
| gem 'rails', '4.2.7' | |
| # Use sqlite3 as the database for Active Record | |
| gem 'sqlite3' |
| # Assuming you are using rbenv | |
| #ensure right ruby version 2.3.0 in my case | |
| rbenv version | |
| mkdir projects | |
| cd projects | |
| #create a Gemfile by hand and then bundle install. use the basic template to start | |
| wget https://gist.githubusercontent.com/abshkd/92c76ec570d6821dce1ac28c2de8073e/raw/3ea01c79d607d2dd1f370971cd5f57b23cb6d436/Gemfile | |
| bundle install | |
| rails new my_project --skip-test-unit |