All Projects → Cobra16319 → 100_Days_Of_Go

Cobra16319 / 100_Days_Of_Go

Licence: Apache-2.0 license
100 days of Go learning

Programming Languages

HCL
1544 projects
go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to 100 Days Of Go

hashicorp-labs
Deploy locally on VM an Hashicorp cluster formed by Vault, Consul and Nomad. Ready for deploying and testing your apps.
Stars: ✭ 32 (+33.33%)
Mutual labels:  vagrant, consul, vault, nomad
vim-hcl
Syntax highlighting for HashiCorp Configuration Language (HCL)
Stars: ✭ 83 (+245.83%)
Mutual labels:  consul, vault, nomad
super-duper-vault-train
🚄▼▼▼▼▼▼
Stars: ✭ 19 (-20.83%)
Mutual labels:  vagrant, consul, vault
Ansible Vault
🔑 Ansible role for Hashicorp Vault
Stars: ✭ 189 (+687.5%)
Mutual labels:  vagrant, consul, vault
Terraform Modules
Reusable Terraform modules
Stars: ✭ 63 (+162.5%)
Mutual labels:  consul, vault, nomad
offensive-infrastructure
Offensive Infrastructure with Modern Technologies
Stars: ✭ 88 (+266.67%)
Mutual labels:  consul, vault, nomad
Hashi Up
bootstrap HashiCorp Consul, Nomad, or Vault over SSH < 1 minute
Stars: ✭ 113 (+370.83%)
Mutual labels:  consul, vault, nomad
nomad-demo
Vagrant based demo setup for running Hashicorp Nomad
Stars: ✭ 88 (+266.67%)
Mutual labels:  vagrant, consul, nomad
nomad-box
Nomad Box - Simple Terraform-powered setup to Azure of clustered Consul, Nomad and Traefik Load Balancer that runs Docker/GoLang/Java workloads. NOTE: Only suitable in dev environments at the moment until I learn more Terraform, Consul, Nomad, Vault :P
Stars: ✭ 18 (-25%)
Mutual labels:  consul, vault, nomad
vault-consul-kubernetes
vault + consul on kubernetes
Stars: ✭ 60 (+150%)
Mutual labels:  consul, vault
nomad-service-alerter
Alerting for Nomad Jobs
Stars: ✭ 37 (+54.17%)
Mutual labels:  consul, nomad
hubble
hubbling the universe nebula by nebula
Stars: ✭ 18 (-25%)
Mutual labels:  consul, vault
fangpenlin-avataaars-generator-angular
Angular implementation of @fangpenlin's avataaars-generator
Stars: ✭ 20 (-16.67%)
Mutual labels:  community, github-actions
NextCommunity.github.io
Join FREE: Community of open-source programmers and software engineers.
Stars: ✭ 29 (+20.83%)
Mutual labels:  community, github-actions
local-hashicorp-stack
Local Hashicorp Stack for DevOps Development without Hypervisor or Cloud
Stars: ✭ 23 (-4.17%)
Mutual labels:  consul, nomad
vagrant-vault-consul-docker-monitoring
No description or website provided.
Stars: ✭ 20 (-16.67%)
Mutual labels:  consul, vault
My Cheat Sheets
A place to keep all my cheat sheets for the complete development of ASIC/FPGA hardware or a software app/service.
Stars: ✭ 94 (+291.67%)
Mutual labels:  vagrant, consul
hookpick
A tool to manage some operational concepts of Hashicorp Vault
Stars: ✭ 83 (+245.83%)
Mutual labels:  consul, vault
vault-consul-docker
HashiCorp Vault with Consul backend in Docker
Stars: ✭ 20 (-16.67%)
Mutual labels:  consul, vault
vault-consul-monitoring
Sample project to explore monitoring Vault and Consul with telegraf/influxdb/grafana
Stars: ✭ 52 (+116.67%)
Mutual labels:  consul, vault

Go Cobra's_Greeting Run golangci-lint Mark stale issues and pull requests .github/workflows/coverage.yaml Example workflow for Golang using Snyk Terraform

100 Days of GO

Sharing my journey to improve my Go skills with 100 day focus. I hope you will learn, teach or contribute as we grow in the community together!

Day 1 (21 July)

This should take you 60 min, and you can expect to learn how to setup a Go development enviornment and basic Git Hub Actions.

Exercise 1: Install GO and your choice of Integrated Development Enviornment (IDE)

Time: 15 minutes

After you install both here is a screen shot of what it should look like after you run go version

CAFCFC15-0905-4511-80E6-89EE90DBE5CE

To follow along follow these steps

Time: 10 minutes

Clone the existing repositiory to have the hello world go application, and the yml files needed for the github action.

git clone https://github.com/Cobra16319/100_Days_Of_Go.git

Use git tags to iterate with the CI system and track any changes updating the yml file logically as needed.

git tag v1

git push --tags

Day 2 of 100

The focus today is learning Goroutines, how to write files, fetching data from an api, wait group and channels. Take some time and look at the code and anaylis what is going on. I am cobra16319 on the Go Discord as well.

This project will use the offical NHL Hockey Data API.

I struggled to resolve an issue today with the "≠" versus the "!=" comparision operator. I fixed the issue by resolving the below listed errors and learned something new about Go. Links below:

