Skip to content

Instantly share code, notes, and snippets.

javascript:oFooter.setSiteOption('ko_KR')
@limontec
limontec / NoBlurRespondeAi.js
Last active October 15, 2022 00:22 — forked from thihxm/NoBlurRespondeAi.js
Este gist foi desenvolvido com a intenção de estudar mais sobre sistemas de ofuscação web que rodam em ambientes client-side. Não me responsabilizo pelo uso indevido por outros para obter conteúdos que não tem acesso!
// ==UserScript==
// @name No Blur RespondeAí
// @namespace Violentmonkey Scripts
// @match *://*.respondeai.com.br/*
// @updateURL https://gist.github.com/limontec/cfcabd264ef068f59b17e512c9a6f963/raw/NoBlurRespondeAi.js
// @downloadURL https://gist.github.com/limontec/cfcabd264ef068f59b17e512c9a6f963/raw/NoBlurRespondeAi.js
// @run-at document-idle
// @grant none
// @version 2.6.7
// @author thihxm [fixed by limontec]

Keybase proof

I hereby claim:

  • I am limontec on github.
  • I am limontec (https://keybase.io/limontec) on keybase.
  • I have a public key whose fingerprint is 4687 AC6F 8C9C 8928 0FD8 78A7 430D E52D F56E 1677

To claim this, I am signing this object:

import os
import time
def measure_temp():
temp = os.popen("vcgencmd measure_temp").readline()
return (temp.replace("temp=",""))
while True:
print(measure_temp())
time.sleep(1)