- W01-Dec-Jan
- W02-Jan-Jan
- W03-Jan-Jan
- W04-Jan-Jan
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const puppeteer = require('puppeteer'); | |
const GIFEncoder = require('gifencoder'); | |
const PNG = require('png-js'); | |
function decode(png) { | |
return new Promise(r => {png.decode(pixels => r(pixels))}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
REQUIREMENTS: | |
You must use Facebook in the English language | |
HOW-TO: | |
First, open your FaceBook Activity Log Page (https://www.facebook.com/<YOUR PROFILE HANDLE>/allactivity?privacy_source=activity_log_top_menu&entry_point=www_top_menu_button#) | |
Then, select a Year and scroll to bottom until you reached "January" for this year. | |
Then, copy/paste the following code into the javascript console (F12) and press ENTER. | |
NOTES: | |
This will not delete Likes, only your posted content. | |
The current month is also in the scope to be removed since the page opens on it. |