Search results

  1. owly

    java to swift 141223

    (?<=one).*?(?=four)
  2. owly

    java to swift 141223

    import Foundation class DiEngager: DiSkillV2 { private var burpsPerHour = 2 private var trgMinute = TrgMinute(0) private var skillToEngage = "unknown" private var draw = DrawRndDigits() private var burpMinutes = LGFIFO<Int>() private var pl = PlayGround()...
  3. owly

    java to swift 141223

    public class DiEngager extends DiSkillV2 { // makes the AI burp n times per hour at random times private int burpsPerHour = 2; private TrgMinute trgMinute = new TrgMinute(0); private String skillToEngage = "unknown"; private DrawRndDigits draw = new DrawRndDigits()...
  4. owly

    java to swift 141223

    public class DiEngager extends DiSkillV2 { // makes the AI burp n times per hour at random times private int burpsPerHour = 2; private TrgMinute trgMinute = new TrgMinute(0); private String skillToEngage = "unknown"; private DrawRndDigits draw = new DrawRndDigits()...
  5. owly

    java to swift 141223

    tight shit, tight shit
  6. owly

    java to swift 141223

    at least 3 not great not terrible
  7. owly

    java to swift 141223

    we be codin up this bitch!
  8. owly

    java to swift 141223

    import Foundation class DiTreater: DiSkillV2 { private var handshake = AXHandshake() var replies = Responder(responses: ["stop arguing", "just do it", "behave", "be a big boy and do it", "bad boy no more fussing", "i know best"]) var contextCmd = TrgArgue() func...
  9. owly

    java to swift 141223

    public class DiTreater extends DiSkillV2 { private AXHandshake handshake = new AXHandshake(); public Responder replies = new Responder("stop arguing", "just do it", "behave","be a big boy and do it","bad boy no more fussing","i know best"); public TrgArgue contextCmd = new...
  10. owly

    java to swift 141223

    public class DiCron extends DiSkillV2 { private String sound = "snore"; private Cron cron = new Cron("12:05",40,2);//Cron(String startTime, int minutes, int limit) // setters public DiCron setSound(String sound) { this.sound = sound; return this; } public...
  11. owly

    java to swift 141223

    tits in the mouth! and I'm not a biter!
  12. owly

    java to swift 141223

    public class DiMagic8Ball extends DiSkillV2 { public Magic8Ball magic8Ball = new Magic8Ball(); // skill toggle params: public AXContextCmd skillToggler = new AXContextCmd(); private Boolean isActive = true; public DiMagic8Ball() {...
  13. owly

    java to swift 141223

    public class DiTime extends DiSkillV2 { private PlayGround pl = new PlayGround(); @Override public void input(String ear, String skin, String eye) { switch(ear) { case "what is the time": setVerbatimAlg(4, pl.getCurrentTimeStamp())...
  14. owly

    java to swift 141223

    protected void setSimpleAlg(String... sayThis){ // based on the setVerbatimAlg method // build a simple output algorithm to speak string by string per think cycle // uses varargs param this.outAlg = this.diSkillUtils.simpleVerbatimAlgorithm(sayThis)...
  15. owly

    java to swift 141223

    class AXHandshake { private var trgTime = TrgTime() private var trgTolerance = TrgTolerance(10) private var shoutOut = AXShoutOut() private var user_name = "user" private var dripper = PercentDripper() init() { shoutOut.handshake = Responder("what", "yes", "i...
  16. owly

    java to swift 141223

    import Foundation class AXShoutOut { private var isActive: Bool = false let handshake = Responder() func activate() { isActive = true } func engage(ear: String) -> Bool { if ear.isEmpty { return false } if...
  17. owly

    java to swift 141223

    class Magic8Ball { private var questions = Responder() private var answers = Responder() func setQuestions(_ questions: Responder) { self.questions = questions } func setAnswers(_ answers: Responder) { self.answers = answers } func...
  18. owly

    java to swift 141223

    public class Magic8Ball { private Responder questions = new Responder(); private Responder answers = new Responder(); public void setQuestions(Responder questions) { this.questions = questions; } public void setAnswers(Responder answers) { this.answers =...
  19. owly

    java to swift 141223

    skills: GamificationP,N,DiEngager, DiBlabber, DiTime,dimagic8ball,ditreater, dicron AX:magic8ball,AXShoutout,AXHandshake LG: setsimplealg(diskillv2),pl(getcurrentmonthname) @fukurou
  20. owly

    lets dev and shit

    class GamificationN(DiSkillV2): def __init__(self, skill, rewardBank): self.axGamification = rewardBank.getAxGamification() self.cost = 3 self.skill = skill def setCost(self, cost): self.cost = cost return self def input(self, ear...
Top