Search results

  1. fukurou

    blink and jizz loop

  2. fukurou

    Why DQ3 censorship may be a good thing

    I liked her sugar tits tho
  3. fukurou

    blink and jizz loop

    the Arduino only blinks the LED when it receives a command from the Python script. Arduino Code This code will wait for a command from the Python script to blink the LED: void setup() { // Initialize the built-in LED pin as an output pinMode(LED_BUILTIN, OUTPUT); // Start serial...
  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    atexit: a must have python code for Arduino interactions

    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...
  7. fukurou

    try posting

    good
  8. fukurou

    try posting

    @Artbyrobot
  9. fukurou

    project 2501

    # noinspection PyUnusedLocal def call_add_DLC_skills(brain: Brain): for file in os.listdir('.'): if file.endswith('.py') and 'DLC' in file: module_name = file[:-3] exec(f"import {module_name}") exec(f"{module_name}.add_DLC_skills(brain)")
  10. fukurou

    project 2501

    def call_add_DLC_skills(brain: Brain): for file in os.listdir('.'): if file.endswith('.py') and 'DLC' in file: module_name = file[:-3] exec(f"import {module_name}") exec(f"{module_name}.add_DLC_skills(brain)")
  11. fukurou

    [MEDIA]

  12. fukurou

    project 2501

  13. fukurou

    project 2501

    import os def call_helloworld_in_all_files(param:str): for file in os.listdir('.'): if file.endswith('.py') and 'DLC' in file: module_name = file[:-3] exec(f"import {module_name}") exec(f"{module_name}.helloworld('{param}')") if __name__ ==...
  14. fukurou

    [MEDIA]

  15. fukurou

    project 2501

    actually: class Modifier: def modify(self, obj): obj.value += 10 class MyObject: def __init__(self, value): self.value = value def __str__(self): return f"MyObject with value {self.value}" # Create instances my_obj = MyObject(5) modifier = Modifier()...
  16. fukurou

    👨‍💻 dev find where I used the class as an object all over my project

    axpy upgraded moving to next target!
  17. fukurou

    👨‍💻 dev find where I used the class as an object all over my project

    looks like C# and vb.net also has the timeutils cls with static methods
  18. fukurou

    [MEDIA]

Top