Skip to content

Instantly share code, notes, and snippets.

View inuoshios's full-sized avatar
🐉
loompaland

Inu John inuoshios

🐉
loompaland
View GitHub Profile
package main
import (
"bufio"
"fmt"
"os"
"strconv"
"strings"
)
@fworks
fworks / install-zsh-windows-git-bash.md
Last active May 10, 2024 15:46
Zsh / Oh-my-zsh on Windows Git Bash
# ansicolor
Color code for terminal
For example: console.log on javascript
## Features
|Escape sequence|Text attributes|
|---------------|----|
@MWins
MWins / project-ideas01.md
Last active May 15, 2024 05:39
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.

@asukakenji
asukakenji / 0-go-os-arch.md
Last active May 13, 2024 09:32
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 17, 2024 09:31
Semantic Commit Messages

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

@oanhnn
oanhnn / using-multiple-github-accounts-with-ssh-keys.md
Last active May 15, 2024 18:24
Using multiple github accounts with ssh keys

Problem

I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).

Solution

Use ssh keys and define host aliases in ssh config file (each alias for an account).

How to?

  1. Generate ssh key pairs for accounts and add them to GitHub accounts.
@mickelsonm
mickelsonm / main.go
Created November 24, 2014 02:44
Golang program to lookup stocks by symbols using Yahoo Finance API.
package main
import (
"encoding/json"
"encoding/xml"
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
@vratiu
vratiu / .bash_aliases
Last active May 16, 2024 16:29
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset