- Abrimos la terminal y ejecutamos la siguiente linea para actualizar la base de datos de los paquetes
sudo pacman -Syu
- Instalamos el apache y ejecutamos lo siguiente
sudo pacman -S apache
version: '3' | |
services: | |
cakephp-mysql: | |
image: mysql:5.7 | |
container_name: cakephp-mysql | |
working_dir: /application | |
command: mysqld --sql-mode='NO_ENGINE_SUBSTITUTION' --character-set-server=utf8 --init-connect='SET NAMES UTF8;' | |
environment: | |
- MYSQL_USER=my_app | |
- MYSQL_PASSWORD=secret |
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion | |
. /usr/share/git/completion/git-completion.bash | |
. /usr/share/git/completion/git-prompt.sh | |
export GIT_PS1_SHOWDIRTYSTATE=1 | |
# colors! | |
red="\e[1;31m" | |
green="\e[1;32m" | |
yellow="\e[1;33m" | |
blue="\e[1;34m" |
Código | Nombre | |
---|---|---|
0102 | BANCO DE VENEZUELA | |
0156 | 100% BANCO | |
0172 | BANCAMIGA BANCO MICROFINANCIERO C A | |
0114 | BANCARIBE | |
0171 | BANCO ACTIVO | |
0166 | BANCO AGRICOLA DE VENEZUELA | |
0175 | BANCO BICENTENARIO DEL PUEBLO | |
0128 | BANCO CARONI | |
0163 | BANCO DEL TESORO |
version: "3.1" | |
services: | |
php-fpm: | |
image: webdevops/php-nginx:7.4 | |
container_name: myapp-webserver | |
working_dir: /app | |
volumes: | |
- ./:/app | |
environment: | |
- WEB_DOCUMENT_ROOT=/app/webroot |
{ | |
"emojis": [ | |
{"emoji": "👩👩👧👧", "name": "family: woman, woman, girl, girl", "shortname": ":woman_woman_girl_girl:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F467", "html": "👩‍👩‍👧‍👧", "category": "People & Body (family)", "order": ""}, | |
{"emoji": "👩👩👧👦", "name": "family: woman, woman, girl, boy", "shortname": ":woman_woman_girl_boy:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F466", "html": "👩‍👩‍👧‍👦", "category": "People & Body (family)", "order": ""}, | |
{"emoji": "👩👩👦👦", "name": "family: woman, woman, boy, boy", "shortname": ":woman_woman_boy_boy:", "unicode": "1F469 200D 1F469 200D 1F466 200D 1F466", "html": "👩‍👩‍👦‍👦", "category": "People & Body (family)", "order": ""}, | |
{"emoji": "👨👩👧👧", "name": "family: man, woman, girl, girl", "shortname": ":man_woman_girl_girl:", "unicode": "1F468 200D 1F469 200D 1F467 200D 1F467", "html": "👨‍👩&z |
FROM php:fpm | |
MAINTAINER CakeHub <[email protected]> | |
RUN requirements="libmcrypt-dev g++ libicu-dev libpq-dev libmcrypt4 libicu52 netcat" \ | |
&& apt-get update && apt-get install -y $requirements \ | |
&& docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql \ | |
&& docker-php-ext-install pdo pdo_pgsql \ | |
&& docker-php-ext-install mcrypt \ | |
&& docker-php-ext-install mbstring \ | |
&& docker-php-ext-install intl \ |
You have a repository, call it alice/repo
. You would like to transfer it to the user bob
, so it will become bob/repo
.
However, you make heavy use of the GitHub Pages feature, so that people are often accessing https://alice.github.io/repo/
. GitHub will helpfully redirect all of your repository stuff hosted on github.com after the move, but will not redirect the GitHub Pages hosted on github.io.
<?php | |
ini_set('display_errors', 'On'); | |
error_reporting(E_ALL); | |
// Code... | |
?> |