Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/todd-a-jacobs/so-comment-hellban
Calculator for Stack Overflow's Comment-Hellban Algorithm
https://github.com/todd-a-jacobs/so-comment-hellban
Last synced: about 2 months ago
JSON representation
Calculator for Stack Overflow's Comment-Hellban Algorithm
- Host: GitHub
- URL: https://github.com/todd-a-jacobs/so-comment-hellban
- Owner: todd-a-jacobs
- License: gpl-3.0
- Created: 2012-06-08T19:13:18.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-08T19:39:04.000Z (over 12 years ago)
- Last Synced: 2024-10-31T13:39:50.579Z (2 months ago)
- Language: Ruby
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stack Overflow Comment-Hellban Calculator
## Copyright and Licensing
### Copyright Notice
The copyright for the software, documentation, and associated files are
held by the author.Copyright 2012 Todd A. Jacobs
All rights reserved.The AUTHORS file is also included in the source tree.
### Software License
![GPLv3 Logo](http://www.gnu.org/graphics/gplv3-88x31.png)
The software is licensed under the
[GPLv3](http://www.gnu.org/copyleft/gpl.html). The LICENSE is also
included in the source tree.### README License
![Creative Commons BY-NC-SA
Logo](http://i.creativecommons.org/l/by-nc-sa/3.0/us/88x31.png)This README is licensed under the [Creative Commons
Attribution-NonCommercial-ShareAlike 3.0 United States
License](http://creativecommons.org/licenses/by-nc-sa/3.0/us/).## Purpose
This is a calculator for determining how close a user is to being
comment-hellbanned on Stack Overflow. You can find your flag counts at
http://stackoverflow.com/users/flag-summary/.## Caveats
- The flag weight calculation is subject to change, so don't bet the
farm on it.- The flag counts are only visible to logged in users, and (generally)
only your own flag counts. Without authentication, this calculator
can't scrape the values for you; you have to enter them on the command
line. Patches welcome.## Supported Ruby Versions
- The software was tested against Ruby 1.9.3-p194.
- Ruby 1.8.x is unsupported.## Usage
so-comment-hellban
## Examples
These are examples of what you might see when running the tool from the
command line. Runtime results may vary.With 10 "declined" flags and 90 "helpful" flags:
$ so-comment-hellban 10 90
# Stack Overflow Comment-Hellban Calculator- Current Flag Weight: 90
- Hellban Status: You aren't banned...yet.With 11 "declined" flags and 1 "helpful" flag:
$ so-comment-hellban 11 1
# Stack Overflow Comment-Hellban Calculator- Current Flag Weight: 0
- Hellban Status: You are hellbanned.See http://meta.stackoverflow.com/questions/82445/comment-hellban
for more information.----
[Project Home Page](https://github.com/CodeGnome/so-comment-hellban)