For my senior capstone project, our task was to complete a fully functioning blogging application. The blogging application required an interactive user interface (UI) accessible via a web-based platform, enabling real-time engagement and dynamic content interaction. The "Photo ABCD" application needed to enable users to upload blogs with photos, videos, titles, and descriptions. The blogs needed to be fully editable, with options to set them as either private or public. The application also required a feature for custom "Alphabet Books," allowing users to select a personalized collection of blogs, with the capability to generate and print the content. The application was required to be developed using PHP, JavaScript, HTML, CSS and SQL, with the website hosted on a BlueHost server environment.
Create a blogging platform with a dynamic, user-friendly interface, enabling users to post, edit, and share blogs, videos, titles, and descriptions through a web-based interface.
Develop a user registration/login, enabling users to create accounts and access personalized features for creating and managing blogs.
Allow users to search for blogs by creation date, event date, title, description, or blog creator.
Integrate customizable settings for blogs, including a private and public blog option.
Create a feature for users to compile a personalized collection of blogs into custom "Alphabet Books," with the ability to print the selected content.
Research and learn front-end development languages, PHP, JavaScript, HTML, and CSS, to effectively build and manage the application’s functionality and design.
First, we needed to research PHP and it's cabilities. Next, we designed our site map and the user flow for the application. We used a Trello board to divide the site sections amongst our group members. My first task was to find a suitable PHP template. As I updated section by section, I learned how to write in PHP, HTML, and JavaScript. I also learned how to edit the site formatting using CSS.
One of my tasks included creating the Home Page blog sections. I needed to learn how to capture the data from thr backend database and display that data onto the page. I also had to learn and implement dynamic sorting algorithms to filter and retrieve only the specific data requested by the user. Additionally, I implemented a feature that enables users to click on any username and view a list of all blogs associated with that specific user, enhancing content discoverability and user interaction.
Another page that I created was the Administrative Page. This page allowed a user with assigned admin privileges to edit blogs, user accounts, and displayed site total counts. Using this admin page, we could edit/delete users, blogs, blog titles, or blog descriptions if the content was deemed inappropriate. It also could display the alphabet book counts of each user, update user passwords, and assign admin/user privileges.
An addition section I worked on was the User Settings page. This allowed a user to update their first name, last name, password, or update their associated profile photo. I created many helper PHP files to call specific data from the database. I also created many JavaScript functions to organize the blogging actions and common application commands.
I was deemed the "DevOps Engineer" for my group. Part of my weekly responsibilities included uploading our local changes into the remote BlueHost Server. I used FileZilla to transfer the updated files. I also needed to throughly test are application on the remote site to find and solve errors/inconsistencies between the local and remote environments.
I gained experience in delegating specific code modules and tasks to different members of my team, ensuring efficient collaboration and project management.
I developed a robust blogging application that successfully fulfilled all required functionalities, while also providing an intuitive user interface and visually appealing design.
Previous to this project, my agile team at Securian Financial used Postman to test API calls for all their owned applications. However, Postman changed the available capabilities in their free tier, which made it no longer effective to meet the team’s testing requirements. Securian recommended using IntelliJ HTTP Client as the primary tool for ad-hoc API testing as Postman would no longer be supported by the end of the year.
First, I completed research on IntelliJ HTTP Client, HTTP fundamentals and authorization headers, and the differences and similarities of REST and SOAP API’s. I also reviewed the applications documentation to determine the requirements for developing comprehensive tests that addressed all aspects of the application.
The initial challenge I overcame was learning how to correctly format HTTP requests for both REST and SOAP API's. I had to learn both JSON and XML formatting. In addition, several of the applications utilized AWS for user authorization. I acquired proficiency in various AWS products and developed a solid understanding of authorization fundamentals.
I found that in order to effectively test the HTTP response interactions within the application, it was necessary for me to teach myself JavaScript programming. Upon completing the test development, I found that while the testing process was efficient, the HTTP files were excessively lengthy. To address this, I created separate JavaScript files to export common methods, thereby reducing the size of the HTTP testing file.
Example of simple GET request using IntelliJ HTTP Client:
I speed up the testing process for these three applications by over 80%.
For my semester project in Object-Oriented Programming, my team created a photo editor application. The photo editor application needed to include many features such as:
The visual design of the application is straightforward, allowing for new and experienced users to easily navigate the various features and apply them. The photo editor application also makes it easy to upload a photo, by drag-and-dropping the photo directly into the application window or using a File Explorer window. In addition, the application has an easy save photo option.
Functional Requirements
Upload Photos to Editor - The application allows users to upload photos either by drag-and-drop or through a file selection dialog under the "File" tab. It supports .png, .jpeg, and .gif files, catering to common image formats.
Resize Photos - Users can resize uploaded photos via the "Resize" tab, with predefined scales or custom dimensions using sliders. This feature offers flexibility in adjusting the photo size according to the user's needs.
Recolor Photos - The "Adjust Color" tab enables users to modify the brightness, hue, contrast, and saturation of photos using sliders. This provides a simple interface for enhancing or changing the mood of an image.
Apply Filters - Users can apply various filters (black and white, grayscale, red, blue, and green) through the "Apply Filter" tab. An option to revert to the original photo ensures flexibility in editing.
Clear Workspace - The "Clear Workspace" function under the "File" tab prompts users to save before clearing, ensuring that work is not lost accidentally. This helps maintain a clean workspace for new projects.
Save Photo to Device - The "Save" option allows users to choose the file name, location, and format for saving edited photos. A confirmation message enhances the user experience by confirming the action.
Quality - The application's clear display options, variety of editing tools, and reliable upload/download capabilities ensure a high-quality user experience.
Extensibility - By using the abstract class "Filter", the application is designed for easy expansion. Well-documented code enhances maintainability and future development.
Performance/Response Time - The efficient processing of user interactions and quick upload/save times demonstrate the application's optimal performance and responsiveness.
Reliability - Extensive testing and a structured approach to code organization ensure that the application's functionalities, like filtering, recoloring, resizing, and file handling, are reliable.
I conceived the initial idea for the photo application and took a leadership role in delegating tasks among team members. I managed our group communications and helped to maintain our project's deadlines.
I developed a Use Case Diagram and created the UML Class Diagram, defining the initial classes for the program while assisting team members with the diagram concepts. I developed the application's Photo interface and the UserPhoto class. I also assisted a team member with creating the .fxml file using Scene Builder, addressing challenges he faced. I developed and testing approximately 80% of the code.
I integrated the PhotoEditorGUI.fxml into the project and independently created and edited several classes, including UserPhoto, Photo, Filter, BlackAndWhiteFilter, GrayscaleFilter, RedFilter, BlueFilter, and GreenFilter. Additionally, I implemented several methods in the controller class.
For the end of the project, I authored the software architecture and design documentation, as well as the development process section and my project review. I also designed five updated user interface layouts.
We successfully created a GUI for our photo application.
To ensure the security of our applications, the Securian Financial Information Security team conducts weekly assessments to identify potential code vulnerabilities. As a developer, it is crucial to uphold security standards across all applications. My weekly responsibilities included reviewing the vulnerability report, identifying the appropriate updates for our dependencies, implementing those updates, and subsequently testing the code to identify and resolve any issues.
I acquired proficiency in using GitHub for version control, including the processes of pulling, pushing, and committing changes. Additionally, I learned how to manage program versions by posting to and pulling from JFrog/Artifactory. To successfully complete vulnerability tasks, I also developed the ability to interpret corporate code and effectively document my changes utilizing corporate resources.