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

    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))
  3. fukurou

    🎮gaming cyberpunk 2077 patch 1.6

  4. fukurou

    🎮gaming kill la kill how to play

  5. 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...
  6. 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 =...
  7. 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") }
  8. 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...
  9. fukurou

    🐍 python switch

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

    pokemon !

    hey zoro @ZORO
  11. 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...
  12. fukurou

    our QR code

  13. fukurou

    test

    hello world
  14. fukurou

    ☕ java rnd

    import java.util.Random; Random rand = new Random(); // instance of random class int upperbound = 25; // generate random values from 0-24 int int_random = rand.nextInt(upperbound); // 0->upperbound -1 double double_random = rand.nextDouble();// 0->1 float float_random = rand.nextFloat(); //0->1
  15. fukurou

    ☕ java java cheat sheet dev

    *variables* int age = 0; // implicit var declaration Boolean isCompleted = false; // explicit var declaration final int num = 2; // constant takes less space than var *strings* String str1 = "hello"; String s1 = String.format("%s %s %d :)", "1+4", "=", 5); *classes* public class MyClass...
  16. fukurou

    test

    test
  17. fukurou

    nikke goddess of victory

  18. fukurou

    xcode gif

  19. fukurou

    codes

    *variables* var age = 0 // implicit var declaration var isCompleted:Bool = false // explicit var declaration let num:Int = 2 // const takes less space than var *strings* var str1:String = "1+4 = \(1+4)" // "1+4 = 5" *classes* class MyClass:SomeSuperClass{ var myProperty:Int override init(){...
  20. fukurou

    nintendo switch redout 2 how to drift hard solved

    use left stick to steer left or right and right stick pointed up and (left or right) to drift tight corners
Top