Skip to content

Instantly share code, notes, and snippets.

View wvoliveira's full-sized avatar

Wellington Oliveira wvoliveira

View GitHub Profile
@wvoliveira
wvoliveira / server.go
Created April 26, 2022 15:30 — forked from miguelmota/server.go
Golang TCP server example
package server
import (
"bufio"
"fmt"
"log"
"net"
)
// Server ...
@wvoliveira
wvoliveira / project-ideas01.md
Created September 28, 2021 02:57 — forked from MWins/project-ideas01.md
Back end Projects - list

Project Ideas

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.

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@wvoliveira
wvoliveira / bip_generator.py
Created November 29, 2019 02:58
F5 BIG-IP: create vips, pools and members sample documents
"""
Create sample documents F5 BIG-IP
To import to elastic search app
Tested: python 3.7.5
"""
import logging
import random
import string