Search results

  1. fukurou

    ms dos documentary

  2. fukurou

    🍵 kotlin simple main function for code testing

    fun main(args:Array<String>) { }
  3. 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...
  4. 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
  5. 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))
  6. fukurou

    🎮gaming cyberpunk 2077 patch 1.6

  7. fukurou

    🎮gaming kill la kill how to play

  8. 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...
  9. 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 =...
  10. 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") }
  11. 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...
  12. fukurou

    🐍 python switch

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

    pokemon !

    hey zoro @ZORO
  14. 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...
  15. fukurou

    our QR code

  16. fukurou

    test

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

    test

    test
  20. fukurou

    nikke goddess of victory

Top