Skip to content
View cgedler's full-sized avatar
Block or Report

Block or report cgedler

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
cgedler/README.md

This is my personal website

👋 Hi!, I am a professional in the area of information technologies. I have been working for 18 years in the technology area, providing support in technological infrastructure and IT solutions, for 5 years I have dedicated myself to the development of Software to improve and optimize existing processes in (PYMES-Institutions-Corporations), developing web systems and desktop applications for easy, effective and profitable use, also integrating new functionalities and requirements that do not exist in other management software (Profit Plus System 2KDoce and 2k8).

I have experience and professional knowledge in: Java Spring Hibernate C C# .Net JavaScript jQuery Angular.js JWT Python Django

  • among other knowledge.

And Databases: Postgres MySQL MicrosoftSQLServer

📫 cgedler@gmail.com

AboutMe.java

package ve.com.cge.presentation;

import java.util.ArrayList;
import java.util.List;

/**
 * A few things about me...
 * 
 * @author Christopher Gedler <cgedler@gmail.com>
 * @version 1.0
 */
public class AboutMe {

    public static void main(String[] args) {
        // TODO code application logic here
        System.out.println("********************* START **************************");
        System.out.println("             All roads lead to Rome.....              ");
        
        ArrayList<ProgrammingLanguage> myList = new ArrayList<ProgrammingLanguage>();
        
        String[] languages = new String[7];
        languages[0] = "C";
        languages[1] = "C#";
        languages[2] = "Java";
        languages[3] = "JavaScript";
        languages[4] = "Python";
        languages[5] = "Vb.Net";
        languages[6] = "Other old ones that I remember like: Clipper, Pascal, vb, Vfp";
        
        for (int i = 0; i < languages.length; i++) {
            ProgrammingLanguage tempProgrammingLanguage = new ProgrammingLanguage(i, languages[i]);
            myList.add(tempProgrammingLanguage);    
        }
        
        // Ok now yes!!!
        // a me
        Person me = new Person(12345678, "Christopher Gedler", myList);
        System.out.println("My Person data :");
        System.out.println('\t' + "- My id: " + me.getId());
        System.out.println('\t' + "- My name: " + me.getName());
        System.out.println('\t' + "- Languages I know : ");
        for (int i = 0; i < me.getLanguages().size(); i++){ //Bucle for mejorado
            System.out.println('\t' + "- " + (i+1) + " " + me.getLanguages().get(i));    
        } 
        System.out.println("");
        System.out.println("               Thanks for watching                  ");
        System.out.println("********************* END **************************");   
    }
    
}

Popular repositories

  1. Guiafgag Guiafgag Public

    Módulo de facturación como requerimiento especial , desarrollado en VB.NET(2008) + SQL Server 2008, integrado con Profit alimentando la información correspondiente a facturación, realizando impresi…

    Visual Basic .NET

  2. cgedler cgedler Public

    Config files for my GitHub profile.

    Java

  3. Midipaaa Midipaaa Public

    Is a web system automates and controls the processes of the “Familia Midipaaa” organization.

    Python

  4. Barcode Barcode Public

    Barcode is a web system that automates and controls the shipping of packages between a company's branches.

    Python

  5. Galactica Galactica Public

    Galactica is a web system to automate and control processes management of requests services inside of the organization.

    Java

  6. Scraping_blogabet Scraping_blogabet Public

    Simple scraping of a list of websites to get some information

    Python