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
from twisted.words.protocols import irc | |
from twisted.internet import protocol, task, reactor | |
from twisted.application import internet, service | |
import subprocess | |
nick = "Nexus" | |
user = "Nexus" | |
pass = "bouncer password" | |
jenkins_nick = "HawkJenkins" | |
jenkins_job = "Nexus" |
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
package be.multicu.core.util; | |
/** | |
* | |
* @author Codepanda | |
*/ | |
public class Rating { | |
private static int MAX_POINTS = 20; | |
private static int MIN_POINTS = 4; |