A curated list of tools. The goal of this gist is to help students all over the world with:
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
/* | |
Steps to unfollow: | |
------------------ | |
1. Load all of your pinterest followers by scrolling down. | |
2. Run the below "Minified Version" of "unfollow.js" in browser's console. | |
*/ | |
// Minified Version | |
$(".FollowButton.dim").each(function(){$(this).click();}); |
Open Terminal
. Type javac -version
and check your current JDK version. If you seem to have javac 1.7.*
JDK version, you can skip this section.
- Open
Termianl
. - Type
sudo apt-get install openjdk-7-jdk
.
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
/* | |
Steps to unfollow: | |
------------------ | |
1. Load all of your twitter followers by scrolling down. | |
2. Run the below "Minified Version" of "unfollow.js" in browser's console. | |
*/ | |
// Minified Version | |
$(".user-actions-follow-button.js-follow-btn.follow-button.btn").each(function(){$(this).click();}); |