Search results

  1. fukurou

    golem build

    @ZORO
  2. fukurou

    golem build

    Darkrai @ Chople Berry Ability: Bad Dreams Shiny: Yes Tera Type: Dark EVs: 252 HP / 4 Def / 252 Spe Timid Nature - Hypnosis - Dream Eater - Dark Pulse - Calm Mind
  3. fukurou

    golem build

    megumin (Golem) (F) @ Choice Band Ability: Sturdy Shiny: Yes Tera Type: Steel EVs: 252 HP / 252 Atk Adamant Nature - Earthquake - Explosion - Gyro Ball - Facade
  4. fukurou

    golem build

    Torkoal (M) @ Heat Rock Ability: Drought Tera Type: Steel EVs: 252 HP / 252 Atk Brave Nature IVs: 0 Spe - Gyro Ball - Yawn - Fissure - Stealth Rock
  5. fukurou

    golem build

    Ogerpon (F) @ Focus Sash Ability: Defiant Tera Type: Grass EVs: 4 HP / 252 Atk / 252 Spe Jolly Nature - Ivy Cudgel - Solar Blade - Swords Dance - Encore
  6. fukurou

    golem build

    @ZORO
  7. fukurou

    golem build

    gollum (Golem) (M) @ Assault Vest Ability: Rock Head Tera Type: Normal EVs: 4 HP / 252 Atk / 252 SpD Careful Nature - Earthquake - Explosion - Fire Punch - Double-Edge
  8. fukurou

    [MEDIA]

  9. fukurou

    👨‍💻 dev DiMisser

    class DiMisser(DiSkillV2): def __init__(self): self._pl: PlayGround = PlayGround() self._cron: Cron = Cron("15:00",50,2) self._responder: Responder = Responder("welcome", "i have missed you", "welcome back") super().__init__() # Override def...
  10. fukurou

    👨‍💻 dev DiMisser

    class DiMisser(DiSkillV2): def __init__(self): self._pl: PlayGround = PlayGround() self._cron: Cron = Cron("15:00",2,2) self._responder: Responder = Responder("welcome", "i have missed you", "welcome back") super().__init__() # Override def...
  11. fukurou

    👨‍💻 dev DiMisser

    class Cron(TrGEV3): # triggers true, limit times, after initial time, and every minutes interval # counter resets at initial time, assuming trigger method was run def __init__(self, startTime: str, minutes: int, limit: int): self._playGround: PlayGround = PlayGround()...
  12. fukurou

    👨‍💻 dev DiMisser

    import LivinGrimoire.PlayGround; import java.util.Random; public class Cron extends TrGEV3{ // triggers true, limit times, after initial time, and every minutes interval // counter resets at initial time, assuming trigger method was run int minutes; // minute interval between...
  13. fukurou

    👨‍💻 dev DiMisser

  14. fukurou

    👨‍💻 dev DiMisser

    // counter <>0 : not home yet I'm home: cron.initTime(10 minutes ago) // counter = 0 "welcome home" if cron.Trg(): switch(cron.getCounter)
  15. fukurou

    [MEDIA]

  16. fukurou

    [MEDIA]

  17. fukurou

    [MEDIA]

  18. fukurou

    Raspberri Pi and Arduino

    install Arduino IDE on the Raspberry Pi open web browser on the Pi and type Arduino IDE Arduino IDE, https://www.arduino.cc/en/software, check your OS: terminal-> uname -m armv7l = arm 32 bit OS x 86 64 = 64 bit OS chose the corresponding download. terminal: cd Downloads/ ls // extract: tar...
  19. fukurou

    Cron java->swift

    class Cron:TrGEV3{ // triggers true, limit times, after initial time, and every minutes interval // counter resets at initial time, assuming trigger method was run private var minutes:Int // minute interval between triggerings private let pl:PlayGround = PlayGround() private...
  20. fukurou

    Cron java->swift

    public class Cron extends TrGEV3{ // triggers true, limit times, after initial time, and every minutes interval // counter resets at initial time, assuming trigger method was run private PlayGround playGround = new PlayGround(); int minutes; // minute interval between triggerings...
Top