Skip to content

Instantly share code, notes, and snippets.

View carrilloapps's full-sized avatar
📷
https://instagram.com/carrilloapps

José Carrillo carrilloapps

📷
https://instagram.com/carrilloapps
View GitHub Profile

LABORATORIO: Índice de Masa Corporal (IMC)

INTRODUCCIÓN AL DESARROLLO DE SOFTWARE - 2507B04G3

Corporación Universitaria Remington (Uniremington)

  • Facultad: Ingeniería
  • Programa: Ingeniería de Sistemas (Virtual)
  • Asignatura: Introducción al Desarrollo de Software
  • Código: 2507B04G3

FASES DE RESOLUCIÓN DE PROBLEMAS (25%)

INTRODUCCIÓN AL DESARROLLO DE SOFTWARE - 2507B04G3

Universidad: Facultad: Ingeniería de Sistemas
Materia: Introducción al Desarrollo de Software
Código: 2507B04G3
Título: Elaborar un sistema básico de facturación Porcentaje: 25%

@carrilloapps
carrilloapps / gist:d96a16c5700d6401065bc826b19ff8c2
Created February 17, 2023 15:03 — forked from solenoid/gist:1372386
javascript ObjectId generator
var mongoObjectId = function () {
var timestamp = (new Date().getTime() / 1000 | 0).toString(16);
return timestamp + 'xxxxxxxxxxxxxxxx'.replace(/[x]/g, function() {
return (Math.random() * 16 | 0).toString(16);
}).toLowerCase();
};
@carrilloapps
carrilloapps / firebase-allow-rules.json
Created June 26, 2020 16:57
Permisos de firebase
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
@carrilloapps
carrilloapps / oh-my-fish.md
Created September 16, 2019 00:03 — forked from frfahim/oh-my-fish.md
Install fish shell and oh-my-fish on ubuntu

First install fish shell on your system

sudo apt-get update
sudo apt-get install fish

Or install fish via ppa

sudo apt-add-repository ppa:fish-shell/release-2
sudo apt-get update

sudo apt-get install fish``

@carrilloapps
carrilloapps / media-query.css
Created September 5, 2019 21:01 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
var fecha = new Date(); // Extraer datos
var hora = fecha.getHours(); // Asignar hora
var dia = fecha.getDay(); // Asignar dia
var colorFondo = "#999999"; // Color de fondo para desactivación
/* Funciones */
function verificarFranjas() {
// Franja 1: opera de 12am a 8am (LUN - SAB)
if ((hora >= 0 && hora <= 7) && dia != 0) {
document.getElementsByTagName("label")[18].style.pointerEvents = "auto";
@carrilloapps
carrilloapps / ports.conf
Created September 8, 2018 17:05
Muestra #4-AR
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 80
Listen 8080
<IfModule ssl_module>
Listen 443
</IfModule>
@carrilloapps
carrilloapps / apache2.conf
Created September 8, 2018 17:03
Muestra #3-AR
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.4/ for detailed information about
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific
# hints.
#
#
# Summary of how the Apache 2 configuration works in Debian:
# The Apache 2 web server configuration in Debian is quite different to
# upstream's suggested way to configure the web server. This is because Debian's
@carrilloapps
carrilloapps / default-ssl.conf
Created September 8, 2018 17:02
Muestra #2-AR
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.