├── .vscode └── settings.json ├── BD-Descargas └── scriptsBD │ ├── jardineria.sql │ ├── nba.sql │ ├── personal_inserts.sql │ ├── pokemondb.sql │ ├── superheroes.sql │ └── tienda.sql ├── Back-End ├── JDBC │ ├── Ejercicios_Aprendizaje_1 │ │ └── README.md │ ├── Ejercicios_Aprendizaje_Extra_1 │ │ └── README.md │ └── README.md ├── JPA │ └── README.md ├── Java(Spring-Boot) │ └── README.md ├── Java │ ├── Colecciones │ │ ├── Alumnos │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── alumnos │ │ │ │ └── Main.java │ │ │ │ ├── entidad │ │ │ │ └── Alumnos.java │ │ │ │ └── service │ │ │ │ └── AlumnoService.java │ │ ├── README.md │ │ ├── Test │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ └── test │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── Main.java │ │ ├── cine │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── cine │ │ │ │ └── Main.java │ │ │ │ ├── entindades │ │ │ │ └── Pelicula.java │ │ │ │ └── service │ │ │ │ └── ServicePelicula.java │ │ ├── paises │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── com │ │ │ │ └── mycompany │ │ │ │ │ └── paises │ │ │ │ │ └── Main.java │ │ │ │ ├── entidades │ │ │ │ └── Paises.java │ │ │ │ └── service │ │ │ │ └── ServicePaises.java │ │ ├── product │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── entity │ │ │ │ └── Product.java │ │ │ │ ├── prod │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── StoreService.java │ │ ├── razaPerro │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ └── razaperro │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── razaperro │ │ │ │ └── Main.java │ │ └── razaPerroContinuo │ │ │ ├── build.xml │ │ │ ├── build │ │ │ └── classes │ │ │ │ └── razaperrocontinuo │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ ├── private.properties │ │ │ │ └── private.xml │ │ │ ├── project.properties │ │ │ └── project.xml │ │ │ └── src │ │ │ └── razaperrocontinuo │ │ │ └── Main.java │ ├── Excepciones │ │ ├── Excepciones_1 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── Persona.java │ │ │ │ └── excepciones_1 │ │ │ │ └── Main.java │ │ ├── Excepciones_2 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entity │ │ │ │ └── MyClass.java │ │ │ │ └── excepciones_2 │ │ │ │ └── Excepciones_2.java │ │ ├── Excepciones_5 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── excepciones │ │ │ │ └── Main.java │ │ ├── Excepciones_6 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── excepciones_6 │ │ │ │ └── Excepciones_6.java │ │ ├── Excepciones_7 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── excepciones_7 │ │ │ │ └── Main.java │ │ ├── Excepciones_8 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── excepciones_8 │ │ │ │ └── Main.java │ │ ├── Excepciones_9 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── excepciones_9 │ │ │ │ └── Main.java │ │ ├── Excepeciones_3 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── excepeciones_3 │ │ │ │ └── Excepeciones_3.java │ │ ├── Excepeciones_4 │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── excepeciones_4 │ │ │ │ └── Main.java │ │ └── README.md │ ├── GitHub │ │ └── README.md │ ├── Herencia │ │ ├── Alojamiento │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── alojamiento │ │ │ │ │ └── Main.class │ │ │ │ │ └── identity │ │ │ │ │ ├── Alojamiento.class │ │ │ │ │ ├── AlojamientoExtraHotelero.class │ │ │ │ │ ├── Camping.class │ │ │ │ │ ├── Hotel.class │ │ │ │ │ ├── HotelCincoEstrellas.class │ │ │ │ │ ├── HotelCuatroEstrellas.class │ │ │ │ │ └── Residencia.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── alojamiento │ │ │ │ └── Main.java │ │ │ │ └── identity │ │ │ │ ├── Alojamiento.java │ │ │ │ ├── AlojamientoExtraHotelero.java │ │ │ │ ├── Camping.java │ │ │ │ ├── Hotel.java │ │ │ │ ├── HotelCincoEstrellas.java │ │ │ │ ├── HotelCuatroEstrellas.java │ │ │ │ └── Residencia.java │ │ ├── Animal │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── animal │ │ │ │ │ └── Main.class │ │ │ │ │ └── entity │ │ │ │ │ ├── Animal.class │ │ │ │ │ ├── Caballo.class │ │ │ │ │ ├── Gato.class │ │ │ │ │ └── Perro.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── animal │ │ │ │ └── Main.java │ │ │ │ └── entity │ │ │ │ ├── Animal.java │ │ │ │ ├── Caballo.java │ │ │ │ ├── Gato.java │ │ │ │ └── Perro.java │ │ ├── Edificio │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── edificio │ │ │ │ │ └── Main.class │ │ │ │ │ └── entity │ │ │ │ │ ├── Edificio.class │ │ │ │ │ ├── EdificioDeOficinas.class │ │ │ │ │ └── Polideportivo.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── edificio │ │ │ │ └── Main.java │ │ │ │ └── entity │ │ │ │ ├── Edificio.java │ │ │ │ ├── EdificioDeOficinas.java │ │ │ │ └── Polideportivo.java │ │ ├── Electrodomesticos │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── electrodomesticos │ │ │ │ │ └── Main.class │ │ │ │ │ └── entity │ │ │ │ │ ├── Electrodomesticos.class │ │ │ │ │ ├── Lavadora.class │ │ │ │ │ └── Televisor.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── electrodomesticos │ │ │ │ └── Main.java │ │ │ │ └── entity │ │ │ │ ├── Electrodomesticos.java │ │ │ │ ├── Lavadora.java │ │ │ │ └── Televisor.java │ │ ├── Electrodomesticos2.0 │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── electrodomesticos2 │ │ │ │ │ └── Main.class │ │ │ │ │ └── entity │ │ │ │ │ ├── Electrodomesticos.class │ │ │ │ │ ├── Lavadora.class │ │ │ │ │ └── Televisor.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── electrodomesticos2 │ │ │ │ └── Main.java │ │ │ │ └── entity │ │ │ │ ├── Electrodomesticos.java │ │ │ │ ├── Lavadora.java │ │ │ │ └── Televisor.java │ │ ├── Geometria │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── geometria │ │ │ │ └── Main.java │ │ │ │ └── interfaz │ │ │ │ ├── CalculosFormas.java │ │ │ │ ├── Circulo.java │ │ │ │ └── Rectangulo.java │ │ ├── Puerto │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── identity │ │ │ │ │ ├── Alquiler.class │ │ │ │ │ ├── Barco.class │ │ │ │ │ ├── BarcoMotor.class │ │ │ │ │ ├── Velero.class │ │ │ │ │ └── YateDeLujo.class │ │ │ │ │ └── puerto │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── identity │ │ │ │ ├── Alquiler.java │ │ │ │ ├── Barco.java │ │ │ │ ├── BarcoMotor.java │ │ │ │ ├── Velero.java │ │ │ │ └── YateDeLujo.java │ │ │ │ └── puerto │ │ │ │ └── Main.java │ │ ├── README.md │ │ ├── Sistema_Gestion_Facultad │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── entity │ │ │ │ │ ├── Empleado.class │ │ │ │ │ ├── Estudiante.class │ │ │ │ │ ├── Persona.class │ │ │ │ │ ├── PersonalServicio.class │ │ │ │ │ └── Profesor.class │ │ │ │ │ └── sistema_gestion_facultad │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entity │ │ │ │ ├── Empleado.java │ │ │ │ ├── Estudiante.java │ │ │ │ ├── Persona.java │ │ │ │ ├── PersonalServicio.java │ │ │ │ └── Profesor.java │ │ │ │ └── sistema_gestion_facultad │ │ │ │ └── Main.java │ │ ├── manosObra │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── entity │ │ │ │ │ ├── Animal.class │ │ │ │ │ ├── Gato.class │ │ │ │ │ └── Perro.class │ │ │ │ │ └── manosobra │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ └── private.properties │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entity │ │ │ │ ├── Animal.java │ │ │ │ ├── Gato.java │ │ │ │ └── Perro.java │ │ │ │ └── manosobra │ │ │ │ └── Main.java │ │ └── manosObras1 │ │ │ ├── build.xml │ │ │ ├── build │ │ │ └── classes │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ ├── .netbeans_update_resources │ │ │ │ ├── interfaces │ │ │ │ ├── Interfaz.class │ │ │ │ └── Metodos.class │ │ │ │ └── manosobras1 │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ └── private.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ │ └── src │ │ │ ├── interfaces │ │ │ ├── Interfaz.java │ │ │ └── Metodos.java │ │ │ └── manosobras1 │ │ │ └── Main.java │ ├── Integrador_Iron_Man │ │ ├── Iron_Man │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── Armor │ │ │ │ │ ├── Armadura.class │ │ │ │ │ ├── Bota.class │ │ │ │ │ ├── Casco.class │ │ │ │ │ ├── Consola.class │ │ │ │ │ ├── Dispositivo.class │ │ │ │ │ ├── Generador.class │ │ │ │ │ ├── Guante.class │ │ │ │ │ ├── ObjetoX.class │ │ │ │ │ └── Sintetizador.class │ │ │ │ │ ├── enums │ │ │ │ │ └── EstadoDispositivo.class │ │ │ │ │ ├── integrador │ │ │ │ │ └── IntegradorArmadura.class │ │ │ │ │ └── jarvis │ │ │ │ │ └── JARVIS.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── armor │ │ │ │ ├── Armadura.java │ │ │ │ ├── Bota.java │ │ │ │ ├── Casco.java │ │ │ │ ├── Consola.java │ │ │ │ ├── Dispositivo.java │ │ │ │ ├── Generador.java │ │ │ │ ├── Guante.java │ │ │ │ ├── ObjetoX.java │ │ │ │ └── Sintetizador.java │ │ │ │ ├── enums │ │ │ │ └── EstadoDispositivo.java │ │ │ │ ├── integrador │ │ │ │ └── IntegradorArmadura.java │ │ │ │ └── jarvis │ │ │ │ └── JARVIS.java │ │ └── README.md │ ├── Introduccion_a_Java │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── classes │ │ │ │ └── test │ │ │ │ ├── Test.class │ │ │ │ └── ej6.class │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ ├── private.properties │ │ │ │ └── private.xml │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ └── test │ │ │ ├── Ejercicio10.java │ │ │ ├── Ejercicio11.java │ │ │ ├── Ejercicio12.java │ │ │ ├── Ejercicio13.java │ │ │ ├── Ejercicio14.java │ │ │ ├── Ejercicio6.java │ │ │ ├── Ejercicio7.java │ │ │ ├── Ejercicio8.java │ │ │ ├── Ejercicio9.java │ │ │ ├── EjercicioAprendizaje1.java │ │ │ ├── EjercicioAprendizaje10.java │ │ │ ├── EjercicioAprendizaje11.java │ │ │ ├── EjercicioAprendizaje12.java │ │ │ ├── EjercicioAprendizaje13.java │ │ │ ├── EjercicioAprendizaje14.java │ │ │ ├── EjercicioAprendizaje15.java │ │ │ ├── EjercicioAprendizaje16.java │ │ │ ├── EjercicioAprendizaje17.java │ │ │ ├── EjercicioAprendizaje18.java │ │ │ ├── EjercicioAprendizaje19.java │ │ │ ├── EjercicioAprendizaje2.java │ │ │ ├── EjercicioAprendizaje20.java │ │ │ ├── EjercicioAprendizaje21.java │ │ │ ├── EjercicioAprendizaje3.java │ │ │ ├── EjercicioAprendizaje4.java │ │ │ ├── EjercicioAprendizaje5.java │ │ │ ├── EjercicioAprendizaje6.java │ │ │ ├── EjercicioAprendizaje7.java │ │ │ ├── EjercicioAprendizaje8.java │ │ │ ├── EjercicioAprendizaje9.java │ │ │ ├── EjercicioAprendizajeExtra1.java │ │ │ ├── EjercicioAprendizajeExtra10.java │ │ │ ├── EjercicioAprendizajeExtra11.java │ │ │ ├── EjercicioAprendizajeExtra12.java │ │ │ ├── EjercicioAprendizajeExtra13.java │ │ │ ├── EjercicioAprendizajeExtra14.java │ │ │ ├── EjercicioAprendizajeExtra15.java │ │ │ ├── EjercicioAprendizajeExtra16.java │ │ │ ├── EjercicioAprendizajeExtra17.java │ │ │ ├── EjercicioAprendizajeExtra18.java │ │ │ ├── EjercicioAprendizajeExtra19.java │ │ │ ├── EjercicioAprendizajeExtra2.java │ │ │ ├── EjercicioAprendizajeExtra20.java │ │ │ ├── EjercicioAprendizajeExtra21.java │ │ │ ├── EjercicioAprendizajeExtra22.java │ │ │ ├── EjercicioAprendizajeExtra23.java │ │ │ ├── EjercicioAprendizajeExtra24.java │ │ │ ├── EjercicioAprendizajeExtra3.java │ │ │ ├── EjercicioAprendizajeExtra4.java │ │ │ ├── EjercicioAprendizajeExtra5.java │ │ │ ├── EjercicioAprendizajeExtra6.java │ │ │ ├── EjercicioAprendizajeExtra7-2.java │ │ │ ├── EjercicioAprendizajeExtra7.java │ │ │ ├── EjercicioAprendizajeExtra8.java │ │ │ └── EjercicioAprendizajeExtra9.java │ ├── POO │ │ ├── Ahorcado │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── ahorcado │ │ │ │ │ └── Main.class │ │ │ │ │ └── entidades │ │ │ │ │ └── Ahorcado.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── ahorcado │ │ │ │ └── Main.java │ │ │ │ └── entidades │ │ │ │ └── Ahorcado.java │ │ ├── Ahorcado2 │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── ahorcado2 │ │ │ │ │ └── Main.class │ │ │ │ │ └── entidades │ │ │ │ │ └── Ahorcado.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── ahorcado2 │ │ │ │ └── Main.java │ │ │ │ └── entidades │ │ │ │ └── Ahorcado.java │ │ ├── Arreglo │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ └── arreglo │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── arreglo │ │ │ │ └── Main.java │ │ ├── Cadena │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── cadena │ │ │ │ │ └── Main.class │ │ │ │ │ └── entidad │ │ │ │ │ └── Cadena.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── cadena │ │ │ │ └── Main.java │ │ │ │ └── entidad │ │ │ │ └── Cadena.java │ │ ├── Cafetera │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── Entidades │ │ │ │ │ └── Cafetera.class │ │ │ │ │ └── cafetera │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── Entidades │ │ │ │ └── Cafetera.java │ │ │ │ └── cafetera │ │ │ │ └── Main.java │ │ ├── Cancion │ │ │ ├── build.xml │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── cancion │ │ │ │ └── Cancion.java │ │ ├── Cuentabancaria │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── Entidades │ │ │ │ │ └── Cuenta.class │ │ │ │ │ └── cuentabancaria │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── Entidades │ │ │ │ └── Cuenta.java │ │ │ │ ├── cuentabancaria │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── Curso │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── curso │ │ │ │ │ └── Main.class │ │ │ │ │ └── entidad │ │ │ │ │ └── Curso.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── curso │ │ │ │ └── Main.java │ │ │ │ └── entidad │ │ │ │ └── Curso.java │ │ ├── Date │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ └── date │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── date │ │ │ │ └── Main.java │ │ ├── JavaSecrets │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ └── javasecrets │ │ │ │ │ └── JavaSecrets.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ └── javasecrets │ │ │ │ └── JavaSecrets.java │ │ ├── Matematica │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidades │ │ │ │ │ └── Matematica.class │ │ │ │ │ └── matematica │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── Matematica.java │ │ │ │ └── matematica │ │ │ │ └── Main.java │ │ ├── NIF │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidades │ │ │ │ │ └── NIF.class │ │ │ │ │ ├── nif │ │ │ │ │ └── Main.class │ │ │ │ │ └── service │ │ │ │ │ └── Service.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── NIF.java │ │ │ │ ├── nif │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── Persona-2 │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidades │ │ │ │ │ └── Persona.class │ │ │ │ │ └── persona │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── Persona.java │ │ │ │ └── persona │ │ │ │ └── Main.java │ │ ├── Persona │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidades │ │ │ │ │ └── Persona.class │ │ │ │ │ └── persona │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── Persona.java │ │ │ │ └── persona │ │ │ │ └── Main.java │ │ ├── Puntos-2 │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidades │ │ │ │ │ └── Puntos.class │ │ │ │ │ ├── puntos │ │ │ │ │ └── Main.class │ │ │ │ │ └── service │ │ │ │ │ └── Service.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── Puntos.java │ │ │ │ ├── puntos │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── Puntos │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidades │ │ │ │ │ └── Puntos.class │ │ │ │ │ ├── puntos │ │ │ │ │ └── Main.class │ │ │ │ │ └── service │ │ │ │ │ └── Service.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── Puntos.java │ │ │ │ ├── puntos │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── README.md │ │ ├── Raices │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidades │ │ │ │ │ └── Raices.class │ │ │ │ │ ├── raices │ │ │ │ │ └── Main.class │ │ │ │ │ └── serviceRaices │ │ │ │ │ └── ServiceRaices.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidades │ │ │ │ └── Raices.java │ │ │ │ ├── raices │ │ │ │ └── Main.java │ │ │ │ └── serviceRaices │ │ │ │ └── ServiceRaices.java │ │ ├── biblio │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── Entidades │ │ │ │ │ └── Libro.class │ │ │ │ │ ├── biblio │ │ │ │ │ ├── Biblio.class │ │ │ │ │ └── Main.class │ │ │ │ │ └── service │ │ │ │ │ └── Service.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── Entidades │ │ │ │ └── Libro.java │ │ │ │ ├── biblio │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── circunferencia │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ │ ├── .netbeans_update_resources │ │ │ │ │ ├── Entidades │ │ │ │ │ └── Circunferencia.class │ │ │ │ │ ├── circunferencia │ │ │ │ │ └── Main.class │ │ │ │ │ └── service │ │ │ │ │ └── Service.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── Entidades │ │ │ │ └── Circunferencia.java │ │ │ │ ├── circunferencia │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── operacion │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── Entidades │ │ │ │ │ └── Operaciones.class │ │ │ │ │ └── operacion │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── Entidades │ │ │ │ └── Operaciones.java │ │ │ │ ├── operacion │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── rectangulo │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── Entidades │ │ │ │ │ └── Rectangulo.class │ │ │ │ │ └── rectangulo │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── Entidades │ │ │ │ └── Rectangulo.java │ │ │ │ ├── rectangulo │ │ │ │ └── Main.java │ │ │ │ └── service │ │ │ │ └── Service.java │ │ ├── telefono │ │ │ ├── build.xml │ │ │ ├── build │ │ │ │ └── classes │ │ │ │ │ ├── entidad │ │ │ │ │ └── Movil.class │ │ │ │ │ └── telefono │ │ │ │ │ └── Main.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private │ │ │ │ │ ├── private.properties │ │ │ │ │ └── private.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ └── src │ │ │ │ ├── entidad │ │ │ │ └── Movil.java │ │ │ │ └── telefono │ │ │ │ └── Main.java │ │ └── test │ │ │ ├── build.xml │ │ │ ├── build │ │ │ └── classes │ │ │ │ ├── Entidades │ │ │ │ └── Persona.class │ │ │ │ └── ManosObra │ │ │ │ └── Test.class │ │ │ ├── manifest.mf │ │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ ├── private.properties │ │ │ │ └── private.xml │ │ │ ├── project.properties │ │ │ └── project.xml │ │ │ └── src │ │ │ ├── Entidades │ │ │ └── Persona.java │ │ │ └── ManosObra │ │ │ └── Test.java │ ├── README.md │ └── Relaciones │ │ ├── La_Tercera_Seguros │ │ ├── build.xml │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ ├── private.properties │ │ │ │ └── private.xml │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── identity │ │ │ ├── Cliente.java │ │ │ ├── Cuota.java │ │ │ ├── Poliza.java │ │ │ └── Vehiculo.java │ │ │ └── la_tercera_seguros │ │ │ └── Main.java │ │ ├── README.md │ │ ├── adoptarPerro │ │ ├── build.xml │ │ ├── build │ │ │ └── classes │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ ├── .netbeans_update_resources │ │ │ │ ├── adoptarperro │ │ │ │ └── Main.class │ │ │ │ └── entity │ │ │ │ ├── Perro.class │ │ │ │ └── Person.class │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ ├── private.properties │ │ │ │ └── private.xml │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── adoptarperro │ │ │ └── Main.java │ │ │ └── entity │ │ │ ├── Perro.java │ │ │ └── Person.java │ │ ├── cine │ │ ├── build.xml │ │ ├── build │ │ │ └── classes │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ ├── .netbeans_update_resources │ │ │ │ ├── cine │ │ │ │ └── Main.class │ │ │ │ └── identity │ │ │ │ ├── Cine.class │ │ │ │ ├── Espectador.class │ │ │ │ └── Pelicula.class │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ └── private.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── cine │ │ │ └── Main.java │ │ │ └── identity │ │ │ ├── Cine.java │ │ │ ├── Espectador.java │ │ │ └── Pelicula.java │ │ ├── ejemploEquipo │ │ ├── build.xml │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ └── private.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── ejemploequipo │ │ │ └── main.java │ │ │ └── entity │ │ │ ├── Equipo.java │ │ │ └── Jugador.java │ │ ├── ejemploPersona │ │ ├── build.xml │ │ ├── build │ │ │ └── classes │ │ │ │ ├── .netbeans_automatic_build │ │ │ │ ├── .netbeans_update_resources │ │ │ │ ├── ejemplopersona │ │ │ │ └── Main.class │ │ │ │ └── entity │ │ │ │ ├── Dni.class │ │ │ │ └── Persona.class │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ └── private.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── ejemplopersona │ │ │ └── Main.java │ │ │ └── entity │ │ │ ├── Dni.java │ │ │ └── Persona.java │ │ ├── juegoRuletaRusa │ │ ├── build.xml │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ └── private.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── entity │ │ │ ├── Juego.java │ │ │ ├── Jugador.java │ │ │ └── Revolver_de_agua.java │ │ │ └── juegoruletarusa │ │ │ └── Main.java │ │ ├── laBaraja │ │ ├── build.xml │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── private │ │ │ │ ├── private.properties │ │ │ │ └── private.xml │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── Service │ │ │ └── Menu.java │ │ │ ├── entity │ │ │ ├── Baraja.java │ │ │ └── Carta.java │ │ │ └── labaraja │ │ │ └── Main.java │ │ └── simulador_Egg │ │ ├── build.xml │ │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ ├── entity │ │ │ ├── Alumno.class │ │ │ ├── Simulador.class │ │ │ └── Voto.class │ │ │ └── simulador_egg │ │ │ └── Main.class │ │ ├── manifest.mf │ │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ │ └── src │ │ ├── entity │ │ ├── Alumno.java │ │ ├── Simulador.java │ │ └── Voto.java │ │ └── simulador_egg │ │ └── Main.java ├── README.md └── SQL │ ├── Candados │ └── README.md │ ├── Ejercicios_Aprendizaje_1 │ └── README.md │ ├── Ejercicios_Aprendizaje_2 │ └── README.md │ ├── Ejercicios_Aprendizaje_Extra_1 │ └── README.md │ ├── Ejercicios_Aprendizaje_Extra_2 │ └── README.md │ ├── Ejercicios_Aprendizaje_Extra_3 │ └── README.md │ ├── Manos_Obra_1 │ └── README.md │ ├── Manos_Obra_2 │ └── README.md │ ├── Manos_Obra_3 │ └── README.md │ ├── Manos_Obra_4 │ └── README.md │ ├── Manos_Obra_5 │ └── README.md │ ├── Manos_Obra_6 │ └── README.md │ ├── Manos_Obra_7 │ └── README.md │ └── README.md ├── Final └── README.md ├── Front-End ├── HTMLyCSSyBOOTSTRAP │ ├── Ejercicios_Aprendizaje_1 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_10 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_11 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_12 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_13 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_2 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_3 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_4 │ │ ├── Readme.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_5 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_6 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_7 │ │ ├── README.md │ │ ├── index.html │ │ └── styles.css │ ├── Ejercicios_Aprendizaje_8 │ │ └── README.md │ ├── Ejercicios_Aprendizaje_9 │ │ ├── README.md │ │ ├── index.html │ │ └── styles.css │ ├── Ejercicios_Aprendizaje_Extra_1 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_Extra_2 │ │ ├── README.md │ │ ├── index.html │ │ └── styles.css │ ├── Ejercicios_Aprendizaje_Extra_3 │ │ ├── README.md │ │ ├── index.html │ │ ├── pagina_formulario.html │ │ └── pagina_tabla.html │ ├── Ejercicios_Aprendizaje_Extra_4 │ │ ├── README.md │ │ └── index.html │ ├── Ejercicios_Aprendizaje_Extra_5 │ │ ├── README.md │ │ ├── detalle_producto.html │ │ ├── index.html │ │ └── pagina_tabla.html │ ├── Ejercicios_Aprendizaje_Extra_6 │ │ ├── README.md │ │ └── index.html │ ├── Manos_Obra_1 │ │ ├── Readme.md │ │ └── ejercicio1.html │ ├── Manos_Obra_2 │ │ ├── README.md │ │ └── ejercicio1.html │ ├── Manos_Obra_3 │ │ ├── README.md │ │ └── ejercicio1.html │ ├── Manos_Obra_4 │ │ ├── README.md │ │ └── ejercicio1.html │ ├── Manos_Obra_5 │ │ ├── README.md │ │ ├── ejercicio1.html │ │ └── estilos.css │ └── README.md ├── Javascript │ ├── Ejercicios_Aprendizaje_1 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_10 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_11 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_12 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_13 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_14 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_15 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_16 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_17 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_18 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_19 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_2 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_20 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.html │ │ └── styles.css │ ├── Ejercicios_Aprendizaje_21 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_22 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_23 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_24 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_25 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_3 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_4 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_5 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_6 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_7 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_8 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ ├── Ejercicios_Aprendizaje_9 │ │ ├── README.md │ │ ├── app.js │ │ └── index.html │ └── README.md ├── README.md └── React │ ├── Ejercicios_Aprendizaje_1 │ └── README.md │ └── README.md ├── Guia ├── Anexo_CSS.pdf ├── Colecciones.pdf ├── Git_con_GitHub.pdf ├── Guia_Html_&_Css.pdf ├── Guia_JPA.pdf ├── Guia_React.pdf ├── Guia_de_JavaScript.pdf ├── Herencia.pdf ├── Instructivo_Conexion_Netbeans_MySQL.pdf ├── Instructivo_JDBC.pdf ├── Instructivo_Unidad_PersitenciaJPA.pdf ├── Integrador-Mysql.pdf ├── JDBC.pdf ├── Java_Intro.pdf ├── Manejo_Excepciones.pdf ├── MySQL.pdf ├── POO.pdf ├── Relaciones_Entre_Clases.pdf └── pseint.pdf ├── README.md └── img ├── capimagen-for.png ├── comandos.png ├── comparator.png ├── controller.png ├── http.png ├── identificadores.png ├── password.png ├── repository.png ├── select-where-like.png ├── try.png └── version.png /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "java.debug.settings.onBuildFailureProceed": true 3 | } -------------------------------------------------------------------------------- /BD-Descargas/scriptsBD/jardineria.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/BD-Descargas/scriptsBD/jardineria.sql -------------------------------------------------------------------------------- /BD-Descargas/scriptsBD/nba.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/BD-Descargas/scriptsBD/nba.sql -------------------------------------------------------------------------------- /BD-Descargas/scriptsBD/personal_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/BD-Descargas/scriptsBD/personal_inserts.sql -------------------------------------------------------------------------------- /BD-Descargas/scriptsBD/pokemondb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/BD-Descargas/scriptsBD/pokemondb.sql -------------------------------------------------------------------------------- /BD-Descargas/scriptsBD/superheroes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/BD-Descargas/scriptsBD/superheroes.sql -------------------------------------------------------------------------------- /BD-Descargas/scriptsBD/tienda.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/BD-Descargas/scriptsBD/tienda.sql -------------------------------------------------------------------------------- /Back-End/JDBC/Ejercicios_Aprendizaje_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/JDBC/Ejercicios_Aprendizaje_1/README.md -------------------------------------------------------------------------------- /Back-End/JDBC/Ejercicios_Aprendizaje_Extra_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/JDBC/Ejercicios_Aprendizaje_Extra_1/README.md -------------------------------------------------------------------------------- /Back-End/JDBC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/JDBC/README.md -------------------------------------------------------------------------------- /Back-End/JPA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/JPA/README.md -------------------------------------------------------------------------------- /Back-End/Java(Spring-Boot)/README.md: -------------------------------------------------------------------------------- 1 | # //Guia Obsoleta!!! 2 | -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/src/alumnos/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/src/alumnos/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/src/entidad/Alumnos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/src/entidad/Alumnos.java -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Alumnos/src/service/AlumnoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Alumnos/src/service/AlumnoService.java -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/README.md -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/build/classes/test/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/build/classes/test/Main.class -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/Test/src/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/Test/src/test/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/cine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/cine/pom.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/cine/src/main/java/cine/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/cine/src/main/java/cine/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/paises/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/paises/pom.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/product/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/product/pom.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/product/src/main/java/prod/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/product/src/main/java/prod/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerro/src/razaperro/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerro/src/razaperro/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerroContinuo/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerroContinuo/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerroContinuo/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerroContinuo/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Colecciones/razaPerroContinuo/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Colecciones/razaPerroContinuo/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_1/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_1/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_1/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_1/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_1/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_1/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_1/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_1/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_1/src/entidades/Persona.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_1/src/entidades/Persona.java -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_2/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_2/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_2/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_2/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_2/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_2/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_2/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_2/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_2/src/entity/MyClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_2/src/entity/MyClass.java -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_5/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_5/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_5/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_5/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_5/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_5/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_5/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_5/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_5/src/excepciones/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_5/src/excepciones/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_6/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_6/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_6/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_6/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_6/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_6/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_6/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_6/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_7/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_7/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_7/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_7/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_7/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_7/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_7/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_7/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_8/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_8/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_8/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_8/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_8/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_8/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_8/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_8/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_9/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_9/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_9/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_9/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_9/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_9/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepciones_9/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepciones_9/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_3/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_3/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_3/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_3/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_3/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_3/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_3/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_3/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_4/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_4/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_4/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_4/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_4/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_4/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/Excepeciones_4/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/Excepeciones_4/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Excepciones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Excepciones/README.md -------------------------------------------------------------------------------- /Back-End/Java/GitHub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/GitHub/README.md -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/src/alojamiento/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/src/alojamiento/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/src/identity/Alojamiento.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/src/identity/Alojamiento.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/src/identity/Camping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/src/identity/Camping.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/src/identity/Hotel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/src/identity/Hotel.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Alojamiento/src/identity/Residencia.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Alojamiento/src/identity/Residencia.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build/classes/animal/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/build/classes/animal/Main.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build/classes/entity/Animal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/build/classes/entity/Animal.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build/classes/entity/Caballo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/build/classes/entity/Caballo.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build/classes/entity/Gato.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/build/classes/entity/Gato.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/build/classes/entity/Perro.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/build/classes/entity/Perro.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/src/animal/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/src/animal/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/src/entity/Animal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/src/entity/Animal.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/src/entity/Caballo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/src/entity/Caballo.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/src/entity/Gato.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/src/entity/Gato.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Animal/src/entity/Perro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Animal/src/entity/Perro.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/build/classes/edificio/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/build/classes/edificio/Main.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/src/edificio/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/src/edificio/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/src/entity/Edificio.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/src/entity/Edificio.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/src/entity/EdificioDeOficinas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/src/entity/EdificioDeOficinas.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Edificio/src/entity/Polideportivo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Edificio/src/entity/Polideportivo.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/src/entity/Lavadora.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos/src/entity/Lavadora.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos/src/entity/Televisor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos/src/entity/Televisor.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos2.0/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos2.0/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos2.0/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos2.0/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos2.0/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos2.0/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Electrodomesticos2.0/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Electrodomesticos2.0/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/src/geometria/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/src/geometria/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/src/interfaz/CalculosFormas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/src/interfaz/CalculosFormas.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/src/interfaz/Circulo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/src/interfaz/Circulo.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Geometria/src/interfaz/Rectangulo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Geometria/src/interfaz/Rectangulo.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/build/classes/identity/Barco.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/build/classes/identity/Barco.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/build/classes/identity/Velero.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/build/classes/identity/Velero.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/build/classes/puerto/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/build/classes/puerto/Main.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/src/identity/Alquiler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/src/identity/Alquiler.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/src/identity/Barco.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/src/identity/Barco.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/src/identity/BarcoMotor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/src/identity/BarcoMotor.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/src/identity/Velero.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/src/identity/Velero.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/src/identity/YateDeLujo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/src/identity/YateDeLujo.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Puerto/src/puerto/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Puerto/src/puerto/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/README.md -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Sistema_Gestion_Facultad/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Sistema_Gestion_Facultad/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Sistema_Gestion_Facultad/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Sistema_Gestion_Facultad/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/Sistema_Gestion_Facultad/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/Sistema_Gestion_Facultad/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/build/classes/entity/Animal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/build/classes/entity/Animal.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/build/classes/entity/Gato.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/build/classes/entity/Gato.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/build/classes/entity/Perro.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/build/classes/entity/Perro.class -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/src/entity/Animal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/src/entity/Animal.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/src/entity/Gato.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/src/entity/Gato.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/src/entity/Perro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/src/entity/Perro.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObra/src/manosobra/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObra/src/manosobra/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/src/interfaces/Interfaz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/src/interfaces/Interfaz.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/src/interfaces/Metodos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/src/interfaces/Metodos.java -------------------------------------------------------------------------------- /Back-End/Java/Herencia/manosObras1/src/manosobras1/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Herencia/manosObras1/src/manosobras1/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Armadura.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Armadura.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Bota.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Bota.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Casco.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Casco.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Consola.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Consola.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Guante.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/Guante.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/ObjetoX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/src/armor/ObjetoX.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/Iron_Man/src/jarvis/JARVIS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/Iron_Man/src/jarvis/JARVIS.java -------------------------------------------------------------------------------- /Back-End/Java/Integrador_Iron_Man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Integrador_Iron_Man/README.md -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/README.md -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/build/classes/test/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/build/classes/test/Test.class -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/build/classes/test/ej6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/build/classes/test/ej6.class -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio10.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio11.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio12.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio12.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio13.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio13.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio14.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio14.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio6.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio7.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio8.java -------------------------------------------------------------------------------- /Back-End/Java/Introduccion_a_Java/src/test/Ejercicio9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Introduccion_a_Java/src/test/Ejercicio9.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/build/classes/ahorcado/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/build/classes/ahorcado/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/build/classes/entidades/Ahorcado.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/build/classes/entidades/Ahorcado.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/src/ahorcado/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/src/ahorcado/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado/src/entidades/Ahorcado.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado/src/entidades/Ahorcado.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/build/classes/ahorcado2/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/build/classes/ahorcado2/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/build/classes/entidades/Ahorcado.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/build/classes/entidades/Ahorcado.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/src/ahorcado2/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/src/ahorcado2/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Ahorcado2/src/entidades/Ahorcado.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Ahorcado2/src/entidades/Ahorcado.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/build/classes/arreglo/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/build/classes/arreglo/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Arreglo/src/arreglo/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Arreglo/src/arreglo/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/build/classes/cadena/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/build/classes/cadena/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/build/classes/entidad/Cadena.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/build/classes/entidad/Cadena.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/src/cadena/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/src/cadena/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cadena/src/entidad/Cadena.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cadena/src/entidad/Cadena.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/build/classes/Entidades/Cafetera.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/build/classes/Entidades/Cafetera.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/build/classes/cafetera/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/build/classes/cafetera/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/src/Entidades/Cafetera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/src/Entidades/Cafetera.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cafetera/src/cafetera/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cafetera/src/cafetera/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cancion/src/cancion/Cancion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cancion/src/cancion/Cancion.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/src/Entidades/Cuenta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/src/Entidades/Cuenta.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/src/cuentabancaria/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/src/cuentabancaria/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Cuentabancaria/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Cuentabancaria/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/build/classes/curso/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/build/classes/curso/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/build/classes/entidad/Curso.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/build/classes/entidad/Curso.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/src/curso/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/src/curso/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Curso/src/entidad/Curso.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Curso/src/entidad/Curso.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/build/classes/date/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/build/classes/date/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Date/src/date/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Date/src/date/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/JavaSecrets/src/javasecrets/JavaSecrets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/JavaSecrets/src/javasecrets/JavaSecrets.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/build/classes/matematica/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/build/classes/matematica/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/src/entidades/Matematica.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/src/entidades/Matematica.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Matematica/src/matematica/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Matematica/src/matematica/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/build/classes/entidades/NIF.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/build/classes/entidades/NIF.class -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/build/classes/nif/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/build/classes/nif/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/build/classes/service/Service.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/build/classes/service/Service.class -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/src/entidades/NIF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/src/entidades/NIF.java -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/src/nif/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/src/nif/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/NIF/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/NIF/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/build/classes/entidades/Persona.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/build/classes/entidades/Persona.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/build/classes/persona/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/build/classes/persona/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/src/entidades/Persona.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/src/entidades/Persona.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona-2/src/persona/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona-2/src/persona/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/build/classes/entidades/Persona.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/build/classes/entidades/Persona.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/build/classes/persona/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/build/classes/persona/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/src/entidades/Persona.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/src/entidades/Persona.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Persona/src/persona/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Persona/src/persona/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/build/classes/entidades/Puntos.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/build/classes/entidades/Puntos.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/build/classes/puntos/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/build/classes/puntos/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/build/classes/service/Service.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/build/classes/service/Service.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/src/entidades/Puntos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/src/entidades/Puntos.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/src/puntos/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/src/puntos/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos-2/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos-2/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/build/classes/entidades/Puntos.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/build/classes/entidades/Puntos.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/build/classes/puntos/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/build/classes/puntos/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/build/classes/service/Service.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/build/classes/service/Service.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/src/entidades/Puntos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/src/entidades/Puntos.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/src/puntos/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/src/puntos/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Puntos/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Puntos/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/README.md -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/build/classes/entidades/Raices.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/build/classes/entidades/Raices.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/build/classes/raices/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/build/classes/raices/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/src/entidades/Raices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/src/entidades/Raices.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/src/raices/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/src/raices/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/Raices/src/serviceRaices/ServiceRaices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/Raices/src/serviceRaices/ServiceRaices.java -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/build/classes/Entidades/Libro.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/build/classes/Entidades/Libro.class -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/build/classes/biblio/Biblio.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/build/classes/biblio/Biblio.class -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/build/classes/biblio/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/build/classes/biblio/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/build/classes/service/Service.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/build/classes/service/Service.class -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/src/Entidades/Libro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/src/Entidades/Libro.java -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/src/biblio/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/src/biblio/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/biblio/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/biblio/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/src/Entidades/Circunferencia.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/src/Entidades/Circunferencia.java -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/src/circunferencia/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/src/circunferencia/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/circunferencia/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/circunferencia/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/build/classes/operacion/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/build/classes/operacion/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/src/Entidades/Operaciones.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/src/Entidades/Operaciones.java -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/src/operacion/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/src/operacion/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/operacion/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/operacion/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/build/classes/rectangulo/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/build/classes/rectangulo/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/src/Entidades/Rectangulo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/src/Entidades/Rectangulo.java -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/src/rectangulo/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/src/rectangulo/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/rectangulo/src/service/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/rectangulo/src/service/Service.java -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/build/classes/entidad/Movil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/build/classes/entidad/Movil.class -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/build/classes/telefono/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/build/classes/telefono/Main.class -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/src/entidad/Movil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/src/entidad/Movil.java -------------------------------------------------------------------------------- /Back-End/Java/POO/telefono/src/telefono/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/telefono/src/telefono/Main.java -------------------------------------------------------------------------------- /Back-End/Java/POO/test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/build.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/test/build/classes/Entidades/Persona.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/build/classes/Entidades/Persona.class -------------------------------------------------------------------------------- /Back-End/Java/POO/test/build/classes/ManosObra/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/build/classes/ManosObra/Test.class -------------------------------------------------------------------------------- /Back-End/Java/POO/test/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/POO/test/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/test/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/test/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/test/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/test/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/POO/test/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/POO/test/src/Entidades/Persona.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/src/Entidades/Persona.java -------------------------------------------------------------------------------- /Back-End/Java/POO/test/src/ManosObra/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/POO/test/src/ManosObra/Test.java -------------------------------------------------------------------------------- /Back-End/Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/README.md -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/La_Tercera_Seguros/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/La_Tercera_Seguros/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/La_Tercera_Seguros/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/La_Tercera_Seguros/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/La_Tercera_Seguros/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/La_Tercera_Seguros/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/README.md -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/src/adoptarperro/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/src/adoptarperro/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/src/entity/Perro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/src/entity/Perro.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/adoptarPerro/src/entity/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/adoptarPerro/src/entity/Person.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/build/classes/cine/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/build/classes/cine/Main.class -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/build/classes/identity/Cine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/build/classes/identity/Cine.class -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/nbproject/private/private.properties -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/src/cine/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/src/cine/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/src/identity/Cine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/src/identity/Cine.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/src/identity/Espectador.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/src/identity/Espectador.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/cine/src/identity/Pelicula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/cine/src/identity/Pelicula.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploEquipo/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploEquipo/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploEquipo/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploEquipo/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploEquipo/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploEquipo/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploEquipo/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploEquipo/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploEquipo/src/ejemploequipo/main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploEquipo/src/ejemploequipo/main.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploEquipo/src/entity/Equipo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploEquipo/src/entity/Equipo.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploEquipo/src/entity/Jugador.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploEquipo/src/entity/Jugador.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploPersona/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploPersona/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploPersona/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploPersona/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/src/entity/Dni.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploPersona/src/entity/Dni.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/ejemploPersona/src/entity/Persona.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/ejemploPersona/src/entity/Persona.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/juegoRuletaRusa/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/juegoRuletaRusa/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/juegoRuletaRusa/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/juegoRuletaRusa/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/juegoRuletaRusa/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/juegoRuletaRusa/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/juegoRuletaRusa/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/juegoRuletaRusa/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/juegoRuletaRusa/src/entity/Juego.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/juegoRuletaRusa/src/entity/Juego.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/juegoRuletaRusa/src/entity/Jugador.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/juegoRuletaRusa/src/entity/Jugador.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/nbproject/private/private.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/nbproject/project.properties -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/src/Service/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/src/Service/Menu.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/src/entity/Baraja.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/src/entity/Baraja.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/src/entity/Carta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/src/entity/Carta.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/laBaraja/src/labaraja/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/laBaraja/src/labaraja/Main.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/build.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/manifest.mf -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/nbproject/project.xml -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/src/entity/Alumno.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/src/entity/Alumno.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/src/entity/Simulador.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/src/entity/Simulador.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/src/entity/Voto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/src/entity/Voto.java -------------------------------------------------------------------------------- /Back-End/Java/Relaciones/simulador_Egg/src/simulador_egg/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/Java/Relaciones/simulador_Egg/src/simulador_egg/Main.java -------------------------------------------------------------------------------- /Back-End/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Candados/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Candados/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Ejercicios_Aprendizaje_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Ejercicios_Aprendizaje_1/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Ejercicios_Aprendizaje_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Ejercicios_Aprendizaje_2/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Ejercicios_Aprendizaje_Extra_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Ejercicios_Aprendizaje_Extra_1/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Ejercicios_Aprendizaje_Extra_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Ejercicios_Aprendizaje_Extra_2/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Ejercicios_Aprendizaje_Extra_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Ejercicios_Aprendizaje_Extra_3/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Manos_Obra_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Manos_Obra_1/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Manos_Obra_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Manos_Obra_2/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Manos_Obra_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Manos_Obra_3/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Manos_Obra_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Manos_Obra_4/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Manos_Obra_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Manos_Obra_5/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Manos_Obra_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Manos_Obra_6/README.md -------------------------------------------------------------------------------- /Back-End/SQL/Manos_Obra_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/Manos_Obra_7/README.md -------------------------------------------------------------------------------- /Back-End/SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Back-End/SQL/README.md -------------------------------------------------------------------------------- /Final/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Final/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_1/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_1/index.html -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_2/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_3/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_4/Readme.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_5/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_6/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_7/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_8/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Ejercicios_Aprendizaje_9/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_1/Readme.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_1/ejercicio1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_1/ejercicio1.html -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_2/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_2/ejercicio1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_2/ejercicio1.html -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_3/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_3/ejercicio1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_3/ejercicio1.html -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_4/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_4/ejercicio1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_4/ejercicio1.html -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_5/README.md -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_5/ejercicio1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_5/ejercicio1.html -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_5/estilos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/Manos_Obra_5/estilos.css -------------------------------------------------------------------------------- /Front-End/HTMLyCSSyBOOTSTRAP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/HTMLyCSSyBOOTSTRAP/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_1/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_1/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_1/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_10/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_10/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_10/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_10/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_11/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_11/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_11/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_11/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_12/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_12/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_12/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_12/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_13/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_13/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_13/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_13/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_14/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_14/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_14/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_14/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_15/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_15/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_15/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_15/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_16/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_16/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_16/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_16/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_17/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_17/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_17/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_17/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_18/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_18/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_18/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_18/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_19/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_19/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_19/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_19/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_2/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_2/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_2/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_20/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_20/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_20/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_20/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_20/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_20/styles.css -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_21/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_21/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_21/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_21/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_22/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_22/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_22/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_22/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_23/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_23/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_23/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_23/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_23/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_24/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_24/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_24/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_24/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_25/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_25/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_25/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_25/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_3/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_3/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_3/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_4/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_4/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_4/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_4/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_5/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_5/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_5/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_5/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_6/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_6/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_6/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_6/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_7/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_7/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_7/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_7/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_8/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_8/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_8/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_8/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_9/README.md -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_9/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_9/app.js -------------------------------------------------------------------------------- /Front-End/Javascript/Ejercicios_Aprendizaje_9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/Ejercicios_Aprendizaje_9/index.html -------------------------------------------------------------------------------- /Front-End/Javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/Javascript/README.md -------------------------------------------------------------------------------- /Front-End/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/README.md -------------------------------------------------------------------------------- /Front-End/React/Ejercicios_Aprendizaje_1/README.md: -------------------------------------------------------------------------------- 1 | # // Guia Obsoleta!!!... -------------------------------------------------------------------------------- /Front-End/React/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Front-End/React/README.md -------------------------------------------------------------------------------- /Guia/Anexo_CSS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Anexo_CSS.pdf -------------------------------------------------------------------------------- /Guia/Colecciones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Colecciones.pdf -------------------------------------------------------------------------------- /Guia/Git_con_GitHub.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Git_con_GitHub.pdf -------------------------------------------------------------------------------- /Guia/Guia_Html_&_Css.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Guia_Html_&_Css.pdf -------------------------------------------------------------------------------- /Guia/Guia_JPA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Guia_JPA.pdf -------------------------------------------------------------------------------- /Guia/Guia_React.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Guia_React.pdf -------------------------------------------------------------------------------- /Guia/Guia_de_JavaScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Guia_de_JavaScript.pdf -------------------------------------------------------------------------------- /Guia/Herencia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Herencia.pdf -------------------------------------------------------------------------------- /Guia/Instructivo_Conexion_Netbeans_MySQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Instructivo_Conexion_Netbeans_MySQL.pdf -------------------------------------------------------------------------------- /Guia/Instructivo_JDBC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Instructivo_JDBC.pdf -------------------------------------------------------------------------------- /Guia/Instructivo_Unidad_PersitenciaJPA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Instructivo_Unidad_PersitenciaJPA.pdf -------------------------------------------------------------------------------- /Guia/Integrador-Mysql.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Integrador-Mysql.pdf -------------------------------------------------------------------------------- /Guia/JDBC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/JDBC.pdf -------------------------------------------------------------------------------- /Guia/Java_Intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Java_Intro.pdf -------------------------------------------------------------------------------- /Guia/Manejo_Excepciones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Manejo_Excepciones.pdf -------------------------------------------------------------------------------- /Guia/MySQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/MySQL.pdf -------------------------------------------------------------------------------- /Guia/POO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/POO.pdf -------------------------------------------------------------------------------- /Guia/Relaciones_Entre_Clases.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/Relaciones_Entre_Clases.pdf -------------------------------------------------------------------------------- /Guia/pseint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/Guia/pseint.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/README.md -------------------------------------------------------------------------------- /img/capimagen-for.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/capimagen-for.png -------------------------------------------------------------------------------- /img/comandos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/comandos.png -------------------------------------------------------------------------------- /img/comparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/comparator.png -------------------------------------------------------------------------------- /img/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/controller.png -------------------------------------------------------------------------------- /img/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/http.png -------------------------------------------------------------------------------- /img/identificadores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/identificadores.png -------------------------------------------------------------------------------- /img/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/password.png -------------------------------------------------------------------------------- /img/repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/repository.png -------------------------------------------------------------------------------- /img/select-where-like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/select-where-like.png -------------------------------------------------------------------------------- /img/try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/try.png -------------------------------------------------------------------------------- /img/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megagringa/FullStack_Egg_Curso/HEAD/img/version.png --------------------------------------------------------------------------------