Skip to content

Instantly share code, notes, and snippets.

View LUSUDEV's full-sized avatar
💭
SULBARANDEV

SULBARANDEV LUSUDEV

💭
SULBARANDEV
View GitHub Profile
@LUSUDEV
LUSUDEV / curso-node-js.md
Created April 25, 2024 03:59 — forked from sergiecode/curso-node-js.md
Instalaciones Necesarias y recomendadas para el curso de NODE.JS
@LUSUDEV
LUSUDEV / guiaDjango.md
Created May 29, 2023 13:05 — forked from pandrearro/guiaDjango.md
Una guía completa de Django para principiantes- Parte 1

Una guía completa de Django para principiantes- Parte 1

img1

Introducción

img2

Hoy estoy comenzando una nueva serie de tutoriales sobre los fundamentos de Django. Es una guía completa para comenzar a aprender Django. El material esta dividido en 7 partes. Vamos a explorar todos los conceptos básicos con mucho detalle, desde la instalación, preparación de entorno de desarrollo, modelos, vistas, plantillas, URLS y más temas avanzados como migraciones, pruebas y despliegues. Quería hacer algo diferente. Un tutorial que fuese fácil de seguir, informativo y divertido de leer. Ahí fue cuando surgió esta idea de crear algunas viñetas a los algo del texto para ilustrar algunos conceptos y escenarios. ¡Espero que disfruten la lectura!

@LUSUDEV
LUSUDEV / gist:59f21cd5873e94f117ebf159639b7da5
Created June 11, 2017 07:44
/etc/apache2/sites-enabled/000-default.conf
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
@LUSUDEV
LUSUDEV / install_golang.sh
Created June 1, 2017 11:39 — forked from jniltinho/install_golang.sh
Install Golang on Linux
#!/bin/bash
## Install Golang 1.8 64Bits on Linux (Debian|Ubuntu|OpenSUSE|CentOS)
## http://www.linuxpro.com.br/2015/06/golang-aula-1-instalacao-da-linguagem-no-linux.html
## Run as root (sudo su)
## Thank's @geosoft1 | @gwmoura
GO_URL="https://storage.googleapis.com/golang"
GO_VERSION=${1:-"1.8.1"}
GO_FILE="go$GO_VERSION.linux-amd64.tar.gz"