Pinned Repositories
100-Days-of-Code-Python
Try the 100 Days of Code Python Challenge on Udemy by Angela Yu for youself!
AlgoExpert
Analyzing-More-CSV-Files-with-Python
This program reads, parses analyzes CSV files from IMDB to find the highest grossing actors, films, etc...
Ascending-Sort-with-Python
Executes an ascending sort algorithm with T(n) =(n(n-1))/2 and a complexity of O(n^2)
Babylonian-Algorithm
A program that computes the square root of a given x using the Babylonian Algorithm
CPU-Scheduling-Algorithms-in-Python
FCFS, SJF, Round Robin and MLFQ
Data-Analysis-with-Python
Modern data analysis with Python packages such as pandas, matplotlib, seaborn, numpy, and more.
Data-Structures-and-Algorithms-Practice
A collection of problems to train algorithmic thinking while developing programming skills.
Principles-of-Software-Engineering-Academic-Project
Python_Automation_Practice
DanielMevs's Repositories
DanielMevs/Jenkinsfile-Practice
This repo is dedicated to connecting jenkins to github.
DanielMevs/practice-it-python-data-structs-2486182
Practice It: Python Data Structures
DanielMevs/machine-learning-with-python-logistic-regression-3211129
This is a LinkedIn Learning repo for Machine Learning with Python: Logistic Regeression.
DanielMevs/Combinations-Vs.-Permutations-in-Java
This example illustrates the difference between combinations and permutations using the problem, "How many ways are there to arrange a hand of 5 cards out of a standard 52 card deck?"
DanielMevs/Fizz-Buzz-in-Java
My take on Fizz Buzz.
DanielMevs/Remove-Character-Duplicates-in-String
My remove character duplicates in a String with linked lists.
DanielMevs/Font-Size-App
An app to increase or decrease the font size of a paragraph with buttons
DanielMevs/Fizz-Buzz-in-React
Install node. Then do an npm install. And then npm start
DanielMevs/Random-In-Python
DanielMevs/OOP-in-C-Sharp
DanielMevs/AlgoExpert
DanielMevs/Messaging-App-Using-Sockets
This example demonstrates polling and streaming in action. If in polling mode, the client will make a request at a set interval to the server, and receive the response accordingly. A socket is a file that lives on your computer that your computer can write to and read from to communicate with another computer. A server will push data through this open, long-lived connection with the socket, creating an instant, 'live' experience. This process is known as streaming and can remedy the server-load created by polling, especially at large scale (use-case should be considered).
DanielMevs/Leader-Election-in-Python
Leader election: The process by which nodes in a cluster (for instance, servers in a set of servers) elect a so-called "leader" amongst them, responsible for the primary operations of the service that these nodes support. When correctly implemented, leader election guarantees that all nodes in the cluster know which one is the leader at any given time and can elect a new leader if the leader dies for whatever reason.
DanielMevs/Dates-and-Time-in-Python
This repository explores ways of working with times and dates in Python.
DanielMevs/markdown-portfolio
DanielMevs/HTML-Parsing-Files-OS-and-more-in-Python
The following code examples are from a Python course sponsored by LinkedIn. Course can be found at: https://www.linkedin.com/learning/learning-python/learning-python
DanielMevs/Quick-Heap-and-Insertion-Sort-Runtime-Comparison-in-CPP
Analyzes the runtime of quicksort(the fastest with best case complexity O(nlogn)), heapsort(the second fastest with worst case complexity nlogn) and insertion sort(BY FAR the slowest with best case O(n) worst case O(n^2) complexity. Runtime.cpp is the source for data analsis. Python files included
DanielMevs/Heap-Sort
Python and C++ Implementation of heap-sort with a runtime complexity of O(nlog(n))
DanielMevs/Stochastic-Models
repo dedicated to exercises in my stochastic models class
DanielMevs/Fun-With-Matrices-in-Python
A repository dedicated to showcasing applications of Matrix Theory computed in Python
DanielMevs/Principles-of-Software-Engineering-Academic-Project
DanielMevs/Babylonian-Algorithm
A program that computes the square root of a given x using the Babylonian Algorithm
DanielMevs/Binomial-Coefficients-and-Pascals-Triangle-Properties-in-Python
Contains various proofs and properties about Pascal's triangle
DanielMevs/Computing-Series-Iteratively-in-Python
DanielMevs/Integer-Programming-in-Python
DanielMevs/python_generators_map
DanielMevs/Riemann-Sum
Calculates the right left and midpoint rieman sums given an interval, size of subinterval, and function
DanielMevs/Quick-Sort
Quick Sort algorithm implemented recursively with C++ and Python (although with different approaches). Quick sort has a runtime complexity of O(n^(2)) and best case O(nlogn)
DanielMevs/Insertion-Sort
Python and C++ Insertion Sort implementation with a compexity of O(n^(2))
DanielMevs/Cantor-Set-in-Python
Cantor Set generator in python