I hereby claim:
- I am havoc24k on github.
- I am havoc24k (https://keybase.io/havoc24k) on keybase.
- I have a public key ASC6JwfRh04qUNzmeNSSuS-b4KZemtT4V-neNVQIT_sKoQo
To claim this, I am signing this object:
| release { | |
| use "kubernetes" { | |
| // Sets up a load balancer to access released application | |
| load_balancer = false | |
| ports = [ | |
| { "port" = "50051", "target_port" = "50051" } | |
| ] | |
| ingress "http" { | |
| default = false | |
| path = "/" |
| deploy { | |
| use "kubernetes" { | |
| probe_path = "/healthz" | |
| // Required for private container registry | |
| // image_secret = "secretname" | |
| pod { | |
| container { | |
| port { |
| build { | |
| use "pack" {} | |
| registry { | |
| use "docker" { | |
| image = var.REGISTRY_URL | |
| tag = "latest" | |
| // Set to `true` if you don't want the image to be pushed to your container registry | |
| local = false |
| variable "REGISTRY_URL" { | |
| default = "" | |
| type = string | |
| description = "URL for your container registry." | |
| } | |
| variable "GRPS_URL" { | |
| default = "" | |
| type = string | |
| description = "URL for your TLS enabled gRPC service endpoint." |
| // Package main implements a server for Greeter service. | |
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net" | |
| "net/http" |
| """ | |
| Efood ML. | |
| Phase 1: | |
| Collect data from efood comments | |
| Future Phase 2: | |
| Detect patterns on comments. | |
| - Most common names | |
| - Most common times the commnets are added |
| #!/usr/bin/python | |
| """AWS EC2 SSH config Generator.""" | |
| import boto3 | |
| import os | |
| # The location and name of our generated config file | |
| path_to_config = '/.ssh/aws_demo.config' |
| #!/usr/bin/python3.6 | |
| """Sync PostgreSQL.""" | |
| import psycopg2 | |
| import sys | |
| from psycopg2.extras import RealDictCursor, execute_values | |
| """ | |
| Usage: |
I hereby claim:
To claim this, I am signing this object:
| #Download Elementary OS from here: | |
| #http://sourceforge.net/projects/elementaryos/files/stable/ | |
| #First you update your system | |
| sudo apt-get update && sudo apt-get dist-upgrade | |
| #Install Google Chrome | |
| wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' |