Skip to content

Instantly share code, notes, and snippets.

View figloalds's full-sized avatar
🙂
Learning crazy new ways to build astoundingly fucking amazing applications.

Felype Rennan figloalds

🙂
Learning crazy new ways to build astoundingly fucking amazing applications.
  • SoftLeader Sistemas LTDA
  • Uberlândia - Brazil
View GitHub Profile
@e0ne
e0ne / simpleproxy.js
Created July 21, 2012 17:15
Simple proxy server on NodeJS
var http = require('http')
http.createServer(function(request, response){
var request_options = {
host: request.headers['host'],
port: 80,
path: request.url,
method: request.method
}
var proxy_request = http.request(request_options, function(proxy_response){
@callmeloureiro
callmeloureiro / comoSerChatoNoWhatsapp.js
Last active September 23, 2024 19:29
Como fazer alguém te responder no whatsapp
/*
Hoje iremos MUDAR a vida da pessoa que não te responde no whatsappp...
Que tal enviar mensagens pra ela até obter uma resposta?!
Sensacional não acha?! Mas, somos devs, correto?! Então vamos automatizar esse paranauê!
Para utilizar:
- Abra o web.whatsapp.com;
- Selecione a conversa que você quer;
- Abra o console e cole o código que está no gist;