Michaelsun Baluyos

Data Analyst

Michaelsun Baluyos

I have a bachelor's degree in Electrical Egineering, where I excelled in Assembly, C and C++. My first job, straight out of uni was as a PHP developer role, developing a call management system. From there I decided a career change into Software Development. I got a part time job, being an instructor, while studying my Master's of Computing. Now I am working as a Data Analyst, using my skillset to develop automated systems, to make the ETL process easier and simple. I am a critical thinker with strong analytical skill, and pride myself on being mentor and leader to my teammates.

  • Syndey, NSW, Australia
  • contact@michaelbaluyos.com
  • www.michaelbaluyos.com
Me

My Professional Skills

Below are skills I have acquired while practicing on personal projects and skills acquired from work.

RESUME

Know more about my past


Employment

  • 2018-current

    Data Analyst @ Atos

    Conducting full lifecycle analysis to include extract, transform and load (ETL). Also developed analysis and reporting tools, while monitoring performance and quality control plans to identify improvements.

  • 2016-2016

    PHP Developer @ Fontis

    Maintaining client's large eCommerce system, called Magento. Ensured that the last security patches are installed and that existing functionality continues to work properly. Also developed new modules and applied any required front-end changes.

  • 2013-2016

    IT Suuport / Instructor @ Belgium Avenue Neighbourhood House

    Maintained the computer networks of all types, providing technical support and ensuring the community residents learn to use the computer. Monitor and maintain the computer systems, installs and configures hardware and software, and solves technical problems.

  • 2010-2011

    Systems Programmer @ Amtek

    Developed and maintained a call management system, while also being an asset management systems. Managing back-end services and the interchange of data between the server and the users

Education

  • 2015

    Masters of Computer Science @ RMIT University

    Developed a deep knowledge and understanding of professional software development and computing practices, such as SOLID principles, clean code practices, and source control.

  • 2009

    Bachelor of Engineering (Electrical) @ RMIT University

    Learnt to design and build systems and machines that generate, transmit, measure, control and use electrical energy essential to modern life.

  • First Post Test

    This is a test post. And for my first post I will discuss the first data structure that you may learn in university.

    Data Structures: 1-Dimensional Arrays

    A one-dimensional array, also known as a linear array, is a data structure that stores a sequence of elements, each identified by a unique index. Unlike other data structures such as trees or linked lists, all elements in a one-dimensional array are stored in a contiguous block of memory, making it easier and more efficient to access elements based on their index.

    One-dimensional arrays are commonly used to store collections of similar data types, such as a list of integers or strings. They are also often used to implement other data structures, such as stacks and queues.

    Creating a one-dimensional array in most programming languages is fairly simple. For example, in Java, you can create an array of integers with the following syntax:

    int[] array = new int[10];
    

    This code creates an array with a length of 10, meaning it can store 10 elements. Each element in the array is initialized to the default value for its data type (in this case, 0 for integers).

    To access a specific element in the array, you can use the array's index. In Java, array indices start at 0, so to access the first element in the array, you would use the following syntax:

    array[0]
    

    You can also assign values to elements in the array using the same syntax:

    array[0] = 5;
    

    This would set the first element in the array to the value 5.

    One-dimensional arrays are a fundamental data structure that is used in many different applications. They are simple to implement and use, and provide efficient access to elements based on their index. If you need to store and manipulate a collection of elements in your program, a one-dimensional array is often a good choice.

    EMAIL

    contact@michaelbaluyos.com