Search results

  1. 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...
  2. fukurou

    rick and morty season 6

  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

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

    Permitter process

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

    [MEDIA]

  13. fukurou

    lego technics

  14. fukurou

    lego technics

  15. fukurou

    [MEDIA]

  16. fukurou

    🐍 python example singleton software design pattern

    class PersonSingleton: __instance = None @staticmethod def getInstance(name: str, age: int): """ Static access method. """ if PersonSingleton.__instance == None: PersonSingleton(name, age) return PersonSingleton.__instance def __init__(self...
  17. fukurou

    [MEDIA]

  18. fukurou

    🐍 python python grimoire

    python snip article chunk file = open("story.txt", encoding="utf8") contents = file.read() # print(contents[:10000]) # print(contents[10000:20000]) print(contents[20000:]) file.close()
  19. fukurou

    🐍 python python grimoire

    selenium forum miner from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By s = Service('C:\chrome driver\chromedriver.exe') driver = webdriver.Chrome(service=s)...
Top