Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View GermanHoyos's full-sized avatar
😋
Coding!

German Adrian Hoyos GermanHoyos

😋
Coding!
View GitHub Profile
GERMAN ADRIAN HOYOS
Palm Bay FL · 321-890-5685
Hoyos.A.German@gmail.com · www.linkedin.com/in/adrian-h-81a32615b
Git Hub Repos = https://github.com/GermanHoyos?tab=repositories
Portfolio Website = https://germanhoyos.github.io/My-Portfolio/
I am a new graduate software engineer with experience in .NET, C#, C++, C and web-based JavaScript applications. Skilled in troubleshooting and problem-solving, with a passion for coding. Certified in ITIL Foundation Level, CompTIA A+, CompTIA Project+, and various J-standard electronics certificates. Seeking an entry-level software engineer position to utilize and grow my skills.
CODING PROJECTS
JAVASCRIPT / WEB DEVELOPMENT TECHNOLOGY
• Created an AngularJS web application hosted on Google’s Firebase. This project demonstrates API connection to a GitHub .raw file which allows the application to load comma separated values in regard to various Pokémon statistics. Also, this project demonstrates the use of AngularJS’s service module capabilities which was used for the HT
@GermanHoyos
GermanHoyos / MainPage.cs
Created January 27, 2023 01:09
Formating XAML Page
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="DegreePlanner.MainPage">
<StackLayout>
<Frame BackgroundColor="#2196F3" Padding="0" CornerRadius="0">
<Label Text="WGU Degree Planner" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/>
</Frame>
<Grid RowSpacing="0" ColumnSpacing="0">
<!--
CODED BY: GERMAN HOYOS
EMAIL: german.hoyos@l3harris.com
-->
<!DOCTYPE html>
<html>
<head>
<style>
body {
@GermanHoyos
GermanHoyos / PointerExperiment.cpp
Created September 19, 2022 17:22
Working with pointers in C++
#include <iostream>
#include <string>
#include <stdio.h>
using namespace std;
int main() {
//*************************************************************
class Student { //*********************************************
@GermanHoyos
GermanHoyos / Pointer_Array.cpp
Created September 15, 2022 23:18
Figuring out how to make and use pointer arrays to manipulate data from other arrays.
#include <iostream>
#include <string>
using namespace std;
int main() {
//string array to be modified:
string strArray[5] = {"A1,stringOne","A2,stringTwo","A3,stringThree","A4,string four","A5,stringFive"};
//console out the address and value in each index
@GermanHoyos
GermanHoyos / UnitCircle.js
Created February 22, 2022 00:27
Starter code for displaying a unit circle in html canvas
console.log("Base_Unit_Circle");
var canvas = document.querySelector("canvas");
var c = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
let up = false;
let down = false;
let left = false;
@GermanHoyos
GermanHoyos / DynamicArrays.cpp
Created January 13, 2022 01:27
Use a dynamic array to sort information in C++
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
using namespace std;
@GermanHoyos
GermanHoyos / ReArrangeScores.cpp
Created January 13, 2022 01:25
Use arrays to re arrange scores highest to lowest in C++
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
#include <sstream>
@GermanHoyos
GermanHoyos / ScoreGrades.cpp
Created January 13, 2022 01:22
Program to grade scores from a file C++
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
using namespace std;
@GermanHoyos
GermanHoyos / RemoveVowels(STAR).cpp
Created January 13, 2022 01:20
Remove vowels from strings in C++
#include <iostream>
#include <string>
using namespace std;
string usrInp;
string scan;
string newStr;
string transfer;