Giter Site home page Giter Site logo

davismz09 / itb-desarrollo-software Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 10.56 MB

Tareas o actividades realizadas para los cursos del Instituto Superior Universitario Bolivariano (ITB) para la carrera de Desarrollo de Software.

HTML 10.40% CSS 11.03% PHP 48.82% Hack 0.87% JavaScript 0.08% Kotlin 28.79%
bifurcation bootstrap css php programacion-web itb bucles html-css-javascript javascript kotlin

itb-desarrollo-software's Introduction

Repositorio de asignaturas de la carrera de Desarrollo de Software 5to semestre

Este repositorio contiene proyectos realizados en el marco de los cursos tomados en el Instituto Superior Universitario Bolivariano de la carrera de Desarrollo de Software.

Descripción de Carpetas

  • ACTIVDADES EN CLASE: Contiene proyectos correspondientes a las actividades realizadas en clase.
  • CUESTIONARIOS: Contiene 5 cuestionarios correspondientes a los temas de las tareas realizadas.
  • TAREA VIRTUAL 1-7: Contiene proyectos correspondientes a las tareas virtuales asignadas.
  • EJERCICIOS: Contiene proyectos correspondientes a ejercicios asignados como práctica del curso.
.
├── aplicaciones-moviles
│   └── actividades-en-clase
│       └── appsMovilesdse08
│           └── app
│               └── src
│                   └── main
│                       ├── java
│                       │   └── com
│                       │       └── example
│                       │           └── appsmovilesdse08
│                       │               ├── appSaludo
│                       │               │   ├── MensajeActivity.kt
│                       │               │   └── SaludoActivity.kt
│                       │               ├── imc
│                       │               │   ├── ImcActivity.kt
│                       │               │   └── ResultadoImcActivity.kt
│                       │               └── MenuActivity.kt
│                       └── res
│                           ├── drawable
│                           │   ├── bp_icon.jpg
│                           │   ├── circle_button_background.xml
│                           │   ├── female.xml
│                           │   ├── ic_launcher_background.xml
│                           │   ├── ic_plus.xml
│                           │   ├── ic_substract.xml
│                           │   ├── male.xml
│                           │   └── rounded_button_bg.xml
│                           ├── layout
│                           │   ├── activity_imc.xml
│                           │   ├── activity_mensaje.xml
│                           │   ├── activity_menu.xml
│                           │   ├── activity_resultado_imc.xml
│                           │   └── activity_saludo.xml
│                           └── values
│                               ├── colors.xml
│                               ├── rounded_backgroun.xml
│                               ├── strings.xml
│                               └── themes.xml
├── aplicaciones-realizadas
│   ├── appsMovilesdse08
│   │   └── app
│   │       └── src
│   │           └── main
│   │               ├── AndroidManifest.xml
│   │               ├── java
│   │               │   └── com
│   │               │       └── example
│   │               │           └── appsmovilesdse08
│   │               │               ├── appSaludo
│   │               │               │   ├── MensajeActivity.kt
│   │               │               │   └── SaludoActivity.kt
│   │               │               ├── imc
│   │               │               │   ├── ImcActivity.kt
│   │               │               │   └── ResultadoImcActivity.kt
│   │               │               └── MenuActivity.kt
│   │               └── res
│   │                   ├── drawable
│   │                   │   ├── bp_icon.jpg
│   │                   │   ├── circle_button_background.xml
│   │                   │   ├── female.xml
│   │                   │   ├── ic_launcher_background.xml
│   │                   │   ├── ic_plus.xml
│   │                   │   ├── ic_substract.xml
│   │                   │   ├── male.xml
│   │                   │   └── rounded_button_bg.xml
│   │                   ├── layout
│   │                   │   ├── activity_imc.xml
│   │                   │   ├── activity_mensaje.xml
│   │                   │   ├── activity_menu.xml
│   │                   │   ├── activity_resultado_imc.xml
│   │                   │   └── activity_saludo.xml
│   │                   └── values
│   │                       ├── colors.xml
│   │                       ├── rounded_backgroun.xml
│   │                       ├── strings.xml
│   │                       └── themes.xml
│   └── RickAndMortyApi
│       └── app
│           └── src
│               └── main
│                   ├── AndroidManifest.xml
│                   ├── java
│                   │   └── com
│                   │       └── example
│                   │           └── rickandmortyapi
│                   │               ├── api
│                   │               │   ├── ApiServices.kt
│                   │               │   ├── PersonajeResponse.kt
│                   │               │   └── PersonajesResponse.kt
│                   │               ├── MenuActivity.kt
│                   │               └── rickmorty
│                   │                   ├── PersonajeAdapter.kt
│                   │                   ├── PersonajeViewHolder.kt
│                   │                   └── RickAndMortyActivity.kt
│                   └── res
│                       ├── drawable
│                       │   └── ic_launcher_background.xml
│                       ├── layout
│                       │   ├── activity_menu.xml
│                       │   ├── activity_rick_and_morty.xml
│                       │   └── item_personaje.xml
│                       └── values
│                           ├── arrays.xml
│                           ├── colors.xml
│                           ├── strings.xml
│                           └── themes.xml
├── programacion-web
│   ├── activides-en-clase
│   │   ├── bifurcaciones
│   │   │   ├── README.md
│   │   │   └── src
│   │   │       ├── bifurcacion2.html
│   │   │       ├── bifurcacion.html
│   │   │       ├── index.html
│   │   │       ├── main.php
│   │   │       └── style.css
│   │   ├── ciclo-while
│   │   │   ├── README.md
│   │   │   └── src
│   │   │       └── index.php
│   │   ├── obsequio
│   │   │   ├── README.md
│   │   │   └── src
│   │   │       ├── index.php
│   │   │       └── styles.css
│   │   ├── README.md
│   │   ├── registro-clientes
│   │   │   ├── README.md
│   │   │   └── src
│   │   │       ├── captura.php
│   │   │       ├── encabezado.php
│   │   │       ├── estilo.css
│   │   │       ├── generar-codigo.php
│   │   │       ├── grabar.php
│   │   │       ├── index.php
│   │   │       ├── listado.php
│   │   │       ├── pie.php
│   │   │       └── registro.php
│   │   └── verificacion-de-archivo
│   │       ├── README.md
│   │       └── src
│   │           ├── estilo.css
│   │           ├── index.php
│   │           └── proceso.php
│   ├── cuestionarios
│   │   ├── cuestionario-1.pdf
│   │   ├── cuestionario-2.pdf
│   │   ├── cuestionario-3.pdf
│   │   ├── cuestionario-4.pdf
│   │   └── cuestionario-5.pdf
│   ├── ejercicios
│   │   ├── informacion-de-ejercicios
│   │   │   └── ejercicios-funciones-usuarios.pdf
│   │   ├── README.md
│   │   └── src
│   │       ├── principal
│   │       │   ├── bienvenida.php
│   │       │   ├── captura.php
│   │       │   ├── css
│   │       │   │   └── estilo.css
│   │       │   ├── encabezado-2.php
│   │       │   ├── pie-2.php
│   │       │   ├── principal.php
│   │       │   └── validar.php
│   │       └── soda
│   │           ├── calculos.php
│   │           ├── css
│   │           │   └── estilos.css
│   │           ├── encabezado.php
│   │           ├── pie.php
│   │           └── soda.php
│   └── tareas
│       ├── README.md
│       ├── tarea-virtual-1
│       │   ├── informacion-tarea
│       │   │   └── mite-zambrano-jose-david.pdf
│       │   ├── README.md
│       │   └── src
│       │       └── index.html
│       ├── tarea-virtual-2
│       │   ├── informacion-tarea
│       │   │   └── mite-zambrano-jose-david.pdf
│       │   ├── README.md
│       │   └── src
│       │       └── index.html
│       ├── tarea-virtual-3
│       │   ├── informacion-tarea
│       │   │   └── mite-zambrano-jose-david.pdf
│       │   ├── README.md
│       │   └── src
│       │       ├── img
│       │       │   ├── googlemaps.webp
│       │       │   ├── icono-github.webp
│       │       │   ├── logo-android.webp
│       │       │   ├── logo-apple.webp
│       │       │   ├── logo-java.webp
│       │       │   ├── logo.webp
│       │       │   ├── paisaje1.webp
│       │       │   └── paisaje2.webp
│       │       ├── index.html
│       │       └── styles.css
│       ├── tarea-virtual-4
│       │   ├── informacion-tarea
│       │   │   └── mite-zambrano-jose-david.pdf
│       │   ├── README.md
│       │   └── src
│       │       └── index.php
│       ├── tarea-virtual-5
│       │   ├── informacion-tarea
│       │   │   └── mite-zambrano-jose-david.pdf
│       │   ├── README.md
│       │   └── src
│       │       ├── estilo.css
│       │       └── index.php
│       ├── tarea-virtual-6
│       │   ├── informacion-tarea
│       │   │   ├── bd-biblioteca.sql
│       │   │   └── mite-zambrano-jose-david.pdf
│       │   ├── README.md
│       │   └── src
│       │       ├── actualizar-libro.php
│       │       ├── db-conexion.php
│       │       ├── eliminar-libro.php
│       │       ├── index.php
│       │       ├── js
│       │       │   ├── evitar-reenvio.js
│       │       │   └── jquery-3.6.1.min.js
│       │       ├── listado.php
│       │       ├── modal-obtener-libro.php
│       │       ├── registrar-libro.php
│       │       └── sesion-helper.php
│       └── tarea-virtual-7
│           ├── informacion-tarea
│           │   └── mite-zambrano-jose-david.pdf
│           ├── README.md
│           └── src
│               ├── datos.txt
│               ├── estilo.css
│               ├── index.php
│               └── notas.php
└── README.md

Autor

El contenido de este repositorio fue creado por David Mite Z(davismz09)

itb-desarrollo-software's People

Contributors

davismz09 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.