Search results

  1. owly

    the brand new AXL category of auxiliary modules.

    the AXL class prefix stands for AuXiliary modules for Lower Chobits. basically this means language translation, encryption, decryption and reply decorations.
  2. owly

    and I wonder

    sicko :s8: sounds crazy enough to work tho
  3. owly

    πŸ‘¨β€πŸ’» dev c++ cheat sheet

    @fukurou
  4. owly

    [MEDIA]

  5. owly

    πŸ‘¨β€πŸ’» dev c++ cheat sheet

  6. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class TrgTime { String t = "null"; RegexUtil regexUtil = new RegexUtil(); PlayGround pl = new PlayGround(); private Boolean alarm = true; public void setTime(String v1){ t = regexUtil.extractRegex(enumRegexGrimoire.simpleTimeStamp,v1); } public Boolean...
  7. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class TrgSnooze extends TrGEV3{ // this boolean gate will return true per minute interval // max repeats times. private int repeats = 0; private int maxrepeats; //2 recomended private Boolean snooze = true; private int snoozeInterval = 5; private PlayGround...
  8. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class TrgParrot { // simulates a parrot chirp trigger mechanism // as such this trigger is off at night // in essence this trigger says: I am here, are you here? good. private TrgTolerance tolerance = new TrgTolerance(3); private Responder silencer = new...
  9. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class TrgMinute extends TrGEV3{ // trigger true at minute once per hour private int hour1 = -1; int minute; private Random rand = new Random(); private PlayGround pl = new PlayGround(); public TrgMinute() { minute = rand.nextInt(60); } public...
  10. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class SpiderSense { // enables event prediction private Boolean spiderSense = false; private UniqueItemSizeLimitedPriorityQueue events = new UniqueItemSizeLimitedPriorityQueue(); private UniqueItemSizeLimitedPriorityQueue alerts = new UniqueItemSizeLimitedPriorityQueue()...
  11. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    my_dict.pop('key', None)
  12. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class Catche { private Hashtable<String,String> dic1 = new Hashtable<>(); private int limit = 3; public void setLimit(int limit) { this.limit = limit; } public int getLimit() { return limit; } public Boolean containsKey(String str1){...
  13. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class SkillHubAlgDispenser { // super class to output an algorithm out of a selection of skills // engage the hub with dispenseAlg and return the value to outAlg attribute // of the containing skill (which houses the skill hub) // this module enables using a selection...
  14. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    UniqueItemSizeLimitedPriorityQueue seems to mug RepeatedElements so we don't need the later
  15. owly

    [MEDIA]

  16. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class Map { private Hashtable<String,String> pointDescription = new Hashtable<>(); private Hashtable<String,String> descriptionPoint = new Hashtable<>(); private LGPointInt currentPosition = new LGPointInt(); private RegexUtil regexUtil = new RegexUtil(); public void...
  17. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class InputFilter { // filter out non-relevant input // or filter in relevant data public String filter(String ear, String skin, String eye){ // override me return ""; } }
  18. owly

    πŸ‘¨β€πŸ’» dev AXPython pt2

    public class EV3DaisyChainAndMode extends TrGEV3{ // this class connects several logic gates triggers together private ArrayList<TrGEV3> trgGates = new ArrayList<TrGEV3>(); public EV3DaisyChainAndMode(TrGEV3... gates) { for (TrGEV3 gate : gates) {...
Top