System.out.print("Hello, ");
console.log('my name is ');
printf("%s\n", "Dyson Parra");
Hello, my name is Dyson Parra
I'm from Colombia and i'm a programmer.
- 🌱 I’m currently learning c++
- 📍 I'm from Medellín, Antioquia (Colombia)
- 📫 How to reach me: dysontilano@gmail.com
- C (source code, macros, Makefile)
- C# (source code, ASP.Net)
- Java (1.8, 11, gradle, maven, Spring, Spring boot, Eureka, Hibernate, Sonatype, Selenium)
- Python (Source code, pandas, pyspark)
- Angular (Typescript, CSS, Html, javascript, Postman)
- Sql (Mariadb, Mysql, Sql server)
- Android Studio (With java)
- Use of Regex (Perl cli, sed cli, vs code)
- Snowflake data cloud
- Databricks
- AWS (Sam cli, S3, lambda, layer, Kms)
- Azure functions
- Matillon Dev
- Redshift
- Domo
- Windows scripts (bat)
- Linux scripts (sh)
Relevant projects
-
Examples of connection to a database and CRUD services using spring and hibernate.
Create database script (mysql) and postman tests file also included.
almacen
appointments
autopistas
farmacias
minas
restaurant
veterinaria
vias -
Examples of connection to a database and CRUD services using ASP.NET and entity framework.
Create database script (sql server) also included.
Almacen
Appointments
Autopistas
Farmacias
Minas
Restaurant
Veterinaria
Vias -
Flag processors:
Cli lib that receive an undetermined number of arguments, analyze if are correctly formed and if yes parse it into objects (or structs) or else print the specific error in console.
The flags are from two types (you can use the two at same time):- With value: an alphanumeric string started with '-' and the next argument must be the value of the flag.
Example: -downloadPath documents -sourceFile myFile.xml -rootDir C:/project - Withouth value: an alphanumerirc string started with '--'.
Example: --useDefault --notUseIncognito --generateLogFile --preserveTempFiles
For use the library you need to specify in source code a set of flags defined as required, other defined as optionals and other defined as default. More specific how to use in the projects.
c
c#
java
python - With value: an alphanumeric string started with '-' and the next argument must be the value of the flag.