Skip to content

Instantly share code, notes, and snippets.

@magnuspedro
magnuspedro / iframeBottomScroll
Created May 16, 2019 21:31
Detectar quando chegou no final do scroll do iframe
$("#iframe").ready(function() {
var iframe = document.getElementById("iframe").contentWindow;
$(iframe).scroll(function() {
if ($(iframe).scrollTop() + $(iframe).height() == $(iframe.document).innerHeight()) {
alert("Chegamos ao fim");
}
});
});
@magnuspedro
magnuspedro / config_polybar
Last active October 15, 2017 00:52
My polybar
;-------------------------------------------------
; ;
; Polybar config for my themes ;
; ;
; ;
;-------------------------------------------------
[colors]
;my_background = #0d000000
@magnuspedro
magnuspedro / loginUTFPR.py
Last active March 7, 2016 17:21
Auto Login UTFPR
#!/usr/bin/python3
import requests
import re
import logging
import sys
import os
import getpass
from os.path import expanduser
logging.captureWarnings(True)