KO
|
EN
gitlite โ search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
KarmaInfinity
โ 28
Open GitHub โ
The original reddit upvote bot
Download README (.md)
Explore Similar Repositories
UpvoteControl
:
UIControl for up vote widgets found in Product Hunt and Reddit
issue-inspector
:
๐ Preview and jump to the most upvoted comments in github issues (which are probably solutions)
ChatGPTBrowserExtension
:
Get ChatGPT Within Your Favorite Search Engines, upvote good answers, provide feedback, save/cache answers for later
top-issues-action
:
Labels and displays the top-upvoted (i.e. ๐) issues and pull requests in your repository.
global-upvote
:
A progressive web app that provides top voted stories across the web, summarized and updated every sixty seconds.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
KarmaInfinity
?
Download (.md)
# KarmaInfinity ### What is KarmaInfinity? KarmaInfinity is reddit upvote bot. It uses a single proxy per account to mimic reality for each user.  ### What can it do? KarmaInfinity can login with a user, retrieve submissions of /u/ and /r/ pages, vote on submissions, and even cycle through a list of proxied accounts doing each of these actions. ### What's next? Current I would like to focus attention on creating a stable bot with single user upvoting, multiple user upvoting, and automatic account creation. All of these features will need to be implemented with realistic interaction as well as randomizing so that the accounts remain unbanned. ## How to contribute? To contribute please fork the repo and make all alterations on that fork. After your feature is ready to be merged into the main code, send a pull request! I will check over it and accept it if it works as wanted. ####_All code must be commented and well written_ Likewise, it would be a great help if jReddit (mentioned below) was better finished. If you'd prefer to help write a Java reddit wrapper, head over there and push some changes. Be sure to make the bot realistic and randomized! _Send in a pull request and I'll be happy to merge!_ ### Dependencies [jReddit](https://github.com/karan/jReddit) [JSON-simple](http://code.google.com/p/json-simple/) ### Examples of using the API - [More examples](https://github.com/karan/jReddit/blob/master/implemented_methods.md) I have implemented some of my own methods which can be found in Submission.java and Submissions.java Upvote every submission on the frontpage of a subreddit import im.goel.jreddit.submissions.Submission; import im.goel.jreddit.submissions.Submissions; import im.goel.jreddit.user.User; public final class Test { public static void main(String[] args) throws Exception { User user = new User("username", "password"); user.connect(); for (Submission submission : Submissions.getSubmissions("programming", Submissions.HOT, Submissions.FRONTPAGE, user)) { submission.upVote(); } } } Submit a link and self post import im.goel.jreddit.user.User; public final class Test { public static void main(String[] args) throws Exception { User user = new User("username", "password"); user.connect(); user.submitLink( "Oracle V Google judge is a programmer!", "http://www.i-programmer.info/news/193-android/4224-oracle-v-google-judge-is-a-programmer.html", "programming"); user.submitSelfPost("What's the difference between a duck?", "One of its legs are both the same!", "funny"); } } List all submissions made by user called USERNAME_OF_OTHER_USER import im.goel.jreddit.submissions.Submission; import im.goel.jreddit.user.User; /** * @author Benjamin Jakobus */ public final class Test { public static void main(String[] args) throws Exception { User user = new User("username", "password"); user.connect(); List<Submission> submissions = User.submissions("USERNAME_OF_OTHER_USER"); // To list hidden submissions, user User.hidden("..."); for (Submission s : submissions) { // Print info here } } } Send a message to another user import im.goel.jreddit.message.Messages; import im.goel.jreddit.user.User; public class ComposeTest { /** * @author Karan Goel */ public static void main(String[] args) { User user = null; username_of_recipient = "other_user"; try { user = new User("username", "password"); // Add your username and password user.connect(); } catch (Exception exception) { exception.printStackTrace(); } new Messages().compose(user, username_of_recipient, "this is the title", "the message", "", ""); } }