Skip to content

Instantly share code, notes, and snippets.

View arcanoix's full-sized avatar
:octocat:
Developer Code Now Work

Gustavo Herrera arcanoix

:octocat:
Developer Code Now Work
View GitHub Profile
##
## How to install mcrypt in php7.2 / php7.3
## Linux / MacOS / OSX
##
## https://lukasmestan.com/install-mcrypt-extension-in-php7-2/
#
@arcanoix
arcanoix / gitcom.md
Created August 17, 2019 11:10 — 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
@arcanoix
arcanoix / docker-help.md
Created July 28, 2019 01:06 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@arcanoix
arcanoix / docker-raspberry.md
Created July 28, 2019 01:02 — forked from pablokbs/docker-raspberry.md
Docker en raspberry
@arcanoix
arcanoix / docker-compose-wordpress.yaml
Created July 28, 2019 01:00 — forked from pablokbs/docker-compose-wordpress.yaml
Docker-compose para wordpress con mysql
## docker-compose para correr wordpress con una base de datos en mysql
## by PeladoNerd https://youtu.be/eoFxMaeB9H4
version: '3.1'
services:
wordpress:
image: wordpress:php7.1-apache
ports:
@arcanoix
arcanoix / mysql_helpful_commands.md
Created July 26, 2019 03:24 — forked from joseluisq/mysql_helpful_commands.md
Some useful commands and scripts for MySQL.
@arcanoix
arcanoix / superlog
Created June 4, 2019 19:11 — forked from gollum23/superlog
Superlog Curso git platzi
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"
@arcanoix
arcanoix / index.md
Created March 15, 2019 20:58
Creating Login, Register page with Ionic

Create new Ionic project with blank template

ionic start login blank
cd login
ionic g provider authService
ionic g page register
ionic g page login
@arcanoix
arcanoix / gist:f91a61112084db8941358f98b84abb9d
Created October 3, 2018 22:04 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@arcanoix
arcanoix / colaborar.md
Created May 31, 2018 18:37 — forked from 3rn3st0/colaborar.md
Colaborando en un proyecto en Git

Cómo colaborar en un proyecto en GitHub

Más de una vez se te habrán presentado las ganas de corregir algún "error" en algún código que te hayas encontrado en Git. Tal vez sean sólo ganas de demostrar tus conocimientos o simplemente tu deseo de ayudar a otros. Hacerlo es sencillo, para hacerlo, debes seguir los pasos que describo más adelante.

NOTA: Este gist está basado en el trabajo de BCasal.es, el cual pueden leer directamente aquí. 👍

1 Hacer fork al repositorio seleccionado