Search results

  1. fukurou

    🧵 3d poppy humanoid robot

    https://cults3d.com/en/3d-model/gadget/poppy-humanoid
  2. fukurou

    ⚡ arduino PID formula

    PID = P + I + D err = setpoint-processValue P = K(err) reset = reset + k/tau_i*err I = reset //once err changes direction or zero reset =0 D = K/tau_i*(error-lastError); lastErr = err; K : gain : this is twicked K/tau_i : can also be twicled for optimal performance tau_i : second per repeat...
  3. fukurou

    zerotimegate add explicit vars

    ''' --------------- ZEROTIMEGATE --------------- ''' import time import datetime from datetime import timedelta ''' ZEROTIMEGATE CLASS ''' class ZeroTimeGate: # a gate that only opens x minutes after it has been set def __init__(self, minutes) -> None: self.pause = 1...
  4. fukurou

    oh this ?

    public void open(int minutes) { Date now = new Date(); openedGate = addMinutesToJavaUtilDate(now, minutes); } in java it is an inferred this actually so the program reads it as public void open(int minutes) { Date now = new Date(); this.openedGate =...
  5. fukurou

    current state regexutil

    ''' ----------------- REGEXUTIL ---------------- ''' import re from typing import Match, Pattern from collections import Counter from math import sqrt class Point: def __init__(self, x_init, y_init): self.x = x_init self.y = y_init def shift(self, x, y): self.x...
  6. fukurou

    numberRegex fixed

    def numberRegex(self, str2Check: str) -> str: theRegex = r"[-+]?[0-9]*[.,][0-9]*" list1: list[str] = [] regexMatcher = re.search(theRegex, str2Check) if (regexMatcher != None): return regexMatcher.group(0).strip() return ""
  7. fukurou

    addressing issues

    continue work from this code as many errors were modified : use explicit variables see line 226 numberRegex("hello-789.998world")) # err : doesn't return decimal value (should be -789.998) print("The regexChecker2 method should return ?: ", regex.regexChecker2(r"[-+]?[0-9]{1,13}"...
  8. fukurou

    test

  9. fukurou

    RegexUtil pointRegex example

    import re from math import sqrt class Point: def __init__(self, x_init, y_init): self.x = x_init self.y = y_init def shift(self, x, y): self.x += x self.y += y def __repr__(self): return "".join(["Point(", str(self.x), ",", str(self.y)...
  10. fukurou

    hmm

    import re from math import sqrt class Point: def __init__(self,x_init,y_init): self.x = x_init self.y = y_init def shift(self, x, y): self.x += x self.y += y def __repr__(self): return "".join(["Point(", str(self.x), ",", str(self.y)...
  11. fukurou

    uma musume app

    this game is region blocked so you probably cant see it on your app store you need to DL an app called taptap 1st than DL uma musume pretty derby from there @ZORO
  12. fukurou

    pointRegex

    public Point pointRegex(String str2Check) { // "[-+]?[0-9]{1,13}(\\.[0-9]*)?" for double numbers String theRegex = "[-+]?[0-9]{1,13}"; Point result = new Point(0, 0); ArrayList<String> list = new ArrayList<String>(); Pattern checkRegex =...
  13. fukurou

    atelier ryza 2 speedrun

  14. fukurou

    👨‍💻 dev sell your livingrimoire skill

    post a demo and a price, if it is good maybe someone, including me, will buy it. a skill for the living grimoire or some overall beefup
  15. fukurou

    Ascendance of a Bookworm Season 3

  16. fukurou

    nintendo switch games

    Metal Slug Tactics Marvel's Midnight Suns Wreckfest Review falconeer
  17. fukurou

    lego technic 42139

  18. fukurou

    📱android hide API keys

  19. fukurou

    arduino vision

  20. fukurou

    puma enzo 2

Top