Skip to content

Instantly share code, notes, and snippets.

View alexlondon07's full-sized avatar
:octocat:
Full-Stack Developer

Alexander Londoño Espejo alexlondon07

:octocat:
Full-Stack Developer
View GitHub Profile
############################################################################################################
################## #############################
################## #############################
This Gist collection contains all localstack related examples
################## #############################
################## #############################
############################################################################################################
@emreozcan3320
emreozcan3320 / MySql-PhpMyAdmin-SpringBoot-Angular-Docker-Compose.yaml
Last active May 30, 2021 19:41
a docker compose file for MySql, PhpMyAdmin, SpringBoot and Angular CRUD web application
version: "3.3"
#Define services
services:
#MySql Database for application
mysql-db:
image: mysql
restart: always
container_name: mysql-db
@pablokbs
pablokbs / docker-compose-wordpress.yaml
Created December 16, 2018 14:40
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:
# Project Title
A nice project with a nice description
---
## Requirements
For development, you will only need Node.js and a node global package, Yarn, installed in your environement.
### Node
@ahmeti
ahmeti / only-number.directive.md
Last active May 7, 2024 14:54
Angular 5 - Only Number Input, Only Number Decimal
@michaelneu
michaelneu / Dockerfile
Last active October 17, 2022 05:37
docker-compose configuration for PHP with NGINX and MySQL, including sendmail, MailDev and phpmyadmin
# see https://github.com/cmaessen/docker-php-sendmail for more information
FROM php:5-fpm
RUN apt-get update && apt-get install -q -y ssmtp mailutils && rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-install mysql mysqli sysvsem
RUN pecl install xdebug-2.5.5 \
&& echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
@alexlondon07
alexlondon07 / Laravel requires the Mcrypt PHP extension
Last active December 1, 2018 01:30
Change default Mac OS X PHP to MAMP's PHP Installation
Change default Mac OS X PHP to MAMP's PHP Installation
Instructions to Change PHP Installation
First, Lets find out what version of PHP we're running (To find out if it's the default version).
To do that, Within the terminal, Fire this command:
which php
@bertocq
bertocq / atajosEclipse.textile
Last active May 5, 2024 00:01
Atajos de teclado para Eclipse

Atajos de teclado para Eclipse (y derivados como ZendStudio)

Para editar un comando: Window → Preferences → General → Keys

Edición

Ctrl+D elimina la línea actual (en la que se encuentra el cursor)
Ctrl+Shift+F formatear código (tabulaciones, saltos de línea,…)