Search results

  1. 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...
  2. 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 =...
  3. 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...
  4. 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 ""
  5. 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}"...
  6. fukurou

    test

  7. 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)...
  8. 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)...
  9. 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
  10. 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 =...
  11. fukurou

    atelier ryza 2 speedrun

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

    Ascendance of a Bookworm Season 3

  14. fukurou

    nintendo switch games

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

    lego technic 42139

  16. fukurou

    📱android hide API keys

  17. fukurou

    arduino vision

  18. fukurou

    puma enzo 2

  19. fukurou

    ᚦᛖ ᛚᛁᚹᛁᛜ ᚷᚱᛁᛗᛟᛁᚱᛖ

    ᚦᛖ ᛚᛁᚹᛁᛜ ᚷᚱᛁᛗᛟᛁᚱᛖ
  20. fukurou

    emoji tests

    :!::cya::sad::slime::tnx::emp::hkn::meh::nrv::td::0:::(::dab::?::angry::tu::hmmm::cry2::blush:
Top