Search results

  1. fukurou

    japanese luxury design principles

    1 the pattern of Japanese old school ryokan design is wooden floors, and panels. at times even the ceilings are covered. 2 living rooms are covered with tatami mats. 3 technologic advancements are incorporated into the house: robotic toilets with bides, water temperature led control panels 4...
  2. fukurou

    🐦swift auxiliary module SkillHubAlgDispencer

    https://github.com/yotamarker/public-livinGrimoire/wiki/auxiliary-module-SkillHubAlgDispencer class SkillHubAlgDispenser { /// super class to output an algorithm out of a selection of skills /// engage the hub with dispenseAlg and return the value to the containing the outAlg attribute...
  3. fukurou

    LivinGrimoire auxiliary modules codex added

    wiki : https://github.com/yotamarker/public-livinGrimoire/wiki/LivinGrimoire-auxiliary-modules-codex codes: https://github.com/yotamarker/public-livinGrimoire/blob/master/livingrimoire%20start%20here/LivinGrimoire%20swift/auxiliary_module.swift
  4. fukurou

    2 day for the nikke goddess of victory release

    blocked on the playstore but available on the tap tap app which is an alternative app store
  5. fukurou

    🎮gaming Zenless Zone Zero

    the promo of the app game looked awesome, but the gameplay looks hella boring basically, a bunch of sluggish bosses with tons of HP
  6. fukurou

    rog 6 pro megathread

  7. fukurou

    ms dos documentary

  8. fukurou

    🍵 kotlin simple main function for code testing

    fun main(args:Array<String>) { }
  9. fukurou

    📕books the manga guide to microprocessors by michio shibuya and takashi tonashi

    I'd give it 3 out of 5 stars IG it does explain some concepts well but mostly it keeps you wondering and in the dark regarding the full process and how the processor actually works. it's just too vague of explanations how does the data travel, how do the parts work together? how are oppcodes...
  10. fukurou

    📕books how people learn by olivia mesa

    this book wasn't as the title suggest it did not talk about the learning process and algorithms the book was basically a compilation of dry facts about the brain
  11. fukurou

    varargs

    fun sum1(vararg values: Int): Int { var total = 0 for (i in values.indices) { total += values[i] } return total } println(sum1(1,2,4))
  12. fukurou

    🎮gaming cyberpunk 2077 patch 1.6

  13. fukurou

    🎮gaming kill la kill how to play

  14. fukurou

    keynote codes

    1 objects spread elements evenly: arrange->distribute objects group elements : select elements->arrange->group 2 layers set object layer level : view->show object list->format->arrange or format->arrange 3 transitions animate->add an effect magic move: duplicate a slide->move object in 2nd...
  15. fukurou

    🍵 kotlin kotlin cheat sheet

    *variables* var age = 0 // implicit var declaration var isCompleted = false // explicit var declaration val test = 3; // constant *strings* var s1:String = "hello" val result:String = "hello $name" *classes* class MyClass: Any() { var myProperty = 12 // methodes } val mClass =...
  16. fukurou

    🍵 kotlin Error: Could not find or load main class _DefaultPackage

    place the main code inside a kotlin class file, not in a plain kt file class Tester { } fun main(args:Array<String>) { val age = 0 // implicit var declaration val isCompleted = false // explicit var declaration val num = 2 // constant takes less space than var println("test") }
  17. fukurou

    🐍 python SyntaxError: invalid syntax when using match case

    to fix this you need your pycharm to use python (version) 3.1 : delete pycharm and python https://www.jetbrains.com/pycharm/download/#section=windows https://www.python.org/downloads/ on the pycharm IDE: Press Ctrl+Alt+S to open the project Settings/Preferences and go to Project: <project...
  18. fukurou

    🐍 python switch

    '''switch''' n:str = "test" match n: case 'hello': print("hi there!") case 'y': print("y") case _: print("default case")
  19. fukurou

    pokemon !

    hey zoro @ZORO
  20. fukurou

    🐍 python python cheat sheet

    '''variables''' age = 0 # implicit var declaration isCompleted: bool = False # explicit var declaration NUM: int = 2 # constant takes less space than var '''strings''' str1: str = "1+4=hello" s1: str = f'Good {var1}! time to {var2}!' '''classes''' class MyClass(Object): myProperty...
Top