SSH into your EC2 instance. Run the following:
$ sudo yum install gcc This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
| View: Pods(<namespace>)[number of pods listed] | |
| NAME pod name | |
| READY number of pods in ready state / number of pods to be in ready state | |
| RESTARTS number of times the pod has been restarted so far | |
| STATUS state of the pod life cycle, such as Running | ... | Completed | |
| CPU current CPU usage, unit is milli-vCPU | |
| MEM current main memory usage, unit is MiB | |
| %CPU/R current CPU usage as a percentage of what has been requested by the pod | |
| %MEM/R current main memory usage as a percentage of what has been requested by the pod |
| <F3> | |
| <RC10,10>Serial Number = <VA1> | |
| <RC60,10>Firmware = <VA7> | |
| <RC110,10>Special Head = <VA18> | |
| <RC160,10>Font File = <VA2> | |
| <RC210,10>Printer Type = <VA11> | |
| <RC260,10>DPI = <VA17> | |
| <RC310,10>Expansion Mem = <VA50> | |
| <RC360,10>Path Type = <VA19> | |
| <RC410,10>Ticket Type = <VA13> |
| # Autogenerated .env file | |
| HOST_DOMAIN=web.web-templates.io | |
| LETSENCRYPT_EMAIL=you@example.com | |
| APP_NAME=web | |
| IMAGE_REPO=netcoretemplates/web | |
| RELEASE_VERSION=latest |
| version: "3.9" | |
| services: | |
| nginx-proxy: | |
| image: nginxproxy/nginx-proxy | |
| container_name: nginx-proxy | |
| restart: always | |
| ports: | |
| - "80:80" | |
| - "443:443" |
| version: "3.9" | |
| services: | |
| app: | |
| image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
| restart: always | |
| ports: !reset ["80"] | |
| container_name: ${IMAGE_REPO}-app | |
| environment: | |
| VIRTUAL_HOST: ${HOST_DOMAIN} | |
| LETSENCRYPT_HOST: ${HOST_DOMAIN} |
| version: "3.9" | |
| services: | |
| nginx-proxy: | |
| image: nginxproxy/nginx-proxy | |
| container_name: nginx-proxy | |
| restart: always | |
| ports: | |
| - "80:80" | |
| - "443:443" |
SSH into your EC2 instance. Run the following:
$ sudo yum install gcc This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.
I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.
If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.
Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.
| #!/usr/bin/env python | |
| import requests | |
| import json | |
| # main api url | |
| url = 'https://grits.ecohealth.io/gritsdb/api/v1' | |
| # put your username/password here | |
| auth = ('myUsername', 'myPassword') |