Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    🍲 soup Minimalist yam soup

    ingredients: Onions Chili pepper Yam Carrot Water Cumin Ginger (powder spice) Coconut milk ################################ fry onions, add chili pepper and fry. peel and dice yam, carrot, add to pot(5 minutes). add water, cumin, ginger(powder spice), mix well. simmer 30 minutes. blend till...
  3. fukurou

    [MEDIA]

  4. fukurou

    👨‍💻 dev C++ port

    #include <map> #include <vector> #include <memory> public: Neuron() { for (int i = 1; i <= 5; ++i) { _defcons[i] = std::vector<std::shared_ptr<Algorithm>>(); } } void insertAlg(int priority, std::shared_ptr<Algorithm> alg) { if (priority > 0 &&...
  5. fukurou

    👨‍💻 dev C++ port

    #include <vector> #include <string> class Algorithm { private: std::vector<Mutatable*> algParts; public: // Constructor Algorithm(const std::vector<Mutatable*>& algParts) : algParts(algParts) {} // Getter for algParts const std::vector<Mutatable*>& getAlgParts() const {...
  6. fukurou

    👨‍💻 dev C++ port

    class GrimoireMemento { private: AbsDictionaryDB* absDictionaryDB; public: GrimoireMemento(AbsDictionaryDB* absDictionaryDB) : absDictionaryDB(absDictionaryDB) {} std::string simpleLoad(const std::string& key) { return absDictionaryDB->load(key); } void...
  7. fukurou

    👨‍💻 dev C++ port

    #include <iostream> #include <string> #include <vector> #include <typeinfo> #include <cxxabi.h> class APVerbatim : public Mutatable { private: std::vector<std::string> sentences; int at; public: APVerbatim(std::initializer_list<std::string> args) : Mutatable(), at(0) { if...
  8. fukurou

    👨‍💻 dev C++ port

    #include <iostream> #include <string> #include <typeinfo> #include <cxxabi.h> #include <algorithm> using namespace std; class AbsDictionaryDB { public: virtual std::string save(const std::string& key, const std::string& value) { // Returns action string (override me) return...
  9. fukurou

    [MEDIA]

  10. fukurou

    [MEDIA]

  11. fukurou

    [MEDIA]

  12. fukurou

    [MEDIA]

  13. fukurou

    [MEDIA]

  14. fukurou

    jizzduino

  15. fukurou

    jizzduino

    import serial import time import atexit class SerialReader: def __init__(self, port='COM3', baud_rate=9600, timeout=1): self.ser = serial.Serial(port, baud_rate, timeout=timeout) atexit.register(self.close) # Register the close method to be called on exit def...
  16. fukurou

    jizzduino

    import serial import time import atexit class SerialReader: def __init__(self, port='COM3', baud_rate=9600, timeout=1): self.ser = serial.Serial(port, baud_rate, timeout=timeout) atexit.register(self.close) # Register the close method to be called on exit def...
  17. fukurou

    jizzduino

    import serial import time class SerialReader: def __init__(self, port='COM3', baud_rate=9600, timeout=1): self.ser = serial.Serial(port, baud_rate, timeout=timeout) def read_serial_data(self, num_readings=10): readings = [] for _ in range(num_readings)...
  18. fukurou

    jizzduino

    import serial import time def read_serial_data(port='COM3', baud_rate=9600, num_readings=10, timeout=1): ser = serial.Serial(port, baud_rate, timeout=timeout) readings = [] for _ in range(num_readings): if ser.in_waiting > 0: line =...
  19. fukurou

    jizzduino

  20. fukurou

    [MEDIA]

Top