Noah Foley (@noahfoe)

Top repositories

1

texas_real_state

A Real Estate app made with Flutter for my Software Engineering Project class at Texas State University, hence the name, Texas Real State.
Dart
8
star
2

flutter-idle-clicker-game

Incremental clicker game created in Flutter
Dart
2
star
3

AutoEmailsInPython

My professor for my online summer class required us to send him an email for participation if we "participated" during the lecture (i.e. asking/answering questions, typing in zoom chat, etc). I got a little tired of copy and pasting the email everyday, sometimes forgetting to change the date and having to follow up with an extra email correcting the date (he made us put the date in the email, even though emails show the date they were sent on them). So, my solution was automating my outlook email to send him an email everyday. All i have to do now is press one button and my professor gets an email sent to him.
Python
2
star
4

MIPS-Assembly-Recursive-Exponential

This program will find a^b, such that 1<=a<=21 and 1<=b<=7. This is written in MIPS Assembly Language and uses recursion to compute the result
Assembly
1
star
5

Non-Recursive-Factorial-in-MIPS-Assembly

This program finds the factorial of a user input of n (1 - 10), and then outputs it to the console.
Assembly
1
star
6

mac-mood-app

This is my first React Native project. The app asks you which mood you are in, and then gives the name of a random song that evokes that mood
JavaScript
1
star
7

Sieve-of-Erathosthenes-Algorithm

Finds all prime numbers from 0 to n (user given command line argument) and outputs it to a .txt file (also given through command line argument)
HTML
1
star
8

DiscordStockPriceCheckerBot

This discord bot/webhook will add a message to a specific discord channel telling you the new price of McDonald's stock every time the stock changes price!
Python
1
star
9

Java-Binary-Tree

Implementation of Binary Search Tree in Java, with recursive InOrder walk implementation
Java
1
star
10

Sudoku-Solver

This program will solve any Sudoku board almost instantly using a backtracking algorithm
Python
1
star
11

Pacman-in-Pygame

Remake of Pacman in Python using the Pygame library
Python
1
star
12

Game-of-Life

Conway's Game of Life created with React
HTML
1
star
13

covid19-tracker-website

This website was made with React and it tracks the amount of Infected, Recovered, and Deaths caused from Coronavirus.
JavaScript
1
star
14

Order-Dominos-With-Python

This program uses the pizzapi for Dominos to allow you to place a Dominos order
Python
1
star
15

Matroid-Theory-Project

This program check if a set satisfies Matroid Theory. This Project uses the Itertools library
Python
1
star
16

A-Star-Pathfinding-Visualization-Project

[Not Complete] A-Star Pathfinding Algorithm
Python
1
star
17

Resume-Website-in-Python

This is my first website and it double as my resume! I made this in Python/Django/HTML
HTML
1
star
18

TicTacToe

TicTacToe in Python. This is my first program I've written that creates AI (the computers moves)
Python
1
star
19

InstagramBot

Find out who isn't following you back on Instagram with this Python script
Python
1
star
20

noahfoe.github.io

This is my fully responsive portfolio website built with Flutter
JavaScript
1
star
21

Recursive-Exponent-Using-a-Multiplication-Recursive-Function-in-MIPS

𝑅𝑚𝑢𝑙𝑡(𝑎, 𝑏) = { 𝑎 if 𝑏 = 1 𝑎 + 𝑅𝑚𝑢𝑙𝑡(𝑎, 𝑏 − −) If 1 < 𝑏 𝑅𝑒𝑥𝑝(𝑎, 𝑏) = { 𝑎 if 𝑏 = 1 𝑅𝑚𝑢𝑙𝑡(𝑎, 𝑅𝑒𝑥𝑝(𝑎, 𝑏 − −)) if 1 < 𝑏
Assembly
1
star
22

Machine-Learning-Flappy-Bird-AI

Starts with a population size of 50, then uses NEAT framework inside of Python to create a neural network (3 inputs: the birds y position, the top pipes position, and the bottom pipes position. 1 output: jump/dont jump.) that takes the best birds of each generation, and breeds them to create 50 new, smarter, birds. usually after 2 or 3 generations, the program will run infinity because the bird has mastered when to jump and when not to jump
Python
1
star
23

Min-or-Max-of-MIPS-Array

Finds either the minimum or maximum value in an array. Written in MIPS Assembly Language
Assembly
1
star