Search results

  1. fukurou

    xcode : view without any layout constraint may clip

    "view without any layout constraint may clip" glitch fix : and choose add missing constraints
  2. fukurou

    XCode grimoire

    image view https://hotpot.ai/icon-resizer convert an icon, choose ios image and drop the images (x1 x2 x3) to the assets folder. next select the image view you added with the + btn in main (the UI), and click the attribute selector. finally select the image from the drop down box
  3. fukurou

    XCode grimoire

    size inspector the size inspector sets the position of view elements and their size click + in the view controller to drag and drop views
  4. fukurou

    XCode grimoire

    navigation
  5. fukurou

    honkai impact

    https://honkaiimpact3.hoyoverse.com/global/en-us/download @ZORO
  6. fukurou

    honkai impact

  7. fukurou

    GitHub Wiki

  8. fukurou

    [MEDIA]

  9. fukurou

    sliders test

    sliders
  10. fukurou

    XCode grimoire

    new app project create a new Xcode project, or: file, new, project(shift + n), choose the app template on choose options for your new project set interface to STORYBOARD organization identifier example : ninja.site_name or com.name if you have no site choose a dir to save projects into in...
  11. fukurou

    publishing a python library

    create a .pypirc in home folder create account on pypi.org fill in pypirc file : [distutils] index-servers = pypi pypitest [pypi] repository: https://upload.pypi.org/legacy/ username: username password: userpass [pypitest] repository: https://testpypi.python.org/pypi username: username...
  12. fukurou

    Github: How to collaborate on Github

  13. fukurou

    [MEDIA]

  14. fukurou

    🐍 python the living grimoire is now available in python as well

    https://github.com/yotamarker/public-livinGrimoire/tree/master/livingrimoire%20start%20here/LivinGrimoire%20python
  15. fukurou

    🐍 python Chii's python suit

    ChobitsLight test : class Personality2(PersonalityLight): # Override def __init__(self, *absDictionaryDB: AbsDictionaryDB): super().__init__(absDictionaryDB) super().getdClassesLv1().append(DiHelloWorld(self.getKokoro())) if __name__ == "__main__"...
  16. fukurou

    🐍 python Chii's python suit

    PersonalityLight ''' PERSONALITY Light CLASS ''' class PersonalityLight: ''' this class is used in the ChobitV2 c'tor. it enables loading a complete skill set (a sub class of the personality class) using 1 line of code. of course you can also select specific skills to add from...
  17. fukurou

    🐍 python Chii's python suit

    ChobitsV2 ''' CHOBITSV2 CLASS ''' class ChobitV2(Thinkable): def __init__(self, personality: Personality): super().__init__() self.emot: str = "" # emotion self.dClassesLv1: list[DiSkillV2] = personality.getdClassesLv1() self.dClassesLv2: list[DiSkillV2]...
  18. fukurou

    triumph of the will

    ''' CHOBITSV2 CLASS ''' class ChobitV2(Thinkable): def __init__(self, personality: Personality): super().__init__() self.emot: str = "" # emotion self.dClassesLv1: list[DiSkillV2] = personality.getdClassesLv1() self.dClassesLv2: list[DiSkillV2] =...
  19. fukurou

    triumph of the will

    ''' CHOBITSV2 CLASS ''' class ChobitV2(Thinkable): def __init__(self, personality: Personality): super().__init__() self.emot: str = "" # emotion self.dClassesLv1: list[DiSkillV2] = personality.getdClassesLv1() self.dClassesLv2: list[DiSkillV2] =...
  20. fukurou

    triumph of the will

    proper test procedure : class DiHelloWorld(DiSkillV2): def __init__(self, kokoro: Kokoro): DiSkillV2.__init__(self, kokoro) # Override def input(self, ear: str, skin: str, eye: str): if ear == "hello": self._outAlg =...
Top