Here is a photo of the converter that you should convert all of the data from the teams api from JSON to Go in:

22739310-8390-4E8B-94E7-412E7871521C_1_105_c

To Do for Day 2

  1. Get NHL API working locally with main.go
  2. Figure out how to lint in go with Git Hub Actions
  3. Select an Open Source security provider and integrate with Git Hub Actions

Here were some of the errors I recieved from the Comparison Operators

Sharing my current errors running a local git super lint tool locally which today I plan to write a custom git hub action for. The rest of day 2 will be fixing these errors and completing the second git hub action (Sharing learning experience)

590686C5-17A4-4E0B-8847-86A3B6F0261C_4_5005_c

Acievments of the Day

  1. Installed 2 new workflows.
  2. Was able to get the basic application to run.
  3. Updated Documentation.
  4. Accepted first pull request for markup in the read.md from a community member.

To Do for Day 3

  1. Setup a way to provision infrastructure as code (IaC) with a budget constrant
  2. Plan a way to recieve the data from the Restful API with something that has a GO SDK
  3. Plan, apply and test the code on local stack.

Photo of a correctly provisioned terraform package (opinionated):

14BC57B1-F764-48D2-B4DB-B1525B8F7FF1_4_5005_c

Local Stack allows you to test Infrastructure of Code (IaC) with no cost.

Acievments of the Day

  1. Provisioned 2 Terraform modules one remote and one local Resources: (AWS S3) (VPC) (API Gateway) (Lambda).
  2. Confirmed functionality of terraform with local stack.
  3. Configured GO Lint test to do a static scan and failed; created the projects first issue and will address on day 4.
  4. Configured Git Hub action to check for stale pull request to be inclusive of others helping.

Day 4

After being able to fetch the API's today the focus was on Goroutines, ensuring the lint test passed and the program was written correctly before moving on to more advanced features.

The first step was to address the projects first issue

I was able to follow the Go Documentation for time and fix the time.Since versus time.Now issue and pass the lint git hub action.

Next I wanted to do some time tests for the API call which hit about 56 K API requests in around 913 Mila-seconds. This is a huge advantage to GO instead of doing one at a time I was able to do them all at once.

Here is an image of what is should look like when you run the program locally. You can try it out with

go run goexample.go

7F8A2DDC-0506-422A-BA2F-1A028D4A9D80

As you can see all four badges are green now. I am going to call it for Day 4 and focus on security on Day 5 before diving into more advanced features.

Day 5

I added Snyk today, best choice yet! Snyk IaC, and Snyk Open Source — uses Snyk’s GitHub actions to integrate Snyk natively with GitHub Security Code Scanning.

The level of detail it provides and the seamless workflow was amazing! Check out a vulnerability I generated to test the Infrastructure as Code portion with Terraform.

543A98A5-28EA-46C7-A04A-2C358313325F_1_105_c

If you want to add Snyk to your workflow here are the steps:

  1. Visit the Snyk free tier site & setup an account
  2. Link it with your Git Hub
  3. Get the access key from the "settings tab"
  4. Select the language from the Snyk documenation
  5. Go to settings in Git Hub and setup a secret (I selected HashiCorp Vault)
  6. Change the .yml to your desired specs
  7. Setup and run your new workflow and select add badge if you desire to show your results

Day 5 Achievments

  1. Enhance security of the project; integrated Snyk
  2. Added documentation for issues and contributers to include the Code of Conduct
  3. Studied the use of Goroutines in the project and in the Go Playground

Day 6

I deployed HCP Consul, and learned the basics of HashiCorp Cloud Platform (HCP) Consul and learned how to manually deploy a cluster and peer the HashiCorp Virtual Network (HVN) with your AWS Virtual Private Cloud (VPC).

Once I understood the basic components and steps required to deploy a Consul cluster, I automated the approach using HashiCorp Terraform.

To learn how to do this check out this link!

I created an issue for the rest of the insfrstructure here is the link to Issue 30:

Architecture and direction for Project

I want to use a 3 tier application with a focus on workflows for continous improvment. I want it to get data and offer the data based on queries from the user.

I found a model below and I am going to use it and adapt it to my use case for this project.

13932F1A-89DF-4EB5-A9E1-18673AC9C5E2_1_105_c

Go Focus of the Day

Today I am trying to learn to write data to the Postgres SQL database I am using for the project. Exploring the best place to learn.

Day 9

Ran into the first Road Block

I had some issues getting Postgres working locally and testing it's security upfront. I was able to solve this by using Nomad.

For now I just commited the nomad job as I am doing local testing for free. Once I can find more time I plan to commit my local test files.

To Do

  1. Update architecture with Nomad soltion
  2. Fix docs for how I was able to provison the test
  3. Start integrating the go module for scans

Day 10

I was able to test and improve the AWS module with HashiStack installed. Working on integration of Go Module found some vulnerabilities trying to resolve.

I am falling in love with Go! I need your help and support to survie the next 93 days

As you can see I do not have much experience with Go yet! My goal is to have Go be at the top of this list by the end of this project.

Day 11

I took a long break, that really was not a break and have been busy and not had time to work on this project... But I am back and ready to learn!

Your Repository's Stats

Profile View Counter

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].