Search results

  1. fukurou

    (swift) he looks to the left he looks to the right

    gone take a solid shit 1st!
  2. fukurou

    (swift) he looks to the left he looks to the right

    class AXMachineCode{ // common code lines used in machine code to declutter machine code var dic:[String:Int] = [:] @discardableResult func addKeyValuePair(key:String,value:Int)->AXMachineCode{ dic[key] = value return self } func...
  3. fukurou

    (swift) he looks to the left he looks to the right

    I've got another liter of diarrhea to shit!
  4. fukurou

    (swift) he looks to the left he looks to the right

    class TrgTolerance { // this boolean gate will return true till depletion or reset() var maxRepeats:Int var repeats:Int = 0 init(maxRepeats:Int) { self.maxRepeats = maxRepeats } func setMaxRepeats(maxRepeats:Int){ self.maxRepeats = maxRepeats...
  5. fukurou

    sea bass

  6. fukurou

    (swift) he looks to the left he looks to the right

    I have diarrhea (the creamy type)
  7. fukurou

    (swift) he looks to the left he looks to the right

    class AXCmdBreaker{ // separate command parameter from the command var conjuration:String init(conjuration: String) { self.conjuration = conjuration } func extractCmdParam(s1:String)->String{ if s1.contains(conjuration){ return...
  8. fukurou

    (swift) he looks to the left he looks to the right

    public class AXCmdBreaker { // separate command parameter from the command public String conjuration; public AXCmdBreaker(String conjuration) { this.conjuration = conjuration; } public String extractCmdParam(String s1){ if (s1.contains(conjuration)){...
  9. fukurou

    [MEDIA]

  10. fukurou

    pokemon 1307

    Lipaz (Spectrier) @ Rocky Helmet Ability: Grim Neigh Shiny: Yes Tera Type: Fighting EVs: 4 HP / 252 SpA / 252 Spe Bold Nature - Taunt - Psychic - Tera Blast - Shadow Ball
  11. fukurou

    pokemon 1307

    Spectrier @ Rocky Helmet Ability: Grim Neigh Tera Type: Fighting EVs: 4 HP / 252 SpA / 252 Spe Bold Nature - Taunt - Psychic - Tera Blast - Shadow Ball Calyrex @ Wise Glasses Ability: Unnerve Tera Type: Fighting EVs: 4 HP / 252 SpA / 252 Spe Bold Nature - Agility - Baton Pass -...
  12. fukurou

    [MEDIA]

  13. fukurou

    pokemon 1007

    Calyrex @ Lum Berry Ability: Unnerve Tera Type: Normal EVs: 252 HP / 252 Atk Careful Nature - Agility - Trick Room - Zen Headbutt - Facade
  14. fukurou

    pokemon 1007

    Dragonite @ Lum Berry Ability: Inner Focus Tera Type: Normal EVs: 252 HP / 140 Def / 116 SpD Careful Nature - Extreme Speed - Dragon Dance - Outrage - Fly
  15. fukurou

    pokemon 1007

    Calyrex-Ice @ Occa Berry Ability: As One (Glastrier) Tera Type: Psychic EVs: 252 HP / 252 Atk / 4 SpD Careful Nature - Trick Room - Glacial Lance - Zen Headbutt - Facade
  16. fukurou

    [MEDIA]

  17. fukurou

    pokemon 1007

    Glastrier @ Aguav Berry Ability: Chilling Neigh Tera Type: Normal EVs: 252 HP / 252 Atk / 4 SpD Careful Nature - Trailblaze - Zen Headbutt - Avalanche - Facade Calyrex @ Lum Berry Ability: Unnerve Tera Type: Rock EVs: 252 HP / 252 Atk Careful Nature - Agility - Trick Room -...
  18. fukurou

    [MEDIA]

  19. fukurou

    👨‍💻 dev AXMachineCode

    class AXMachineCode: def __init__(self): self.dic: dict[str, int] = {} def addKeyValuePair(self, key: str, value: int) -> AXMachineCode: self.dic[key] = value return self def getMachineCodeFor(self, key: str) -> int: if not key in self.dic...
Top