An open API service providing repository metadata for many open source software ecosystems.

GitHub topics: patulo

SleekPanther/youtube-chronological-order

Watch all videos from a channel in chronological order (oldest to newest)

Language: JavaScript - Size: 10.3 MB - Last synced at: 14 days ago - Pushed at: 4 months ago - Stars: 16 - Forks: 3

SleekPanther/gpa-calculator

A GPA calculator in JavaFX attempting to use the Model View Controller (MVC) pattern

Language: Java - Size: 555 KB - Last synced at: 17 days ago - Pushed at: almost 7 years ago - Stars: 8 - Forks: 0

SleekPanther/reverse-delete-algorithm

Greedy Algorithm to find a minimum spanning tree in an undirected graph by deleting heaviest edges unless it would disconnect the graph

Language: Java - Size: 123 KB - Last synced at: about 2 months ago - Pushed at: over 7 years ago - Stars: 1 - Forks: 3

SleekPanther/load-balancing-problem-approximation-algorithm

Approximation Algorithm for the NP-Complete problem of balancing job loads on machines. Does not guarantee an optimal solution, but instead, a solution is within a factor of 1.5 of the optimal solution

Language: Java - Size: 388 KB - Last synced at: 21 days ago - Pushed at: almost 8 years ago - Stars: 4 - Forks: 1

SleekPanther/minimum-weighted-vertex-cover-approximation-algorithm

Approximation Algorithm for the NP-Complete problem of finding a vertex cover of minimum weight in a graph with weighted vertices. Guarantees an answers at most 2 times the optimal minimum weighted vertex cover

Language: Java - Size: 875 KB - Last synced at: 14 days ago - Pushed at: over 6 years ago - Stars: 8 - Forks: 2

SleekPanther/noah-patullo-repositories

A list of projects I've worked on. GitHub's organization is lacking in my opinion, so this serves as an index & root of all my work (I'm Noah Patullo, not Pattullo or Patulo. I have a unique name & this should help clarify who I am)

Size: 29.3 KB - Last synced at: about 2 months ago - Pushed at: over 1 year ago - Stars: 2 - Forks: 1

SleekPanther/uvm-blackboard-autofill-netid

Autofill NetID when logging into Blackboard & syncs across signed-in Chrome browsers

Language: JavaScript - Size: 9.31 MB - Last synced at: about 2 months ago - Pushed at: about 7 years ago - Stars: 2 - Forks: 0

SleekPanther/weighted-interval-scheduling

Weighted Interval Scheduling, the classic Dynamic Programming problem implemented in Java

Language: Java - Size: 1010 KB - Last synced at: about 2 months ago - Pushed at: almost 8 years ago - Stars: 1 - Forks: 1

SleekPanther/sequence-alignment

Sequence Alignment (Needleman–Wunsch Algorithm using Dynamic Programming) for aligning sequences (words, sentences, DNA etc.)

Language: Java - Size: 892 KB - Last synced at: 14 days ago - Pushed at: over 6 years ago - Stars: 5 - Forks: 3

SleekPanther/minimize-lateness

Greedy Algorithm to minimize lateness when scheduling jobs on a processor

Language: Java - Size: 408 KB - Last synced at: about 2 months ago - Pushed at: over 7 years ago - Stars: 0 - Forks: 1

SleekPanther/set-game

Algorithm to find possible sets in the game Set using an iterative implementation of n choose 3 for combinations

Language: Java - Size: 8.79 KB - Last synced at: about 2 months ago - Pushed at: over 7 years ago - Stars: 3 - Forks: 0

SleekPanther/binary-hexadecimal-conversion

Binary hexadecimal converter

Language: Python - Size: 6.84 KB - Last synced at: about 2 months ago - Pushed at: almost 8 years ago - Stars: 2 - Forks: 0

SleekPanther/circulation-with-demands-network-flow

Network Flow: Given a directed graph with edge capacities and vertex demands, is there a circulation of flow?

Language: Java - Size: 706 KB - Last synced at: 14 days ago - Pushed at: almost 8 years ago - Stars: 7 - Forks: 5

SleekPanther/php-magic-linking

PHP template allows linking to any folder or file without manually navigating up directories with ../

Language: PHP - Size: 70.3 KB - Last synced at: 14 days ago - Pushed at: about 8 years ago - Stars: 8 - Forks: 6

SleekPanther/bellman-ford

Shortest Paths from every vertex to a goal vertex allowing negative-weight edges (when Dijkstra's fails)

Language: Java - Size: 820 KB - Last synced at: about 2 months ago - Pushed at: almost 8 years ago - Stars: 1 - Forks: 0

SleekPanther/password-revealer-with-keyboard-shortcut

Reveal password fields with a keyboard shortcut or click of the Extension icon

Language: JavaScript - Size: 3.06 MB - Last synced at: about 2 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

SleekPanther/interval-scheduling

Greedy Algorithm to find the maximum number of mutually compatible jobs

Language: Java - Size: 657 KB - Last synced at: about 2 months ago - Pushed at: over 7 years ago - Stars: 4 - Forks: 0

SleekPanther/mastermind-game

Command line implementation of the board game Mastermind for a Software Engineering class

Language: Java - Size: 31.3 KB - Last synced at: about 2 months ago - Pushed at: about 7 years ago - Stars: 0 - Forks: 1

SleekPanther/topological-ordering

Finds a Topological Ordering of vertices in a Directed Acyclic Graph

Language: Java - Size: 261 KB - Last synced at: about 2 months ago - Pushed at: over 7 years ago - Stars: 0 - Forks: 0

SleekPanther/graph-strong-connectivity

Application of Breadth-First Search to see if a directed graph is Strongly Connected

Language: Java - Size: 170 KB - Last synced at: about 2 months ago - Pushed at: over 7 years ago - Stars: 0 - Forks: 0

SleekPanther/counting-inversions

Finds how similar 2 lists of rating are using the Divide and Conquer approach. Extension of MergeSort that actually displays the specific inversions as well as just counting the total number.

Language: Java - Size: 421 KB - Last synced at: about 2 months ago - Pushed at: almost 8 years ago - Stars: 0 - Forks: 1

SleekPanther/roxy

Redesign of existing movie theater website for CS148, Fall 2016, UVM

Language: HTML - Size: 1.65 MB - Last synced at: about 2 months ago - Pushed at: almost 8 years ago - Stars: 0 - Forks: 0

SleekPanther/checkbox-toggle-selection

Invert Selection of checkboxes or radio buttons in an HTML form

Language: HTML - Size: 409 KB - Last synced at: about 2 months ago - Pushed at: about 8 years ago - Stars: 1 - Forks: 0

SleekPanther/bipartite-testing

Algorithm to test if a given graph is Bipartite or not

Language: Java - Size: 601 KB - Last synced at: about 2 months ago - Pushed at: about 8 years ago - Stars: 0 - Forks: 1