Search results

  1. fukurou

    💰moneymaxing fighting skills

  2. fukurou

    test

    YOKOSOU
  3. fukurou

    test

    LivinGrimoire
  4. fukurou

    test

    LivinGrimoire
  5. fukurou

    test

    CYBERPUNK
  6. fukurou

    test

    test
  7. fukurou

    test

    test
  8. fukurou

    test

    oh yeah get schwifty in here
  9. fukurou

    [MEDIA]

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

    test

    :s1::s2::s3::s4::666::s5::s6::s7::s8::s9::s10::hkn::s20::s19::s18::s17::s16::s15::s14::s13::s12::s11::s21::s22::s23::s24::s25::s26::s27::s28::s29::s30::s41::s40::s39::s38::s37::s36::s35::s34::s33::s32::s31::s42::s43::s44::s45::s46::s47::s48::s49::s50::s51::s52::s53:
  12. fukurou

    [MEDIA]

  13. 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 =...
  14. fukurou

    [MEDIA]

  15. 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") }
  16. fukurou

    [MEDIA]

  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