Skip to content

Instantly share code, notes, and snippets.

View leuthier's full-sized avatar
📱
Working with Motorola devices since 2017

Victor Leuthier leuthier

📱
Working with Motorola devices since 2017
View GitHub Profile
@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active May 6, 2024 22:28
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }
@helloworldedward
helloworldedward / README.md
Last active June 16, 2016 02:34 — forked from teffalump/README.md
OpenWRT adblock implementation

Você recebe um alerta sobre seu celular está infectado com algum malware lhe levando para um link externo para instalar um aplicativo que supostamente está infectado ou quando vai entrar em um site está carregado .de propagandas irritantes? Vamos acabar com o seu problema;

Changelog:

  • Adição de atualização automática;
  • Menu de instalação, desinstalação, e atualizações;
  • Correção de bugs;
  • Novo repositório de hosts (by StevenBlack @ https://github.com/StevenBlack);
  • Tradução para o Português-Brasil;
  • Adicionados Hosts ads do site Folha, YouTube, Spotify.
@fmasanori
fmasanori / hackproxy.py
Created July 3, 2015 13:41
Set HTTP_PROXY
import urllib.request as req
proxy = req.ProxyHandler({'http': r'http://user:password@ip:port'})
auth = req.HTTPBasicAuthHandler()
opener = req.build_opener(proxy, auth, req.HTTPHandler)
req.install_opener(opener)
@alexandre
alexandre / restful_python_ops.md
Last active June 6, 2022 19:08
Algumas opções em Python para criar APIs Restful