├── .gitignore ├── .vscode └── settings.json ├── Git y GitHub.docx ├── IA └── README.md ├── POO ├── .vscode │ ├── launch.json │ └── settings.json ├── JS │ ├── Account.js │ ├── Car.js │ ├── Card.js │ ├── Cash.js │ ├── Driver.js │ ├── ES6Account.js │ ├── ES6Car.js │ ├── Payment.js │ ├── Paypal.js │ ├── Route.js │ ├── UberBlack.js │ ├── UberPool.js │ ├── UberVan.js │ ├── UberX.js │ ├── User.js │ ├── index.html │ └── index.js ├── Java │ ├── Account.java │ ├── Car.java │ ├── Card.java │ ├── Cash.java │ ├── Main.class │ ├── Main.java │ ├── Payment.java │ ├── Paypal.java │ ├── Route.java │ ├── UberBlack.java │ ├── UberPool.java │ ├── UberVan.java │ └── UberX.java ├── PHP │ ├── Account.php │ ├── Car.php │ ├── Payment.php │ ├── Route.php │ ├── index.php │ ├── uberBlack.php │ ├── uberPool.php │ ├── uberVan.php │ └── uberX.php ├── Python │ ├── account.py │ ├── car.py │ ├── card.py │ ├── cash.py │ ├── main.py │ ├── payment.py │ ├── paypal.py │ ├── route.py │ ├── uberBlack.py │ ├── uberPool.py │ ├── uberVan.py │ └── uberX.py ├── README.md ├── assets │ ├── UML.jpg │ ├── agegacion_clases.jpg │ ├── agregacion.jpg │ ├── asociacion.jpg │ ├── asociacion_clases.jpg │ ├── composicion.jpg │ ├── composicion_clases.jpg │ ├── diagrama_uber.png │ ├── herencia.jpg │ ├── herencia_clases.jpg │ ├── programacion-orientada-a-objetos-poo.pdf │ └── representacion_clases.jpg ├── herencia.md └── orientacion_a_objetos.md ├── README.md ├── assets ├── Technical English for Professionals Course.pdf └── curso-trabajar-como-freelancer.pdf ├── basicos-git.md ├── comandos_git.md ├── css └── style.css ├── english.md ├── estrategias_aprender_efectivamente.md ├── formacion_profesional_integral.md ├── git_cmd.md ├── git_cmd.txt ├── img ├── algoritmo.png ├── instalacion_raspberry.png └── programacion.jpg ├── index.html ├── instalar-lamp.md ├── nota.txt ├── python ├── aritmetico.py ├── arreglos.py ├── comparacion.py ├── for.py ├── funcion.py ├── holamundo.py ├── readme.md └── while.py ├── raspberry_optimization.md ├── raspberrypi.md ├── ser_freelance.md ├── software_development_style_guide.md ├── tips_for_developers.md ├── tips_git.md └── trabajo_programacion.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Git y GitHub.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/Git y GitHub.docx -------------------------------------------------------------------------------- /IA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/IA/README.md -------------------------------------------------------------------------------- /POO/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/.vscode/launch.json -------------------------------------------------------------------------------- /POO/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/.vscode/settings.json -------------------------------------------------------------------------------- /POO/JS/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/Account.js -------------------------------------------------------------------------------- /POO/JS/Car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/Car.js -------------------------------------------------------------------------------- /POO/JS/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/Card.js -------------------------------------------------------------------------------- /POO/JS/Cash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/Cash.js -------------------------------------------------------------------------------- /POO/JS/Driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/Driver.js -------------------------------------------------------------------------------- /POO/JS/ES6Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/ES6Account.js -------------------------------------------------------------------------------- /POO/JS/ES6Car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/ES6Car.js -------------------------------------------------------------------------------- /POO/JS/Payment.js: -------------------------------------------------------------------------------- 1 | function Payment(id) { 2 | this.id = id; 3 | } -------------------------------------------------------------------------------- /POO/JS/Paypal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/Paypal.js -------------------------------------------------------------------------------- /POO/JS/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/Route.js -------------------------------------------------------------------------------- /POO/JS/UberBlack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/UberBlack.js -------------------------------------------------------------------------------- /POO/JS/UberPool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/UberPool.js -------------------------------------------------------------------------------- /POO/JS/UberVan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/UberVan.js -------------------------------------------------------------------------------- /POO/JS/UberX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/UberX.js -------------------------------------------------------------------------------- /POO/JS/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/User.js -------------------------------------------------------------------------------- /POO/JS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/index.html -------------------------------------------------------------------------------- /POO/JS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/JS/index.js -------------------------------------------------------------------------------- /POO/Java/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Account.java -------------------------------------------------------------------------------- /POO/Java/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Car.java -------------------------------------------------------------------------------- /POO/Java/Card.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Card.java -------------------------------------------------------------------------------- /POO/Java/Cash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Cash.java -------------------------------------------------------------------------------- /POO/Java/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Main.class -------------------------------------------------------------------------------- /POO/Java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Main.java -------------------------------------------------------------------------------- /POO/Java/Payment.java: -------------------------------------------------------------------------------- 1 | package Java; 2 | 3 | class Payment { 4 | Integer id; 5 | } -------------------------------------------------------------------------------- /POO/Java/Paypal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Paypal.java -------------------------------------------------------------------------------- /POO/Java/Route.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/Route.java -------------------------------------------------------------------------------- /POO/Java/UberBlack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/UberBlack.java -------------------------------------------------------------------------------- /POO/Java/UberPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/UberPool.java -------------------------------------------------------------------------------- /POO/Java/UberVan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/UberVan.java -------------------------------------------------------------------------------- /POO/Java/UberX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Java/UberX.java -------------------------------------------------------------------------------- /POO/PHP/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/Account.php -------------------------------------------------------------------------------- /POO/PHP/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/Car.php -------------------------------------------------------------------------------- /POO/PHP/Payment.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /POO/PHP/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/Route.php -------------------------------------------------------------------------------- /POO/PHP/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/index.php -------------------------------------------------------------------------------- /POO/PHP/uberBlack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/uberBlack.php -------------------------------------------------------------------------------- /POO/PHP/uberPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/uberPool.php -------------------------------------------------------------------------------- /POO/PHP/uberVan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/uberVan.php -------------------------------------------------------------------------------- /POO/PHP/uberX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/PHP/uberX.php -------------------------------------------------------------------------------- /POO/Python/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/account.py -------------------------------------------------------------------------------- /POO/Python/car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/car.py -------------------------------------------------------------------------------- /POO/Python/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/card.py -------------------------------------------------------------------------------- /POO/Python/cash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/cash.py -------------------------------------------------------------------------------- /POO/Python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/main.py -------------------------------------------------------------------------------- /POO/Python/payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/payment.py -------------------------------------------------------------------------------- /POO/Python/paypal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/paypal.py -------------------------------------------------------------------------------- /POO/Python/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/route.py -------------------------------------------------------------------------------- /POO/Python/uberBlack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/uberBlack.py -------------------------------------------------------------------------------- /POO/Python/uberPool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/uberPool.py -------------------------------------------------------------------------------- /POO/Python/uberVan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/uberVan.py -------------------------------------------------------------------------------- /POO/Python/uberX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/Python/uberX.py -------------------------------------------------------------------------------- /POO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/README.md -------------------------------------------------------------------------------- /POO/assets/UML.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/UML.jpg -------------------------------------------------------------------------------- /POO/assets/agegacion_clases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/agegacion_clases.jpg -------------------------------------------------------------------------------- /POO/assets/agregacion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/agregacion.jpg -------------------------------------------------------------------------------- /POO/assets/asociacion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/asociacion.jpg -------------------------------------------------------------------------------- /POO/assets/asociacion_clases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/asociacion_clases.jpg -------------------------------------------------------------------------------- /POO/assets/composicion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/composicion.jpg -------------------------------------------------------------------------------- /POO/assets/composicion_clases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/composicion_clases.jpg -------------------------------------------------------------------------------- /POO/assets/diagrama_uber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/diagrama_uber.png -------------------------------------------------------------------------------- /POO/assets/herencia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/herencia.jpg -------------------------------------------------------------------------------- /POO/assets/herencia_clases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/herencia_clases.jpg -------------------------------------------------------------------------------- /POO/assets/programacion-orientada-a-objetos-poo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/programacion-orientada-a-objetos-poo.pdf -------------------------------------------------------------------------------- /POO/assets/representacion_clases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/assets/representacion_clases.jpg -------------------------------------------------------------------------------- /POO/herencia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/herencia.md -------------------------------------------------------------------------------- /POO/orientacion_a_objetos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/POO/orientacion_a_objetos.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/README.md -------------------------------------------------------------------------------- /assets/Technical English for Professionals Course.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/assets/Technical English for Professionals Course.pdf -------------------------------------------------------------------------------- /assets/curso-trabajar-como-freelancer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/assets/curso-trabajar-como-freelancer.pdf -------------------------------------------------------------------------------- /basicos-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/basicos-git.md -------------------------------------------------------------------------------- /comandos_git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/comandos_git.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/css/style.css -------------------------------------------------------------------------------- /english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/english.md -------------------------------------------------------------------------------- /estrategias_aprender_efectivamente.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/estrategias_aprender_efectivamente.md -------------------------------------------------------------------------------- /formacion_profesional_integral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/formacion_profesional_integral.md -------------------------------------------------------------------------------- /git_cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/git_cmd.md -------------------------------------------------------------------------------- /git_cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/git_cmd.txt -------------------------------------------------------------------------------- /img/algoritmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/img/algoritmo.png -------------------------------------------------------------------------------- /img/instalacion_raspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/img/instalacion_raspberry.png -------------------------------------------------------------------------------- /img/programacion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/img/programacion.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/index.html -------------------------------------------------------------------------------- /instalar-lamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/instalar-lamp.md -------------------------------------------------------------------------------- /nota.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/nota.txt -------------------------------------------------------------------------------- /python/aritmetico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/aritmetico.py -------------------------------------------------------------------------------- /python/arreglos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/arreglos.py -------------------------------------------------------------------------------- /python/comparacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/comparacion.py -------------------------------------------------------------------------------- /python/for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/for.py -------------------------------------------------------------------------------- /python/funcion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/funcion.py -------------------------------------------------------------------------------- /python/holamundo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/holamundo.py -------------------------------------------------------------------------------- /python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/readme.md -------------------------------------------------------------------------------- /python/while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/python/while.py -------------------------------------------------------------------------------- /raspberry_optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/raspberry_optimization.md -------------------------------------------------------------------------------- /raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/raspberrypi.md -------------------------------------------------------------------------------- /ser_freelance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/ser_freelance.md -------------------------------------------------------------------------------- /software_development_style_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/software_development_style_guide.md -------------------------------------------------------------------------------- /tips_for_developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/tips_for_developers.md -------------------------------------------------------------------------------- /tips_git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/tips_git.md -------------------------------------------------------------------------------- /trabajo_programacion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocode/Getting-Started/HEAD/trabajo_programacion.md --------------------------------------------------------------------------------