Skip to content

Instantly share code, notes, and snippets.

View sjimenez44's full-sized avatar
📱

Santiago Jiménez sjimenez44

📱
View GitHub Profile
@sjimenez44
sjimenez44 / VMware_Keys.md
Last active July 14, 2023 21:40 — forked from Vichingo455/VMware_Keys.md
VMware Workstation Pro Serial Keys

VMware Workstation Pro Serial Keys

Updated: 2023-07-14

VMware Workstation 14.x.x

AG352-4YED3-0852Q-LPXXT-MGKG4

FC1R0-2EX4M-H854Y-2NWGE-Q2KXA

ZU3EH-0YXD4-4819Q-CFWQZ-MZHX4

@sjimenez44
sjimenez44 / GitCheatsheet.md
Created October 12, 2021 15:23
Git cheatsheet

Git cheatsheet

Table of contents

  1. Git Local
  2. Tags

Git local

If you want to change the remote repositorie of a project

@sjimenez44
sjimenez44 / haproxy.cfg
Created September 20, 2021 16:02 — forked from Philmod/haproxy.cfg
HAProxy configuration for the socket.io chat example, splitted into frontend and websocket servers.
global
log 127.0.0.1 local0
maxconn 8192
user haproxy
group haproxy
defaults
log global
mode http
option httplog
@sjimenez44
sjimenez44 / DockerVolumes.md
Created September 10, 2021 14:50
Docker volumes

Docker volumes

  $ docker volume create --name=<NAME_VOLUME>

Ruta de los volumenes en windows

  • \\wsl$\docker-desktop-data\version-pack-data\community
@sjimenez44
sjimenez44 / TimeZone.md
Created September 8, 2021 19:19
Change time zone Docker container

Change TimeZone in Docker containers

With Docker Engine

The timezone of a container can be set using an environment variable in the docker container when it is created. For example:

$ docker run ubuntu:latest date
Sat Feb 27 15:58:32 UTC 2021
$ docker run -e TZ=America/Bogota ubuntu:latest date
Sat Feb 27 15:58:40 Asia 2021
@sjimenez44
sjimenez44 / AngularCommits.md
Created September 8, 2021 16:41
Angular commit conventions

Angular commit conventions

Commit Message Format

We have very precise rules over how our Git commit messages must be formatted. This format leads to easier to read commit history.

Each commit message consists of a header, a body, and a footer.

@sjimenez44
sjimenez44 / CHANGELOG.md
Created September 8, 2021 16:30
Keep a CHANGELOG

Keep a CHANGELOG.md

  # Changelog
  All notable changes to this project will be documented in this file.

  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

 ## [Unreleased]