Posts

Tech Pathways: My Journey into IT

  Title: Welcome to My Tech Journey! Content: Welcome to my Information Technology blog! My name is D’Lorean Sue, and I created this space as part of my studies at The University of Arizona Global Campus. I’m currently pursuing a degree in IT while working as a Software Analyst in the IT department at PoolCorp, a nationwide wholesale distributor in the swimming pool industry. After several years as a Lead Customer Service Agent, I transitioned into IT, where I am now focused on analyzing software systems and helping improve technology solutions. This blog serves as both a learning tool and a platform to reflect on my growth and discoveries in the tech field. Here, I’ll share insights on topics like cloud-based cybersecurity, data analysis, and software development, as well as my experiences navigating a career shift into technology. My goal is to continue expanding my skills and contribute to innovative IT solutions at PoolCorp and beyond. Thanks for stopping by — and feel fr...

Algorithmic Design and Data Structures

When you're new to programming, understanding algorithmic design and data structures can seem tricky, but they’re really just tools to help you solve problems more effectively. Let’s simplify these concepts: What Are Algorithmic Design and Data Structures? Algorithmic Design : This is like following a recipe. It’s a step-by-step guide that tells the computer how to solve a problem. For example, if you wanted to sort a list of numbers from smallest to largest, an algorithm would tell the computer how to do that. Data Structures : Think of these as different ways to organize your stuff. Just like you might organize your clothes in drawers or your files in folders, data structures are ways to organize information in a computer. Some common ones are: Arrays/Lists : Like a row of lockers, each with its own number (index). Dictionaries : Like a real dictionary, where you look up a word to find its definition. Queues : Like a line at the grocery store—first in, first out. How Do You Use T...

Java Installation and Object-Oriented Design Principles: A Beginner's Guide

Welcome to my blog! As someone who is new to Java, I wanted to share my journey of installing Java and exploring the basics of object-oriented design principles. This post aims to help other beginners and non-technical individuals who are looking to start their adventure with Java programming. Installing Java When I first started, installing Java seemed a bit daunting, but I found some great resources that made the process easier. Instead of providing a detailed tutorial, I recommend checking out these helpful guides: Oracle's Official Java Installation Guide : This site provides the latest version of Java and detailed installation instructions. GeeksforGeeks Java Installation Guide: This guide includes screenshots and step-by-step instructions for installing Java on different operating systems. Coding With John : A beginner-friendly resource to help you set up Java on your computer. Once you have Java installed, you can test it by writing a...