Skip to content

Instantly share code, notes, and snippets.

View romelgomez's full-sized avatar
:octocat:
https://www.linkedin.com/in/romelgomez/

Romel Gomez romelgomez

:octocat:
https://www.linkedin.com/in/romelgomez/
View GitHub Profile
@romelgomez
romelgomez / .zshrc
Created February 23, 2020 21:53
My alias
```
alias dev="git checkout dev"
alias master="git checkout master"
alias add="git add ."
alias pull="git pull"
alias push="git push"
alias fe="git fetch"
alias s="git status"
git config --global alias.superlog "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"
git config --global alias.c checkout
// based on Алексей Сердюков's answer at Stackoverflow (https://stackoverflow.com/a/50837219/1143392)
import {
Directive,
Input,
OnDestroy,
OnInit
} from '@angular/core';
import { MediaObserver } from '@angular/flex-layout';
import { MatGridList } from '@angular/material';
@romelgomez
romelgomez / reconfigure_ca-certificates.sh
Created October 24, 2019 17:12
reconfigure ca-certificates
#! /bin/bash
sudo apt-get install gnutls-bin
gnutls-cli -p 443 github.com
# If status certificate is not trusted >>> Status: The certificate is trusted.
sudo dpkg-reconfigure ca-certificates
@romelgomez
romelgomez / git_submodules.md
Created October 11, 2019 14:17 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
@romelgomez
romelgomez / README.md
Created October 11, 2019 14:12 — forked from hofmannsven/README.md
Git Cheatsheet
@romelgomez
romelgomez / docker.md
Created October 10, 2019 20:10 — forked from f3l1x/aliases
Docker - installation, tips, commands, aliases

Docker

Shortcuts

$ curl -fsSL https://raw.github.com/tcnksm/docker-alias/master/zshrc >> ~/.bashrc && source ~/.bashrc
# ------------------------------------
@romelgomez
romelgomez / automation.md
Created October 10, 2019 20:09 — forked from cube-drone/automation.md
Automation For The People

Automation for the People

Long ago, the first time I read "The Pragmatic Programmer", I read some advice that really stuck with me.

"Don't Use Manual Procedures".

This in the chapter on Ubiquitous Automation. To summarize, they want you to automate all the things.

The trouble was that I hadn't much of an idea how to actually go

@romelgomez
romelgomez / gitcom.md
Created October 10, 2019 20:08 — forked from jednano/gitcom.md
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

$ git init
@romelgomez
romelgomez / .bashrc
Created October 10, 2019 18:07
alias
alias dev="git checkout dev"
alias master="git checkout master"
alias pull="git pull"
alias push="git push"
alias fe="git fetch"
git config --global alias.superlog "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(rese$