Search results

  1. owly

    👨‍💻 dev AXPython pt2

  2. 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...
  3. 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 ""; } }
  4. owly

    👨‍💻 dev AXPython pt2

  5. 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) {...
  6. owly

    [MEDIA]

  7. owly

    👨‍💻 dev AXPython pt2

  8. 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...
  9. owly

    👨‍💻 dev AXPython pt2

    import java.util.ArrayList; import java.util.Random; public class Responder { // simple random response dispenser private ArrayList<String> responses = new ArrayList<String>(); private Random rand = new Random(); public Responder(String... replies) { for (int i = 0; i <...
  10. owly

    👨‍💻 dev AXPython pt2

    public class Cycler { // cycles through numbers limit to 0 non-stop private int cycler = 0; private int limit; public Cycler(int limit) { super(); this.limit = limit; cycler = limit; } public int getLimit() { return limit; }...
  11. owly

    👨‍💻 dev AXPython pt2

    public class CombinatoricalUtils { public ArrayList<String> result; public ArrayList<String> getResult() { return result; } private void generatePermutations(ArrayList<ArrayList<String>> lists, List<String> result, int depth, String current) { if (depth ==...
  12. owly

    👨‍💻 dev AXPython pt2

    100 +1 AlgDispenser +2 AXFriend +3 AXLearnability +4 AXPassword +5 ButtonEngager +6 Catche +7 CombinatoricalUtils +8 Cycler +9 DrawRnd +10 EmoDetectorCurious +11 EmoDetectorHappy +12 EmoDetectorStressed +13 ForcedLearn +14 InputFilter +15 LGTypeConverter +16 Map +17 Responder +18...
  13. owly

    AXPython

    https://medium.com/@steveYeah/using-generics-in-python-99010e5056eb
  14. owly

    AXPython

    this is the priority Q ''' PRIORITYQUEUE CLASS ''' # A simple implementation of Priority Queue # using Queue. class PriorityQueue(object): def __init__(self): self.queue = [] def __str__(self): return ' '.join([str(i) for i in self.queue]) # for checking if the...
  15. owly

    AXPython

  16. owly

    AXPython

    package AXJava; public class AXLearnability { private Boolean algSent = false; // problems that may result because of the last deployed algorithm: public UniqueItemSizeLimitedPriorityQueue defcons = new UniqueItemSizeLimitedPriorityQueue();// default size = 5 // major chaotic...
  17. owly

    AXPython

    :s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72::s72:
  18. owly

    AXPython

  19. owly

    AXPython

    package AXJava; import LivinGrimoire.Algorithm; import LivinGrimoire.DISkillUtils; public class AXFriend { private String myName = "chi"; // default name private String friend_name = "null"; private Boolean needsFriend = true; private DISkillUtils diSkillUtils = new...
  20. owly

    AXPython

    I want to translate the java auxiliary modules into python. because they are so cool. also the Pi uses python. @fukurou
Top