Skip to content

Instantly share code, notes, and snippets.

@ivanchoff
ivanchoff / tinder.user.js
Created January 5, 2021 22:48 — forked from tajnymag/tinder.user.js
Tinder Deblur Userscript
// ==UserScript==
// @name Tinder Deblur
// @namespace Violentmonkey Scripts
// @match https://tinder.com/app/*
// @grant none
// @version 1.2
// @author Tajnymag
// @downloadURL https://gist.githubusercontent.com/Tajnymag/9de74305f9bb09aa940d26418bd508f1/raw/tinder.user.js
// @description Simple script using the official Tinde API to get clean photos of the users who liked you
// ==/UserScript==
@ivanchoff
ivanchoff / dijkstraOctave.m
Created September 14, 2015 05:31
implementation of dijkstra algorithm in octave
function[dist previo] = dijkstraOctave(Adj,inicio)
n = size(Adj,1);
nodos_visitados = 0;
dist(1:n) = inf;
visited(1:n) = 0;
previo(1:n) = -1;
Q(1:n) = inf;