Search results

  1. owly

    [MEDIA]

  2. owly

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

  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. owly

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

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

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

    my_dict.pop('key', None)
  9. 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){...
  10. 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...
  11. owly

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

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

    [MEDIA]

  13. 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...
  14. 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 ""; } }
  15. 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) {...
  16. owly

    [MEDIA]

  17. owly

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

    public class ForcedLearn { // remembers key inputs because they start with keyword // also can dispense key inputs public String keyword = "say"; private LGFIFO<String> p1 = new LGFIFO<String>(); private RegexUtil ru = new RegexUtil(); private int queLimit = 5; public...
Top