Skip to content

Instantly share code, notes, and snippets.

View mariacamilarg's full-sized avatar
:octocat:
Studying

Maria Camila Remolina-Gutiérrez mariacamilarg

:octocat:
Studying
View GitHub Profile
@rnbguy
rnbguy / wificity_login.sh
Last active September 8, 2021 09:42
bypass WifiCity(CIUP WiFi) Captive Portal
#!/bin/bash
# https://wiki.archlinux.org/index.php/NetworkManager#Captive_portals
# README : make sure these binaries are available on your distribution.
# curl sed
login_wificity() {
# wificity authentication server
authserver="http://10.254.0.254:1000"
@DiegoRBaquero
DiegoRBaquero / gist:24e2e29e7be40905ad3f083bfb79ee69
Last active November 9, 2017 00:18
Calificación rápida de cursos en Banner
let calificacion = 4 // Cambiar por el valor deseado {1,2,3,4}
for(let i = 1; i <=33; i++) { if(i === 17) continue; $(`input[value="${i}-${calificacion}"]`).click() }
// A C / C++ program for Bellman-Ford's single source shortest path algorithm.
// http://www.geeksforgeeks.org/dynamic-programming-set-23-bellman-ford-algorithm/
/* input
10 18
0 1 3
0 2 5
0 4 4
1 4 1
@rduplain
rduplain / app.py
Created January 19, 2012 17:28
Plot a PNG using matplotlib in a web request, using Flask.
"Plot a PNG using matplotlib in a web request, using Flask."
# Install dependencies, preferably in a virtualenv:
#
# pip install flask matplotlib
#
# Run the development server:
#
# python app.py
#