Search results

  1. fukurou

    👨‍💻 dev ChobitsV2 python

    ''' ChobitsV2 CLASS ''' class ChobitsV2(Thinkable): def __init__(self, personality: Personality): super().__init__() self.AlgDurations: dict[str, int] = personality.getAlgDurations() self.fusion: Fusion = Personality.getFusion() # Override def think(self...
  2. fukurou

    🐍 python Chii's python suit

    Actionable ''' Actionable CLASS ''' class Actionable: def act(self, input: str): # override me pass
  3. fukurou

    🐍 python Chii's python suit

    Thinkable ''' Thinkable CLASS ''' class Thinkable : def think(self, ear: str, skin: str, eye: str) -> str: """override me""" return ""
  4. fukurou

    how to force uninstall the your phone app on windows

    Open Start. Search for Windows PowerShell, right-click the top result and select Run as Administrator. Type the following command to uninstall the app and press Enter: Get-AppxPackage Microsoft.YourPhone -AllUsers | Remove-AppxPackage restart your machine Once you complete these steps, the...
  5. fukurou

    [MEDIA]

  6. fukurou

    ice tea

    it is also an option to boil the peach than strain it. and mix the peach water into the iced tea
  7. fukurou

    ice tea

  8. fukurou

    updated ChobitsV2

    package LG_Core; import java.util.ArrayList; import java.util.Hashtable; public class ChobitV2 extends Thinkable { protected String emot = ""; // emotion protected ArrayList<AbsCmdReq> dClassesLv1; protected ArrayList<AbsCmdReq> dClassesLv2;// can engage with friends and work...
  9. fukurou

    rick and morty season 6

  10. fukurou

    [MEDIA]

  11. fukurou

    [MEDIA]

  12. fukurou

    [MEDIA]

  13. fukurou

    [MEDIA]

  14. fukurou

    task : ChobitsV2

    translate these 2 classes from java to python note the timegate class is a bit different than the one you've already translated package LG_Core; import java.util.Calendar; import java.util.Date; public class TimeGate { // a gate that only opens x minutes after it has been set private...
  15. fukurou

    🐍 python Chii's python suit

    Permission DPermitter and Personality ''' PERMISSION CLASS ''' class Permission: ''' * uses two names as lv1,2 permission levels * requires password to change password or said names ''' singleton: Permission = None def __init__(self, password: str, lv1Name: str...
  16. fukurou

    Permitter process

    ''' PERMISSION CLASS ''' class Permission: ''' * uses two names as lv1,2 permission levels * requires password to change password or said names ''' singleton: Permission = None def __init__(self, password: str, lv1Name: str, lv2Name: str): if...
  17. fukurou

    Permitter process

Top