Search results

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

    🐦swift swift grimoire

    swift documentation markup /// Some introductory test that describes the purpose /// of the function. /** What does this function do? */ func someFunction(name: String) -> Bool { return false } /** Another useful function - parameters: - alpha: Describe the alpha param - beta...
  3. 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))
  4. fukurou

    🎮gaming cyberpunk 2077 patch 1.6

  5. fukurou

    🎮gaming kill la kill how to play

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    💰moneymaxing fighting skills

  9. fukurou

    test

    YOKOSOU
  10. fukurou

    test

    LivinGrimoire
  11. fukurou

    test

    LivinGrimoire
  12. fukurou

    test

    CYBERPUNK
  13. fukurou

    test

    test
  14. fukurou

    test

    test
  15. fukurou

    test

    oh yeah get schwifty in here
  16. fukurou

    [MEDIA]

  17. 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...
  18. 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:
  19. fukurou

    [MEDIA]

  20. 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 =...
Top