Skip to content

Instantly share code, notes, and snippets.

View Kriyszig's full-sized avatar
🦀
Eventually, everything will run in the Browser

Prateek Nayak Kriyszig

🦀
Eventually, everything will run in the Browser
View GitHub Profile
@Kriyszig
Kriyszig / eventloop.md
Last active January 23, 2024 15:58
Google Summer of Code 2020 [Mozilla - Inline CSS Compatibility Warning] Work Product
@Kriyszig
Kriyszig / dijkstra.py
Created May 24, 2020 03:45
Implementation of Dijksra's Algorithm and a modified Dijkstra's Algorithm with Seidel's Heuristics to bound Dijkstra's computation to a localized neighborhood
import sys
class Graph:
def __init__(self, n):
self.n = n
self.graph = [[0 for j in range(n)] for i in range(n)]
def insertEdge(self, u, v, w):
self.graph[u - 1][v - 1] = w
if(w > 50):
@Kriyszig
Kriyszig / eventloop.md
Last active November 13, 2019 17:58
Google Summer of Code 2019 Workproduct
@Kriyszig
Kriyszig / untitled3.ipynb
Last active April 14, 2019 19:26
CholeskyDecomposition.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Kriyszig
Kriyszig / proposal.md
Last active March 27, 2019 05:47
Google Summer of Code Project Proposal

Project Proposal

Google Summer of Code 2019

Adding Linear Algebra ops to
the TensorFlow.js CPU back-end

TensorFlow
[TensorFlow.js]


Prateek Nayak
Email: lelouch.cpp@gmail.com