Skip to content

Instantly share code, notes, and snippets.

View rafaelcanovas's full-sized avatar

Rafael Canovas rafaelcanovas

  • Indaband
  • São Paulo, SP - Brazil
  • 13:57 (UTC -03:00)
View GitHub Profile
@leo-isso
leo-isso / facebook_comment_script.js
Last active January 15, 2019 20:31
Looping comments on Facebook with timeout (so you don't get banned)
let randomString = () => Math.random().toString(36).substring(7)
let delay = 7000
let initialTimer = 7000
let loops = 3500
fetchData = () => {
/**
* COPY THE FETCH HERE
* IDENTIFY THE TEST STRING
* OVERWRITE IT WITH THE randomString()
@toolmantim
toolmantim / Makefile
Last active December 5, 2022 23:14
An example of using Make instead of Grunt for fast, simple and maintainable front-end asset compilation.
# A simple Makefile alternative to using Grunt for your static asset compilation
#
## Usage
#
# $ npm install
#
# And then you can run various commands:
#
# $ make # compile files that need compiling
# $ make clean all # remove target files and recompile from scratch